/* =========================
   VARIABLES & GENERAL STYLES
   ========================= */
:root {
    --primary-maroon: #7B1E3A;
    --gold: #D4AF37;
    --cream: #FFF5E1;
    --dark-gray: #2C2C2C;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --border-radius: 12px;
    --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   NAVBAR STYLES
   ========================= */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, var(--primary-maroon) 0%, rgba(123, 30, 58, 0.95) 100%);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(123, 30, 58, 0.2);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--cream);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cream);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-maroon), #5a1629);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(212, 175, 55, 0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(123, 30, 58, 0.85) 0%,
        rgba(123, 30, 58, 0.7) 50%,
        rgba(212, 175, 55, 0.1) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--cream);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 245, 225, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-maroon);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
    background: #E5C158;
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-maroon);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   SECTION STYLES
   ========================= */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary-maroon);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

.section-header {
    max-width: 760px;
    margin: 0 auto;
}

.inner-hero {
    background: linear-gradient(135deg, rgba(123, 30, 58, 0.08) 0%, rgba(212, 175, 55, 0.15) 100%);
    padding: 120px 0 70px;
}

.about-content {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.about-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 28px 24px;
    border-top: 4px solid var(--gold);
}

.about-card h3 {
    color: var(--primary-maroon);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.about-card p {
    color: var(--text-light);
    font-size: 14px;
}

.menu-section {
    background: white;
    padding-top: 35px;
}

.menu-section-alt {
    background: var(--light-gray);
}

.menu-category-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-maroon);
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
}

.menu-note {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 26px;
    font-size: 14px;
}

.menu-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.menu-block {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 22px 20px;
    border-top: 4px solid var(--gold);
}

.menu-block .menu-category-title {
    font-size: 24px;
    margin-bottom: 14px;
    text-align: left;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
    font-size: 14px;
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-list li span {
    color: var(--text-dark);
}

.menu-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 1px 8px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.22);
    color: var(--primary-maroon);
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    vertical-align: middle;
}

.menu-list li strong {
    color: var(--primary-maroon);
    font-weight: 700;
    white-space: nowrap;
}

.legal-content {
    background: white;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.legal-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 28px 24px;
    border-left: 4px solid var(--gold);
}

.legal-card h3 {
    color: var(--primary-maroon);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}

.legal-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* =========================
   SPECIALTIES SECTION
   ========================= */
.specialties {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(255, 245, 225, 0.7) 100%);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.specialty-card {
    background: white;
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(123, 30, 58, 0.15);
}

.specialty-card-highlight {
    border-top: 4px solid var(--gold);
    background: linear-gradient(135deg, rgba(255, 245, 225, 0.5) 0%, white 100%);
}

.specialty-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
}

.specialty-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary-maroon);
    margin-bottom: 12px;
    font-weight: 600;
}

.specialty-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 14px;
}

.specialty-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-maroon);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
}

/* =========================
   BESTSELLERS SECTION
   ========================= */
.bestsellers {
    background: white;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bestseller-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.bestseller-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.bestseller-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
}

.bestseller-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--cream);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.bestseller-info {
    padding: 25px;
}

.bestseller-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary-maroon);
    margin-bottom: 10px;
    font-weight: 600;
}

.bestseller-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
}

.rating {
    font-size: 13px;
    color: var(--text-light);
}

.rating i {
    color: #FFB800;
    margin-right: 3px;
}

/* =========================
   WHY CHOOSE US SECTION
   ========================= */
.why-choose-us {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, #5a1629 100%);
    color: white;
}

.why-choose-us .section-title,
.why-choose-us .section-subtitle {
    color: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: rgba(255, 245, 225, 0.08);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 245, 225, 0.15);
    transform: translateY(-8px);
    border-color: var(--gold);
}

.why-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    color: rgba(255, 245, 225, 0.85);
    line-height: 1.8;
    font-size: 14px;
}

/* =========================
   GALLERY SECTION
   ========================= */
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.gallery-image {
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: var(--gold);
}

.gallery-item p {
    text-align: center;
    padding: 15px;
    background: var(--light-gray);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* =========================
   TESTIMONIALS SECTION
   ========================= */
.testimonials {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(255, 245, 225, 0.5) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(123, 30, 58, 0.15);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #FFB800;
    margin-right: 3px;
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--primary-maroon);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 3px;
}

.testimonial-author p {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   CONTACT CTA SECTION
   ========================= */
.contact-cta-section {
    background: linear-gradient(135deg, rgba(123, 30, 58, 0.08) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-top: 1px solid rgba(123, 30, 58, 0.12);
    border-bottom: 1px solid rgba(123, 30, 58, 0.12);
}

.contact-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--primary-maroon);
    color: var(--cream);
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-action i {
    color: var(--gold);
}

.contact-action:hover {
    transform: translateY(-2px);
    background: #671931;
    border-color: var(--gold);
}

/* =========================
   FOOTER SECTION
   ========================= */
.footer {
    background: var(--primary-maroon);
    color: var(--cream);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 24px;
}

.footer-section h4 {
    font-size: 16px;
}

.footer-section p {
    color: rgba(255, 245, 225, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-section p a {
    color: var(--gold);
    transition: var(--transition);
}

.footer-section p a:hover {
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 245, 225, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
    margin-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--primary-maroon);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 245, 225, 0.7);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--gold);
    transition: var(--transition);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* =========================
   WHATSAPP FLOATING BUTTON
   ========================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.8);
    }
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-maroon);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        max-height: 500px;
        padding: 20px 0;
    }

    .nav-links li {
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
    }

    .nav-links a::after {
        display: none;
    }

    .hero-title {
        font-size: 50px;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }

    section {
        padding: 50px 0;
    }

    .specialties-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .bestsellers-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .inner-hero {
        padding: 95px 0 40px;
    }

    .menu-category-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .menu-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .contact-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-maroon);
        flex-direction: column;
        gap: 0;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .specialty-card,
    .why-card {
        padding: 25px 15px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .price-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .menu-category-title {
        font-size: 24px;
    }
}

/* =========================
   ACCESSIBILITY & UTILITIES
   ========================= */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #7B1E3A;
    color: #FFF5E1;
    padding: 8px;
    z-index: 1100;
}

.skip-link:focus {
    top: 0;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .cta-buttons {
        display: none;
    }
}
