/* Design Tokens */
:root {
    --color-primary: #D4AF37; /* Warm Gold */
    --color-primary-dark: #b5952f;
    --color-background: #FAF7F2; /* Creamy Off-white */
    --color-surface: #ffffff;
    --color-text: #2c1b18; /* Deep Maroon/Brown tint */
    --color-text-light: #6d5b58;
    --color-accent: #7b2c2c; /* Rich Maroon */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

/* Dashbar */
.dashbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary-dark);
    color: var(--color-surface);
    height: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1001;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.dashbar-marquee {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: dashbarMarquee 20s linear infinite;
}

@keyframes dashbarMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Navigation */
.navbar {
    position: fixed;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-primary-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
}

/* Hero Section */
.hero.full-slider {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5% 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 3s ease-out, opacity 1s ease-in-out;
}

.hero-image.slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.hero-image.slide.active {
    opacity: 1;
    transform: scale(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.location svg {
    color: var(--color-primary);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--color-text);
}

/* Sections General */
.section {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* Collections Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.collection-card {
    background: var(--color-surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.card-image {
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.link-btn {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.link-btn:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

/* About Section */
.about-section {
    background-color: #f3ece1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-card {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-card h3 {
    color: var(--color-primary-dark);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.about-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-card ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--color-text-light);
}

.about-card ul li {
    margin-bottom: 0.5rem;
}

.about-card strong {
    color: var(--color-text);
}

.mt-4 {
    margin-top: 2rem;
}

.closing-note {
    margin-top: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-primary-dark);
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

/* Contact Section */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.info-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.5rem;
    width: 100%;
}

.store-detail {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.store-detail svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.info-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--color-text);
    color: rgba(255,255,255,0.8);
    padding: 2rem 5%;
    text-align: center;
}

.footer-content p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* Animations */

/* YouTube Section */
.youtube-section {
    padding: 6rem 5%;
    background: var(--color-background);
}
.youtube-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.youtube-container iframe {
    width: 100%;
    height: 315px;
    border: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 5%;
    background: var(--color-background);
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 3rem;
    padding: 1rem 0;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

.testimonials-grid:hover {
    animation-play-state: paused;
}

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

.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 1rem 0.5rem;
    text-align: left;
    transition: var(--transition-smooth);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}



.testimonial-card .ribbon-tail {
    position: absolute;
    left: -12px;
    top: 25px;
    width: 20px;
    height: 45px;
    border-radius: 4px 0 0 4px;
    z-index: 1;
}
.testimonial-card .ribbon-tail::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    border-style: solid;
    border-width: 10px 12px 0 0;
    border-color: rgba(0,0,0,0.3) transparent transparent transparent;
}

.card-header-band {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    z-index: 2;
}

.profile-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -5px;
    z-index: 3;
}
.profile-circle svg {
    width: 35px;
    height: 35px;
}

.ribbon-text {
    margin-left: 45px;
    padding: 8px 30px 8px 30px;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    min-width: 200px;
    z-index: 2;
}
.ribbon-text h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.ribbon-text span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.stars-band {
    display: inline-block;
    background: #f5f5f5;
    padding: 5px 20px;
    margin-left: 60px;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    color: #FFA000;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Color Styles */
.style-pink .ribbon-tail { background: #c2185b; }
.style-pink .profile-circle { border-color: #E91E63; }
.style-pink .profile-circle svg { fill: #E91E63; }
.style-pink .ribbon-text { background: #E91E63; }

.style-orange .ribbon-tail { background: #F57C00; }
.style-orange .profile-circle { border-color: #FF9800; }
.style-orange .profile-circle svg { fill: #FF9800; }
.style-orange .ribbon-text { background: #FF9800; }

.style-blue .ribbon-tail { background: #0097A7; }
.style-blue .profile-circle { border-color: #00BCD4; }
.style-blue .profile-circle svg { fill: #00BCD4; }
.style-blue .ribbon-text { background: #00BCD4; }
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s forwards;
}
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeInAnim 1.2s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInAnim {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        padding-top: 7rem;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    

}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
}
