:root {
    --bg-dark: #0d0d0f;
    --bg-card: rgba(25, 25, 28, 0.6);
    --primary: #d84238; /* Gold */
    --primary-hover: #b3922c;
    --text-main: #fcfcfc;
    --text-muted: #a3a3a3;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --border-color: rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    transition: width 0.2s, height 0.2s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}
header.scrolled {
    background: rgba(13, 13, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}
header.scrolled .header-container {
    padding: 1rem 0;
}
.logo {
    display: flex;
    flex-direction: column;
}
.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: 2px;
}
.sub-logo {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}
nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
nav a:hover {
    color: var(--primary);
}
.cta-button {
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Typography Helpers */
.cinzel { font-family: var(--font-heading); }
.text-gold { color: var(--primary); }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.divider { width: 60px; height: 1px; background: var(--primary); margin: 1rem auto; }
.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05); /* For subtle parallax/zoom */
    animation: zoomOut 20s infinite alternate;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,13,15,0.4), var(--bg-dark));
}
.hero-content {
    position: relative;
    z-index: 10;
}
.hero h2 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
.hero h2 .highlight {
    font-style: italic;
    color: var(--text-main);
    font-weight: 300;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}
.primary-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.primary-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}
.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

/* Animations Core */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.fade-in { opacity: 0; transition: all 1s ease; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.is-visible { opacity: 1 !important; transform: translate(0) !important; }

/* Indulgences Section */
.indulgences {
    padding: 8rem 0;
    position: relative;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}
.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
    border-radius: 4px;
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.feature-card:hover .card-img {
    transform: scale(1.08);
}
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-card), transparent);
    opacity: 0.5;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.card-content h3 span {
    color: var(--primary);
}
.card-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Menu Items layout inside card */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.menu-item {
    display: flex;
    align-items: center;
    font-family: var(--font-body);
}
.item-name {
    font-weight: 400;
    font-size: 1.1rem;
}
.item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted var(--text-muted);
    margin: 0 1rem;
    position: relative;
    top: -5px;
    opacity: 0.5;
}
.item-price {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.2rem;
}

/* Hover Scale utility */
.hover-scale { transition: transform 0.3s ease; }
.hover-scale:hover { transform: translateX(10px); color: var(--primary); }

/* Full Menu section */
.full-menu {
    padding: 4rem 0 8rem;
}
.glass-panel {
    background: linear-gradient(135deg, rgba(25, 25, 28, 0.8), rgba(13, 13, 15, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4rem;
    backdrop-filter: blur(20px);
}
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}
.menu-category h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.menu-list li {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 300;
    transition: color 0.3s;
}
.menu-list li:hover {
    color: var(--primary);
}
.menu-list li span:last-child {
    font-family: var(--font-heading);
    color: var(--primary);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    background: #08080a;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.footer-brand h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.socials {
    display: flex;
    gap: 1.5rem;
}
.socials a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.socials a:hover {
    color: var(--primary);
}
.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Keyframes */
@keyframes zoomOut {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

/* Responsiveness */
@media (max-width: 900px) {
    .features-grid, .menu-grid {
        grid-template-columns: 1fr;
    }
    .hero h2 {
        font-size: 3rem;
    }
    nav ul {
        display: none; /* simple hidden nav for mobile */
    }
    .header-container {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    .card-image-wrapper { height: 250px; }
}

/* WhatsApp Integration */
.announcement-bar {
    background: var(--primary);
    color: var(--bg-dark);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1001;
    position: relative;
    text-transform: uppercase;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: #fff;
}
.wa-icon {
    margin-right: 8px;
}

/* Order links */
.order-link {
    font-size: 0.8rem;
    color: var(--primary);
    margin-left: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}
.hover-scale:hover .order-link, .menu-list li:hover .order-link-small {
    opacity: 1;
}
.order-link-small {
    font-size: 0.75rem;
    color: var(--primary);
    margin-left: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Styling */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-subtitle {
    margin: 0.5rem 0 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.payment-notice {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--primary);
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-body);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
}

.disabled-input {
    color: var(--primary) !important;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.05) !important;
    cursor: not-allowed;
}

.submit-order-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}
