/* 
 * Taj Mahal Emporium
 * Traditional, Spiritual, Elegant Design
 * Color Palette: Deep burgundy, warm gold, cream, dark brown, muted green
 */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #8B1A1A;
    --dark-burgundy: #6B0F0F;
    --gold: #D4AF37;
    --warm-gold: #E8C547;
    --cream: #FAF6ED;
    --ivory: #FFF8E7;
    --dark-brown: #3A2F2F;
    --charcoal: #4A4A4A;
    --muted-green: #7A8B6F;
    --light-gray: #F5F5F5;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-brown);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', serif;
    color: var(--dark-burgundy);
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgb(136, 25, 35);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 83px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--warm-gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-burgundy);
    list-style: none;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--cream);
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--warm-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--cream);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1.15) translateX(0) translateY(0);
    }
    100% {
        transform: scale(1.15) translateX(-5%) translateY(-2%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Stars/Twinkle Overlay */
.stars-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8),
                0 0 8px rgba(212, 175, 55, 0.6),
                0 0 12px rgba(212, 175, 55, 0.4);
    animation: twinkle 3s ease-in-out infinite;
}

/* Randomized positions and animation delays */
.star:nth-child(1) { top: 15%; left: 12%; animation-delay: 0s; animation-duration: 2.5s; }
.star:nth-child(2) { top: 25%; left: 78%; animation-delay: 0.5s; animation-duration: 3.2s; }
.star:nth-child(3) { top: 35%; left: 35%; animation-delay: 1s; animation-duration: 2.8s; }
.star:nth-child(4) { top: 45%; left: 88%; animation-delay: 1.5s; animation-duration: 3.5s; }
.star:nth-child(5) { top: 55%; left: 22%; animation-delay: 0.3s; animation-duration: 2.9s; }
.star:nth-child(6) { top: 65%; left: 65%; animation-delay: 1.2s; animation-duration: 3.1s; }
.star:nth-child(7) { top: 75%; left: 45%; animation-delay: 0.8s; animation-duration: 2.7s; }
.star:nth-child(8) { top: 20%; left: 55%; animation-delay: 1.8s; animation-duration: 3.3s; }
.star:nth-child(9) { top: 40%; left: 8%; animation-delay: 0.6s; animation-duration: 2.6s; }
.star:nth-child(10) { top: 60%; left: 92%; animation-delay: 1.4s; animation-duration: 3.4s; }
.star:nth-child(11) { top: 10%; left: 40%; animation-delay: 0.2s; animation-duration: 3s; }
.star:nth-child(12) { top: 30%; left: 70%; animation-delay: 1.6s; animation-duration: 2.8s; }
.star:nth-child(13) { top: 50%; left: 50%; animation-delay: 0.9s; animation-duration: 3.2s; }
.star:nth-child(14) { top: 70%; left: 15%; animation-delay: 1.3s; animation-duration: 2.9s; }
.star:nth-child(15) { top: 80%; left: 80%; animation-delay: 0.4s; animation-duration: 3.1s; }
.star:nth-child(16) { top: 18%; left: 25%; animation-delay: 1.7s; animation-duration: 2.7s; }
.star:nth-child(17) { top: 38%; left: 60%; animation-delay: 0.7s; animation-duration: 3.3s; }
.star:nth-child(18) { top: 58%; left: 5%; animation-delay: 1.1s; animation-duration: 2.6s; }
.star:nth-child(19) { top: 68%; left: 95%; animation-delay: 1.9s; animation-duration: 3.4s; }
.star:nth-child(20) { top: 85%; left: 30%; animation-delay: 0.1s; animation-duration: 3s; }

/* Twinkle animation - gentle fade in/out with scale */
@keyframes twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.smoke-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom, transparent 0%, rgba(255,255,255,0.03) 100%);
    z-index: 3;
    animation: smokeFloat 20s ease-in-out infinite;
}

@keyframes smokeFloat {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: var(--cream);
    max-width: 800px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--warm-gold);
    margin-bottom: 20px;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.8);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--cream);
    font-family: 'Cormorant', serif;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--cream);
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-burgundy);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-burgundy);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark-burgundy);
    font-size: 14px;
    padding: 10px 25px;
}

.btn-gold:hover {
    background: var(--warm-gold);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--burgundy);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--charcoal);
    max-width: 600px;
    margin: 0 auto;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 20px;
}

