﻿
/* Customer Dashboard */

.account-sidebar {
    font-family: Arial, sans-serif;
    background-color: #f4f5f7;
    padding: 20px;
    width: 250px;
    height: 100%;
    border-radius: 8px;
}

    .account-sidebar .greeting {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .account-sidebar .verified-badge {
        display: inline-block;
        background-color: #28a745;
        color: white;
        font-size: 13px;
        padding: 4px 10px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .account-sidebar .section {
        margin-top: 20px;
    }

        .account-sidebar .section h4 {
            font-size: 15px;
            color: rgb(56, 55, 55);
            margin-bottom: 10px;
            font-weight: bold;
        }

        .account-sidebar .section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .account-sidebar .section ul li {
                margin-bottom: 8px;
                padding-left: 16px;
            }

                .account-sidebar .section ul li a {
                    text-decoration: none;
                    color: #333;
                    font-size: 14px;
                }

                    .account-sidebar .section ul li a:hover {
                        color: #007b8f;
                    }


.profile-container {
    font-family: Arial, sans-serif;
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

    .profile-container .profile-row {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px;
        gap: 30px;
    }

    .profile-container .profile-col {
        flex: 1;
        min-width: 200px;
    }

        .profile-container .profile-col label {
            display: block;
            font-size: 13px;
            color: #555;
            margin-bottom: 5px;
        }

        .profile-container .profile-col p {
            font-size: 15px;
            color: #222;
            margin-bottom: 10px;
        }

    .profile-container .profile-footer {
        margin-top: 30px;
    }

.edit-btn {
    background-color: #1890b8;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .edit-btn:hover {
        background-color: #107a9e;
    }



.address-book {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

    .address-book .header {
        display: grid;
        grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
        font-weight: bold;
        padding: 10px 15px;
        background-color: #f5f5f5;
        border-bottom: 1px solid #ddd;
    }

    .address-book .address-item {
        display: grid;
        grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
        padding: 15px;
        border-bottom: 1px solid #eee;
        align-items: center;
    }

    .address-book .address-type {
        font-weight: bold;
        text-transform: uppercase;
        color: #555;
    }

    .address-book .default-tag {
        background-color: #e6f7ff;
        color: #1890ff;
        padding: 3px 8px;
        border-radius: 4px;
        font-size: 12px;
        display: inline-block;
    }

    .address-book .edit-btn {
        color: #1890ff;
        cursor: pointer;
        text-decoration: underline;
    }

    .address-book .add-new {
        margin-top: 20px;
        color: #1890ff;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

        .address-book .add-new:before {
            content: "+";
            margin-right: 5px;
            font-size: 18px;
        }

.site-footer {
    background-color: #1e1e2f;
    color: #ccc;
    padding: 40px 20px 20px;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1 1 200px;
    min-width: 200px;
}

    .footer-column h4 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 16px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-column ul li {
            margin-bottom: 10px;
        }

            .footer-column ul li a {
                color: #ccc;
                text-decoration: none;
            }

                .footer-column ul li a:hover {
                    color: #fff;
                    text-decoration: underline;
                }

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

    .newsletter-form input {
        flex: 1;
        padding: 8px;
        border: none;
        border-radius: 3px;
    }

    .newsletter-form button {
        background-color: #ff6600;
        color: white;
        border: none;
        padding: 8px 12px;
        border-radius: 3px;
        cursor: pointer;
    }

.social-icons {
    margin-top: 15px;
}

    .social-icons a {
        display: inline-block;
        margin-right: 10px;
    }

    .social-icons img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #999;
}







/* wwwroot/css/bannerCarousel.css */
.banner-carousel-container {
    position: relative;
    width: 100%;
    height: var(--banner-height, 400px);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .banner-slide.active {
        opacity: 1;
        z-index: 1;
    }

.banner-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.banner-content {
    max-width: 600px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.banner-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.banner-button {
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    text-shadow: none;
    transition: all 0.3s ease;
}

    .banner-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

/* Navigation Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

    .carousel-control:hover {
        background: rgba(255,255,255,1);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-control.prev {
        left: 20px;
    }

    .carousel-control.next {
        right: 20px;
    }

.carousel-arrow {
    font-size: 24px;
    font-weight: bold;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .indicator.active {
        background: white;
        transform: scale(1.2);
    }

    .indicator:hover {
        background: rgba(255,255,255,0.7);
    }

/* Play/Pause Controls */
.carousel-play-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.play-pause-btn {
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .play-pause-btn:hover {
        background: rgba(255,255,255,1);
        transform: scale(1.1);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .banner-carousel-container {
        height: 300px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-content {
        text-align: center;
        padding: 1rem;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .banner-carousel-container {
        height: 250px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-description {
        display: none;
    }

    .carousel-control {
        width: 35px;
        height: 35px;
    }
}