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

:root {
    --primary-color: #4a0c0c;
    --secondary-color: #f0e6d6;
    --accent-color: #7a1818;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #faf7f4;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 20px auto 0;
}

.section-subtitle {
    display: block;
    color: var(--accent-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(240, 230, 214, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 230, 214, 0.4), 0 0 30px rgba(240, 230, 214, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(42, 13, 5, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(240, 230, 214, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(42, 13, 5, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transition: var(--transition);
}

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

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

.btn-reserve {
    padding: 10px 24px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(240, 230, 214, 0.3);
    letter-spacing: 0.5px;
}

.btn-reserve:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(240, 230, 214, 0.5), 0 0 30px rgba(240, 230, 214, 0.3);
}

.btn-auth {
    border: 1px solid rgba(240, 230, 214, 0.7);
    background: rgba(240, 230, 214, 0.12);
    color: var(--white);
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.btn-auth:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: 
        linear-gradient(160deg, rgba(26, 6, 2, 0.92) 0%, rgba(74, 12, 12, 0.85) 40%, rgba(92, 31, 13, 0.80) 100%);
    background-size: cover;
    background-position: center;
    padding: 100px 0 40px;
}

/* 
 * TO ADD YOUR OWN HERO PHOTO:
 * 1. Add your image file (e.g. hero-bg.jpg) to this folder
 * 2. Uncomment the line below and replace the filename:
 */
/* .hero { background-image: url('hero-bg.jpg'); } */

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 100, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(240, 230, 214, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(240, 230, 214, 0.04) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 40px,
            rgba(212, 175, 100, 0.015) 40px,
            rgba(212, 175, 100, 0.015) 80px
        ),
        radial-gradient(circle at 30% 70%, rgba(212, 175, 100, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(92, 31, 13, 0.15) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.renovation-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4a574 100%);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 25px;
    animation: shimmer 3s infinite;
    box-shadow: 0 6px 20px rgba(240, 230, 214, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.renovation-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 8px 24px rgba(240, 230, 214, 0.6), 0 0 40px rgba(240, 230, 214, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(240, 230, 214, 0.8), 0 0 60px rgba(240, 230, 214, 0.6); }
}

.coming-soon {
    margin: 40px 0;
    padding: 30px;
    background: rgba(240, 230, 214, 0.08);
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(240, 230, 214, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.opening-announcement {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(240, 230, 214, 0.3);
    letter-spacing: 2px;
}

.countdown-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(26, 26, 26, 0.8);
    padding: 20px 30px;
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    min-width: 100px;
}

.countdown-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    color: var(--white);
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease, logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(240, 230, 214, 0.6)) drop-shadow(0 0 80px rgba(240, 230, 214, 0.3));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 300;
}

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

.scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
    margin-top: 20px;
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.scroll-arrow {
    font-size: 1.5rem;
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 230, 214, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(240, 230, 214, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-text .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 35px 25px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(74, 12, 12, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--secondary-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 12px 40px rgba(74, 12, 12, 0.12);
    border-color: var(--secondary-color);
}

.feature:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(240, 230, 214, 0.4), rgba(240, 230, 214, 0.15));
    border-radius: 50%;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(240, 230, 214, 0.6), rgba(240, 230, 214, 0.25));
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: var(--bg-light);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.menu-item {
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.price {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.menu-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light);
    font-style: italic;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(240, 230, 214, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
      circle at top,
      #6b1010 0%,
      #4a0c0c 40%,
      #2a0606 100%
    );
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(240, 230, 214, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder::before {
    opacity: 1;
}

.gallery-placeholder span,
.gallery-placeholder svg {
    font-size: 4rem;
    margin-bottom: 15px;
    color: rgba(240, 230, 214, 0.7);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder span,
.gallery-item:hover .gallery-placeholder svg {
    transform: scale(1.1);
    color: rgba(240, 230, 214, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 20px rgba(240, 230, 214, 0.3));
}

.gallery-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    background: rgba(122, 24, 24, 0.4);
    padding: 10px 24px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder p {
    background: rgba(240, 230, 214, 0.5);
    border-color: var(--secondary-color);
}

/* Reservation Section */
.reservation {
    padding: 100px 0;
    background: var(--bg-light);
}

.reservation-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.reservation-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.notify-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 32px rgba(240, 230, 214, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.vip-benefits {
    background: linear-gradient(135deg, #4a0c0c 0%, #5c1f0d 100%);
    color: var(--secondary-color);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(74, 12, 12, 0.25);
}

.vip-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.vip-benefits ul {
    list-style: none;
    padding: 0;
}

.vip-benefits li {
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 24px;
    transition: var(--transition);
}

.vip-benefits li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.vip-benefits li:hover {
    transform: translateX(5px);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
}

.honeypot-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    display: none;
}

.form-message:not(:empty) {
    display: block;
}

.form-message--success {
    background: rgba(40, 167, 69, 0.12);
    border: 1px solid rgba(40, 167, 69, 0.4);
    color: #1e7e34;
}

.form-message--error {
    background: rgba(74, 12, 12, 0.1);
    border: 1px solid rgba(74, 12, 12, 0.35);
    color: #8b1a1a;
}

.renovation-status {
    background: linear-gradient(135deg, #4a0c0c 0%, #5c1f0d 100%);
    color: var(--secondary-color);
}

.renovation-status h3 {
    color: var(--secondary-color);
}

.renovation-status p {
    color: rgba(240, 230, 214, 0.85);
}

.renovation-status strong {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group:focus-within label {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(240, 230, 214, 0.1);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: radial-gradient(
      circle at top,
      #6b1010 0%,
      #4a0c0c 40%,
      #2a0606 100%
    );
    color: var(--white);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    text-align: left;
}

.contact-map {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-method {
        justify-content: center;
    }
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    width: 100%;
    overflow: hidden;
}

.contact-method .icon {
    font-size: 2rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-method p {
    color: var(--secondary-color);
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.copy-btn {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 12px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.copy-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.copy-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: #1a0606;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: var(--transition);
    color: var(--secondary-color);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(8px);
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    color: var(--secondary-color);
    background: rgba(240, 230, 214, 0.1);
    border-color: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(240, 230, 214, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid transparent;
    background-image: linear-gradient(#1a0606, #1a0606), linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    color: rgba(255, 255, 255, 0.5);
}

/* Auth Modal */
.auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.auth-modal.open {
    display: flex;
}

.auth-modal-card {
    position: relative;
    width: min(560px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(160deg, #fff9f1 0%, #fdf4e5 100%);
    border-radius: 16px;
    border: 2px solid rgba(240, 230, 214, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    padding: 28px;
}

.auth-modal-card h2 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--text-light);
    margin-bottom: 18px;
}

.auth-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    color: var(--primary-color);
    cursor: pointer;
}

.auth-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.auth-secondary-actions {
    margin-top: 10px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.auth-link-btn {
    border: none;
    background: transparent;
    color: #8b1a1a;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
}

.auth-link-btn:hover {
    color: var(--primary-color);
}

.mfa-setup {
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(240, 230, 214, 0.45);
    border-radius: 10px;
    padding: 14px;
}

.mfa-setup h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

#mfaQrContainer {
    margin-top: 8px;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px dashed rgba(42, 13, 5, 0.3);
    display: flex;
    justify-content: center;
}

#mfaQrContainer svg,
#mfaQrContainer img {
    max-width: 220px;
    height: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(240, 230, 214, 0.5), 0 0 40px rgba(240, 230, 214, 0.3);
    }
    50% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 40px rgba(240, 230, 214, 0.8), 0 0 60px rgba(240, 230, 214, 0.6), 0 0 80px rgba(240, 230, 214, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .opening-announcement {
        font-size: 1.8rem;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        padding: 15px 20px;
        min-width: 80px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .reservation-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .auth-actions {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a0606;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    border-radius: 6px;
    border: 2px solid #1a0606;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f4c430, var(--secondary-color));
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #f4c430);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(240, 230, 214, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(240, 230, 214, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(240, 230, 214, 0.6);
}

.back-to-top::before {
    content: '↑';
    font-weight: bold;
}

/* Text Reveal Animation */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ───────────────────────────────────────────
   Soft Opening Splash Popup
   ─────────────────────────────────────────── */
.splash-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 2, 2, 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 20px;
    overflow-y: auto;
}

.splash-overlay.open {
    opacity: 1;
    visibility: visible;
}

.splash-card {
    position: relative;
    width: min(480px, 92vw);
    max-height: 94vh;
    background: radial-gradient(ellipse at top, #5c1610 0%, #3a0a08 40%, #260605 100%);
    border-radius: 4px;
    padding: 32px 32px 28px;
    text-align: center;
    color: var(--secondary-color);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(240, 230, 214, 0.06);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
    margin: auto;
    scrollbar-width: none;
}
.splash-card::-webkit-scrollbar { display: none; }

.splash-overlay.open .splash-card {
    transform: scale(1) translateY(0);
}

/* Corner accents (thin L-shapes) */
.splash-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}
.splash-corner::before,
.splash-corner::after {
    content: '';
    position: absolute;
    background: rgba(240, 230, 214, 0.18);
}
.splash-corner--tl { top: 12px; left: 12px; }
.splash-corner--tl::before { top: 0; left: 0; width: 100%; height: 1px; }
.splash-corner--tl::after  { top: 0; left: 0; width: 1px; height: 100%; }

.splash-corner--tr { top: 12px; right: 12px; }
.splash-corner--tr::before { top: 0; right: 0; width: 100%; height: 1px; }
.splash-corner--tr::after  { top: 0; right: 0; width: 1px; height: 100%; }

.splash-corner--bl { bottom: 12px; left: 12px; }
.splash-corner--bl::before { bottom: 0; left: 0; width: 100%; height: 1px; }
.splash-corner--bl::after  { bottom: 0; left: 0; width: 1px; height: 100%; }

.splash-corner--br { bottom: 12px; right: 12px; }
.splash-corner--br::before { bottom: 0; right: 0; width: 100%; height: 1px; }
.splash-corner--br::after  { bottom: 0; right: 0; width: 1px; height: 100%; }

.splash-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(240, 230, 214, 0.5);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    z-index: 2;
}
.splash-close:hover {
    color: var(--secondary-color);
}

.splash-logo {
    margin-bottom: 10px;
}
.splash-logo img {
    width: 100px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.splash-diamond {
    width: 8px;
    height: 8px;
    background: rgba(240, 230, 214, 0.35);
    transform: rotate(45deg);
    margin: 10px auto;
    position: relative;
}
.splash-diamond::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 230, 214, 0.25), transparent);
}

.splash-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 2px;
    border: 1px solid rgba(240, 230, 214, 0.2);
    display: inline-block;
    padding: 8px 28px;
}

.splash-subheading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(240, 230, 214, 0.6);
    letter-spacing: 2px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* Schedule rows */
.splash-schedule {
    max-width: 380px;
    margin: 0 auto;
}

.splash-day {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: baseline;
    padding: 11px 0;
    border-top: 1px solid rgba(240, 230, 214, 0.1);
}

.splash-day:last-child {
    border-bottom: none;
}

.splash-day-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary-color);
    text-align: left;
    grid-row: 1 / 3;
    align-self: center;
}

.splash-day-times {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(240, 230, 214, 0.8);
    text-align: right;
    font-weight: 500;
}

.splash-bar-note {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-style: italic;
    color: rgba(240, 230, 214, 0.45);
    text-align: right;
    grid-column: 2;
}

.splash-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(240, 230, 214, 0.3), transparent);
    margin: 16px auto;
}

.splash-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(240, 230, 214, 0.5);
    line-height: 1.6;
    margin-bottom: 12px;
}

.splash-dates {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(240, 230, 214, 0.65);
    margin-bottom: 4px;
}

.splash-handle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(240, 230, 214, 0.35);
}

@media (max-width: 480px) {
    .splash-card {
        padding: 36px 24px 30px;
    }
    .splash-heading {
        font-size: 1.6rem;
        letter-spacing: 6px;
        padding: 10px 24px;
    }
    .splash-day-name {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    .splash-logo img {
        width: 110px;
    }
}
