:root {
    --primary-brown: #3d2b1f;
    --light-brown: #5d4037;
    --accent-gold: #c6a664;
    --bg-cream: #f9f6f2;
    --text-dark: #2c1e14;
    --text-muted: #795548;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

.bg-salon-brown { background-color: var(--primary-brown); }
.text-salon-brown { color: var(--primary-brown); }
.bg-salon-gold { background-color: var(--accent-gold); }
.text-salon-gold { color: var(--accent-gold); }

/* Navigation */
nav.glass {
    background: rgba(249, 246, 242, 0.9);
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(61, 43, 31, 0.4), rgba(61, 43, 31, 0.7));
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-brown);
    color: white;
    padding: 0.75rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background-color: var(--light-brown);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--primary-brown);
}

.btn-outline {
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-brown);
    color: white;
}

/* Achievements */
.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Services */
.service-capsule {
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.service-capsule:hover {
    transform: scale(1.03);
}

/* Hero Carousel */
.hero-carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-carousel-item.active {
    opacity: 1;
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 2rem;
    background: #000;
}
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feedback Section */
.feedback-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    width: 320px;
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.feedback-track {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    animation: scroll 30s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}

.feedback-track:hover {
    animation-play-state: paused;
}

/* Footer Enhancements */
.footer-link {
    color: #795548; /* Normal visible brown */
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-link:hover {
    color: var(--primary-brown);
    padding-left: 5px;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem !important;
    }
    .feedback-card {
        width: 280px;
    }
    .coupons-marquee-container {
        padding: 0.5rem 0;
    }
    .coupon-card {
        width: 210px;
        padding: 0.25rem 0.5rem;
        border-radius: 0.5rem;
    }
    .coupon-card::before,
    .coupon-card::after {
        left: 56px;
        width: 12px;
        height: 12px;
    }
    .coupon-card::before {
        top: -6px;
    }
    .coupon-card::after {
        bottom: -6px;
    }
    .coupon-divider {
        height: 24px;
        margin: 0 0.4rem;
    }
    .coupon-left {
        width: 42px;
    }
    .coupon-left .discount-value {
        font-size: 0.9rem;
    }
    .coupon-left .discount-label {
        font-size: 0.45rem;
        margin-top: 0.05rem;
    }
    .coupon-title {
        font-size: 0.68rem;
    }
    .coupon-code {
        font-size: 0.55rem;
        padding: 0.08rem 0.3rem;
    }
    .code-label {
        font-size: 0.55rem;
    }
}

/* Coupons Marquee CSS */
.coupons-marquee-container {
    overflow: hidden;
    width: 100%;
    background-color: #fffbf8;
    border-top: 1px solid rgba(198, 166, 100, 0.12);
    border-bottom: 1px solid rgba(198, 166, 100, 0.12);
    padding: 0.75rem 0;
}

.coupons-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-coupons 35s linear infinite;
    width: max-content;
}

@keyframes scroll-coupons {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}

.coupons-track:hover {
    animation-play-state: paused;
}

.coupon-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffcf5 100%);
    border: 1px dashed var(--accent-gold);
    border-radius: 0.6rem;
    padding: 0.35rem 0.75rem;
    width: 260px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 3px 10px -3px rgba(198, 166, 100, 0.08);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.coupon-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px -3px rgba(198, 166, 100, 0.15);
    border-style: solid;
}

/* Half Circle Cuts on Coupon Edges for Ticket effect */
.coupon-card::before,
.coupon-card::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #fffbf8; /* Matches container background */
    border-radius: 50%;
    left: 70px;
    border: 1px solid rgba(198, 166, 100, 0.12);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.01);
    z-index: 1;
}
.coupon-card::before {
    top: -7px;
    clip-path: circle(50% at 50% 100%);
}
.coupon-card::after {
    bottom: -7px;
    clip-path: circle(50% at 50% 0%);
}

.coupon-left {
    width: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coupon-left .discount-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-brown);
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

.coupon-left .discount-label {
    font-size: 0.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    margin-top: 0.05rem;
}

.coupon-divider {
    width: 1px;
    height: 30px;
    border-left: 2px dashed rgba(198, 166, 100, 0.2);
    margin: 0 0.5rem;
    position: relative;
    left: -2px;
}

.coupon-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coupon-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.05rem;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.coupon-code-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.code-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: #a89485;
}

.coupon-code {
    background-color: rgba(198, 166, 100, 0.08);
    color: var(--primary-brown);
    font-weight: 800;
    font-size: 0.6rem;
    padding: 0.1rem 0.4rem;
    border-radius: 0.3rem;
    border: 1px solid rgba(198, 166, 100, 0.12);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