/* Categories Section */
.categories {
    position: relative;
    background-image: url('images/ornate-marble-interior-architecture-2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 246, 237, 0.92);
    z-index: 1;
}

.categories .container {
    position: relative;
    z-index: 2;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-brown);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, var(--burgundy), var(--dark-burgundy));
    transition: height 0.4s ease;
    z-index: 0;
}

.category-card:hover::before {
    height: 100%;
}

.category-card > * {
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    color: var(--warm-gold);
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: color 0.4s ease;
}

.category-card p {
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: color 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 26, 26, 0.2);
}

.category-card:hover h3,
.category-card:hover p {
    color: var(--cream);
}

/* Heritage Section */
.heritage {
    background: white;
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.heritage-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.heritage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.est-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--dark-burgundy);
    padding: 12px 24px;
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    letter-spacing: 2px;
}

.heritage-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.heritage-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.heritage-content h3 {
    font-size: 1.8rem;
    margin: 30px 0 20px;
    color: var(--burgundy);
}

.heritage-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.heritage-content blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: var(--charcoal);
    font-size: 1.05rem;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-top: 30px;
    font-family: 'Cormorant', serif;
}

/* Featured Products */
.featured-products {
    position: relative;
    background-image: url('images/ornate-marble-interior-architecture.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 246, 237, 0.92);
    z-index: 1;
}

.featured-products .container {
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(139, 26, 26, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: none;
    mix-blend-mode: normal;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--burgundy);
    color: var(--cream);
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: 500;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark-burgundy);
}

.product-description {
    color: var(--charcoal);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-price {
    font-size: 1.6rem;
    color: var(--burgundy);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Cormorant', serif;
}

.product-note {
    font-size: 0.85rem;
    color: var(--muted-green);
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

/* ── Infinite Product Carousel ─────────────────────────────── */
.featured-products .container {
    position: relative;
    z-index: 2;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 2;
    /* Fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

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

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: carouselScroll 70s linear infinite;
    padding: 10px 0 20px;
}

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

.carousel-card {
    flex-shrink: 0;
    width: 220px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.09);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 32px rgba(139,26,26,0.18);
}

.carousel-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f9f4ec;
}

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

.carousel-card:hover .carousel-card-img img {
    transform: scale(1.07);
}

.carousel-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--burgundy);
    color: var(--cream);
    padding: 4px 11px;
    font-size: 0.72rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.carousel-badge-gold  { background: var(--gold); color: var(--dark-burgundy); }
.carousel-badge-green { background: var(--muted-green); color: white; }

.carousel-card-body {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.carousel-card-body h3 {
    font-size: 1rem;
    color: var(--dark-burgundy);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.carousel-card-body p {
    font-family: 'Cormorant', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--burgundy);
    font-style: italic;
    margin: 0;
}

.carousel-cta {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .carousel-card { width: 180px; }
    .carousel-card-img { height: 160px; }
    .carousel-track { gap: 16px; animation-duration: 55s; }
}

@media (max-width: 480px) {
    .carousel-card { width: 155px; }
    .carousel-card-img { height: 140px; }
    .carousel-track { gap: 12px; animation-duration: 45s; }
}
/* ── End Infinite Product Carousel ──────────────────────────── */

/* How to Use Section */
.how-to-use {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    color: var(--cream);
}

.how-to-use h2 {
    color: var(--warm-gold);
    font-size: 2.5rem;
}

.how-to-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--dark-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Cormorant', serif;
}

.steps-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--warm-gold);
}

.steps-list p {
    color: var(--cream);
    line-height: 1.7;
}

.how-to-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Blog Preview */
.blog-preview {
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.blog-card {
    background: var(--ivory);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 26, 26, 0.15);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-burgundy);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark-burgundy);
}

.blog-content p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--dark-burgundy);
    gap: 12px;
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* Contact Section */
.contact {
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.contact-info .lead {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 25px;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--charcoal);
    line-height: 1.7;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--burgundy);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-burgundy) 0%, var(--burgundy) 100%);
    color: var(--cream);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 97px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--ivory);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: var(--warm-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--warm-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--ivory);
    font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: white;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--warm-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 280px;
    padding: 14px 20px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    background: white;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--warm-gold);
}

