:root {
    --black: #0E0E0E;
    --gold: #D4AF37;
    --ivory: #F5F1EB;
    --amber: #C29B5C;
    --dark-gray: #1A1A1A;
    --light-gold: #E8D4A0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--ivory);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.6;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

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

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

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(194, 155, 92, 0.08) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-small {
    height: 60vh;
    min-height: 400px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 14, 14, 0.3) 0%, rgba(14, 14, 14, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
    text-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--ivory);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

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

.reservation-section {
    padding: 96px 0;
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.reservation-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 64px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.card-header {
    text-align: center;
    margin-bottom: 48px;
}

.card-header h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 12px;
}

.card-header p {
    color: var(--amber);
    font-size: 16px;
    letter-spacing: 0.5px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    background: rgba(245, 241, 235, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    color: var(--ivory);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(245, 241, 235, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 241, 235, 0.4);
}

.form-group select {
    cursor: pointer;
}

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

.btn-primary {
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    border: none;
    border-radius: 6px;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 6px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.alternative-contact {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.alternative-contact p {
    color: var(--amber);
    margin-bottom: 16px;
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

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

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(20, 20, 20, 1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 48px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-large {
    max-width: 700px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    transition: transform 0.2s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-icon {
    margin-bottom: 24px;
    animation: scaleIn 0.5s ease 0.2s backwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
}

.modal-content p {
    color: var(--ivory);
    line-height: 1.6;
    margin-bottom: 32px;
}

.floating-reserve-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6);
    }
}

.floating-reserve-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 64px 0 32px;
    margin-top: 96px;
}

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

.footer-section h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 12px;
}

.footer-section p {
    color: var(--amber);
    line-height: 1.8;
    font-size: 14px;
}

.footer-section a {
    color: var(--amber);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.age-notice {
    color: var(--gold) !important;
    font-weight: 600;
    margin-top: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--amber);
    font-size: 14px;
}

.private-dining-section,
.gift-cards-section,
.policies-section {
    padding: 64px 0;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.intro-text h2 {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 24px;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--amber);
}

.rooms-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 96px;
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.room-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(194, 155, 92, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.room-content h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 8px;
}

.room-capacity {
    color: var(--amber);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.room-content p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--ivory);
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.room-features li {
    color: var(--amber);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.room-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.event-types {
    margin-bottom: 64px;
}

.event-types h2 {
    text-align: center;
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 48px;
}

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

.event-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
}

.event-icon {
    margin-bottom: 24px;
}

.event-card h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 12px;
}

.event-card p {
    color: var(--ivory);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 64px 0;
}

.cta-section h2 {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--amber);
    margin-bottom: 32px;
}

.gift-cards-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 96px;
}

.gift-card-option {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.gift-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.gift-card-mockup {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1.586;
    background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

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

.card-content-display {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content-display h3 {
    font-size: 24px;
    color: var(--gold);
}

.card-content-display p {
    font-size: 12px;
    color: var(--amber);
    letter-spacing: 1px;
}

.card-decoration {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.digital-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.gift-card-details h3 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 16px;
}

.gift-card-details p {
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--ivory);
}

.gift-features {
    list-style: none;
    margin-bottom: 32px;
}

.gift-features li {
    color: var(--amber);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.gift-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.gift-gallery h2 {
    text-align: center;
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 48px;
}

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

.gallery-item {
    text-align: center;
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(194, 155, 92, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-item p {
    color: var(--amber);
    font-size: 14px;
}

.gift-info-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 48px;
}

.info-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.info-step {
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.info-step h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 8px;
}

.info-step p {
    color: var(--ivory);
    line-height: 1.6;
    font-size: 14px;
}

.gift-terms {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 32px;
}

.gift-terms h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
}

.gift-terms ul {
    list-style: none;
    color: var(--amber);
}

.gift-terms li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.gift-terms li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--gold);
}

.card-type-display {
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 6px;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
}

.amount-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.amount-btn {
    flex: 1;
    min-width: 80px;
    padding: 16px;
    background: rgba(245, 241, 235, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    color: var(--ivory);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.custom-amount-input {
    margin-top: 12px;
}

.form-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    margin-bottom: 24px;
}

.form-total span {
    font-size: 18px;
    font-weight: 600;
}

.total-amount {
    font-size: 32px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.policies-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-block {
    margin-bottom: 64px;
}

.policy-block h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.policy-text h3 {
    font-size: 22px;
    color: var(--amber);
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-text p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--ivory);
}

.policy-text ul {
    list-style: none;
    margin: 16px 0;
}

.policy-text li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--ivory);
    line-height: 1.6;
}

.policy-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.allergen-advisory {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 48px;
    margin: 64px 0;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.advisory-header {
    text-align: center;
    margin-bottom: 32px;
}

.advisory-icon {
    margin-bottom: 16px;
}

.advisory-header h2 {
    font-size: 32px;
    color: var(--gold);
    border: none;
    padding: 0;
    margin: 0;
}

.advisory-content {
    text-align: center;
}

.advisory-content p {
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--ivory);
}

.advisory-content em {
    color: var(--gold);
    font-style: italic;
}

.advisory-content strong {
    color: var(--gold);
}

.dietary-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
    padding: 24px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
}

.label-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.label-tag {
    background: var(--gold);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.label-description {
    font-size: 12px;
    color: var(--amber);
}

.advisory-note {
    font-size: 14px !important;
    color: var(--amber) !important;
    font-style: italic;
    margin-top: 24px !important;
}

.contact-cta {
    text-align: center;
    padding: 64px 32px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.contact-cta h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 18px;
    color: var(--ivory);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(14, 14, 14, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 48px 24px;
        gap: 24px;
        transition: left 0.3s ease;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .reservation-card {
        padding: 32px 24px;
    }

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

    .room-card {
        grid-template-columns: 1fr;
    }

    .gift-card-option {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .floating-reserve-btn {
        bottom: 16px;
        right: 16px;
        padding: 14px 24px;
        font-size: 12px;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .amount-options {
        flex-direction: column;
    }

    .amount-btn {
        min-width: 100%;
    }

    .info-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .hero-title {
        font-size: 32px;
    }

    .intro-text h2,
    .event-types h2,
    .gift-gallery h2,
    .gift-info-section h2 {
        font-size: 32px;
    }

    .card-header h2 {
        font-size: 28px;
    }
}

form small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--amber);
    opacity: 0.8;
}