.newsletter-form button {
    padding: 14px 35px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        flex-direction: column;
        background: var(--dark-burgundy);
        width: 100%;
        padding: 30px 0;
        transition: right 0.4s ease;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .heritage-grid,
    .how-to-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-grid,
    .products-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header (for individual pages) */
.page-header {
    position: relative;
    padding: 120px 0 90px;
    text-align: center;
    color: var(--cream);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--warm-gold);
    margin-bottom: 20px;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.page-header .gold-line {
    margin: 0 auto 20px;
}

.page-header .lead {
    font-size: 1.2rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.products-section {
    padding: 80px 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Grand Opening Banner */
.grand-opening-banner {
    background: linear-gradient(135deg, #1a0a00 0%, #3a1a00 30%, #5c2d00 50%, #3a1a00 70%, #1a0a00 100%);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 99;
}

.grand-opening-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 70%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 18px,
            rgba(212, 175, 55, 0.05) 18px,
            rgba(212, 175, 55, 0.05) 19px
        );
    pointer-events: none;
}

.grand-opening-banner::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 12px;
    right: 12px;
    bottom: 6px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    pointer-events: none;
}

.grand-opening-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 30px;
    position: relative;
    z-index: 1;
}

.grand-opening-ornament {
    color: var(--gold);
    font-size: 1.6rem;
    opacity: 0.85;
    animation: ornamentPulse 3s ease-in-out infinite;
    flex-shrink: 0;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

@keyframes ornamentPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.grand-opening-text {
    text-align: center;
}

.grand-opening-label {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 4px 16px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.grand-opening-headline {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 2px;
    margin: 0 0 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    line-height: 1.2;
}

.grand-opening-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 1px;
    color: rgba(250, 246, 237, 0.88);
}

.grand-opening-date {
    color: var(--warm-gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.grand-opening-time,
.grand-opening-celebration {
    color: rgba(250, 246, 237, 0.85);
    font-weight: 300;
}

.grand-opening-divider {
    color: var(--gold);
    opacity: 0.7;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .grand-opening-inner {
        padding: 18px 20px;
        gap: 14px;
    }
    .grand-opening-headline {
        font-size: 1.5rem;
    }
    .grand-opening-details {
        font-size: 0.82rem;
        gap: 8px;
    }
    .grand-opening-ornament {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .grand-opening-inner {
        flex-direction: column;
        gap: 8px;
        padding: 16px 16px;
    }
    .grand-opening-ornament {
        display: none;
    }
    .grand-opening-headline {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    .grand-opening-details {
        flex-direction: column;
        gap: 4px;
    }
    .grand-opening-divider {
        display: none;
    }
}

/* Music Toggle Button */
.music-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    color: var(--cream);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-transform: uppercase;
}

.music-toggle:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
    color: var(--warm-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.music-toggle.is-playing {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--warm-gold);
    animation: musicPulse 2.5s ease-in-out infinite;
}

@keyframes musicPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

.music-icon svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    flex-shrink: 0;
}

.music-label {
    font-weight: 400;
}


/* Article Page Styles */
.article-page {
    background: white;
}

.article-header {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    color: var(--cream);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.article-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.article-header-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.article-header .container {
    position: relative;
    z-index: 3;
}

.article-header h1 {
    font-size: 3rem;
    color: var(--warm-gold);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.8);
}

.article-header .gold-line {
    margin: 0 auto 20px;
}

.article-meta {
    color: var(--cream);
    font-size: 0.95rem;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.article-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.article-content .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 40px;
    font-weight: 400;
}

.article-content h2 {
    font-size: 2.2rem;
    color: var(--burgundy);
    margin-top: 50px;
    margin-bottom: 20px;
}

.article-content h3 {
    font-size: 1.6rem;
    color: var(--dark-burgundy);
    margin-top: 35px;
    margin-bottom: 15px;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--dark-brown);
}

.article-content ul,
.article-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-content li strong {
    color: var(--burgundy);
}

.article-cta {
    background: var(--ivory);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0;
    border: 2px solid var(--gold);
}

.article-cta h3 {
    font-size: 2rem;
    color: var(--burgundy);
    margin-bottom: 15px;
}

.article-cta p {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 2px solid var(--light-gray);
    flex-wrap: wrap;
    gap: 20px;
}

.back-to-blog {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: var(--dark-burgundy);
    padding-left: 5px;
}

.article-share {
    display: flex;
    gap: 15px;
    align-items: center;
}

.article-share span {
    color: var(--charcoal);
    font-weight: 500;
}

.article-share a {
    color: var(--burgundy);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.article-share a:hover {
    color: var(--dark-burgundy);
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 2.4rem;
    }
    
    .article-content {
        margin: 40px auto;
    }
    
    .article-content .lead {
        font-size: 1.15rem;
    }
    
    .article-content h2 {
        font-size: 1.8rem;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}
