/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    background-color: #020a06;
    font-family: 'Lato', sans-serif;
}

:root {
    --christmas-red: #8B1E1E;
    --christmas-green: #0B2922;
    --christmas-gold: #D4AF37;
    --christmas-light: #F8F5F2;
    --christmas-accent: #BC9458;
}

/* === OUTER CONTAINER === */
.outer-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.outer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.outer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    opacity: 0.4;
    transform: scale(1.1);
}

.outer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, black, transparent, black);
    opacity: 0.6;
}

/* === GLASS CONTAINER === */
.glass-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
    max-width: 1600px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 60px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: glassPulse 4s ease-in-out infinite;
}

@keyframes glassPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.1), inset 0 0 20px rgba(255,255,255,0.1); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.2), inset 0 0 40px rgba(255,255,255,0.2); }
}

.glass-shine {
    position: absolute;
    inset: 0;
    z-index: 40;
    pointer-events: none;
    border-radius: 40px;
    background: linear-gradient(105deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.1) 100%);
    opacity: 0.5;
}

.glass-edge-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 66.666%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
    z-index: 40;
}

.glass-edge-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 66.666%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    z-index: 40;
}

/* === SNOWFLAKES === */
.snowflakes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
    border-radius: 40px;
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
    user-select: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% { transform: translateY(-20px) translateX(-10px); opacity: 0; }
    20% { opacity: 0.8; }
    100% { transform: translateY(100vh) translateX(20px); opacity: 0; }
}

/* === NAVBAR === */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s;
    padding: 2rem 1.5rem;
    border-radius: 40px 40px 0 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

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

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

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

.nav-button {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-button {
    border-color: var(--christmas-gold);
    color: var(--christmas-gold);
}

.nav-button:hover {
    background: var(--christmas-gold);
    color: var(--christmas-green);
    border-color: var(--christmas-gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 1rem;
    z-index: 45;
    flex-direction: column;
    gap: 1rem;
}

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

.mobile-menu-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem;
    text-align: center;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-menu-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--christmas-gold);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-logo span {
        font-size: 1.25rem;
    }
}

/* === SCROLL CONTAINER === */
.scroll-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
    z-index: 30;
}

.scroll-container::-webkit-scrollbar {
    width: 6px;
}

.scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.8);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 92vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent, #050f0b);
}

.hero-overlay-2 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 30;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--christmas-gold);
    font-size: 0.75rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-title-line1 {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 500;
}

.hero-title-line2 {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 300;
    font-style: italic;
    background: linear-gradient(135deg, #F3Dba8 0%, #C8A976 40%, #A07D45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -0.5rem;
    position: relative;
}

.hero-sparkle {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #e5e7eb;
    margin-bottom: 3rem;
    max-width: 42rem;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--christmas-gold);
    color: var(--christmas-green);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(200, 169, 118, 0.6);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(4px);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--christmas-gold);
    color: var(--christmas-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
    animation: bounce 2s infinite;
    z-index: 30;
    cursor: pointer;
}

.scroll-indicator:hover {
    color: var(--christmas-gold);
}

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

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

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

/* === COMMON SECTIONS === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    color: var(--christmas-gold);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.text-gold {
    font-style: italic;
    color: var(--christmas-gold);
}

.section-subtitle {
    color: #9ca3af;
    font-weight: 300;
    max-width: 36rem;
    margin: 0 auto;
    opacity: 0.8;
}

.section-divider {
    width: 6rem;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--christmas-gold), transparent);
    margin: 0 auto;
    opacity: 0.5;
}

/* === GALLERY SECTION === */
.gallery-section {
    padding: 8rem 0;
    position: relative;
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #050f0b, #0B1A15, #050f0b);
    opacity: 0.9;
    z-index: 0;
}

.gallery-section .container {
    position: relative;
    z-index: 10;
}

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

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.gallery-item-offset {
    margin-top: 3rem;
}

@media (max-width: 767px) {
    .gallery-item-offset {
        margin-top: 0;
    }
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 1s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-frame {
    width: 85%;
    height: 85%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-frame {
    transform: scale(1);
}

.gallery-frame span {
    color: white;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* === PACKAGES SECTION === */
.packages-section {
    padding: 8rem 0;
    position: relative;
    color: white;
    overflow: hidden;
}

.packages-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.packages-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.packages-section .container {
    position: relative;
    z-index: 10;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card {
    position: relative;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.5s;
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.package-recommended {
    background: rgba(11, 41, 34, 0.6);
    border: 2px solid var(--christmas-gold);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.recommended-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to right, var(--christmas-gold), #B08D55);
    color: black;
    padding: 0.5rem 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-radius: 9999px;
}

.package-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.package-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.package-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--christmas-gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.package-meta {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    color: #9ca3af;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.package-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 2.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e5e7eb;
    font-weight: 300;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.package-features svg {
    color: var(--christmas-gold);
    flex-shrink: 0;
}

.package-btn {
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 0.5rem;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.package-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--christmas-gold);
}

.package-btn-recommended {
    background: var(--christmas-gold);
    color: black;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: none;
}

.package-btn-recommended:hover {
    background: white;
    color: black;
}

/* === AI SECTION === */
.ai-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.ai-bg {
    position: absolute;
    inset: 0;
    background: #050f0b;
}

.ai-texture {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.1;
}

.ai-section .container {
    position: relative;
    z-index: 10;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ai-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 1024px) {
    .ai-info {
        text-align: left;
    }
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.1);
    color: var(--christmas-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.ai-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.ai-text {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 32rem;
}

@media (min-width: 1024px) {
    .ai-text {
        margin-left: 0;
        margin-right: auto;
    }
}

.ai-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: border 0.5s;
}

.ai-form-container:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.ai-form-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--christmas-gold), transparent);
    opacity: 0.5;
}

.ai-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--christmas-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 300;
    transition: all 0.3s;
}

.form-input::placeholder {
    color: #6b7280;
}

.form-input:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(0, 0, 0, 0.6);
}

.tone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.tone-btn {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    cursor: pointer;
}

.tone-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.tone-btn.active {
    background: var(--christmas-gold);
    color: black;
    font-weight: 700;
    border-color: var(--christmas-gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

.generate-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
    background: linear-gradient(to right, var(--christmas-red), #7a1919);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
}

.generate-btn:hover:not(:disabled) {
    box-shadow: 0 4px 20px rgba(139, 30, 30, 0.4);
    transform: scale(1.02);
}

.generate-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #6b7280;
    cursor: not-allowed;
}

.generate-btn.loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.generated-result {
    margin-top: 1.5rem;
}

.generated-result.hidden {
    display: none;
}

.result-card {
    background: #f2e8d9;
    color: #111827;
    padding: 1.5rem;
    border-radius: 0.75rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.result-arrow {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    width: 24px;
    height: 24px;
    background: #f2e8d9;
    border-top: 1px solid rgba(212, 175, 55, 0.5);
    border-left: 1px solid rgba(212, 175, 55, 0.5);
    transform: rotate(45deg);
}

.result-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1rem;
}

.result-text::before,
.result-text::after {
    content: '"';
}

.result-footer {
    display: flex;
    justify-content: center;
    border-top: 1px solid #d1d5db;
    padding-top: 0.75rem;
}

.copy-btn {
    font-size: 0.75rem;
    color: var(--christmas-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

.copy-btn:hover {
    color: var(--christmas-red);
}

/* === BOOKING SECTION === */
.booking-section {
    padding: 8rem 0;
    position: relative;
}

.booking-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), #050f0b);
}

.booking-container {
    max-width: 64rem;
    position: relative;
    z-index: 10;
}

.booking-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
    .booking-card {
        padding: 4rem;
    }
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.floating-input {
    position: relative;
    padding-top: 1rem;
}

.floating-input input,
.floating-input textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-weight: 300;
    transition: all 0.3s;
}

.floating-input input:focus,
.floating-input textarea:focus {
    outline: none;
    border-color: var(--christmas-gold);
    background: rgba(255, 255, 255, 0.1);
}

.floating-input input::placeholder,
.floating-input textarea::placeholder {
    color: transparent;
}

.floating-input label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: #0e1613;
    padding: 0 0.25rem;
    color: #9ca3af;
    font-size: 0.75rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
    pointer-events: none;
}

.floating-input input:not(:placeholder-shown) + label,
.floating-input textarea:not(:placeholder-shown) + label,
.floating-input input:focus + label,
.floating-input textarea:focus + label {
    top: -0.625rem;
    font-size: 0.75rem;
    color: var(--christmas-gold);
}

.floating-input input:placeholder-shown + label,
.floating-input textarea:placeholder-shown + label {
    top: 2rem;
    font-size: 1rem;
    color: #6b7280;
    background: transparent;
}

.floating-input textarea {
    resize: none;
}

.select-wrapper {
    position: relative;
    padding-top: 1rem;
}

.form-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #d1d5db;
    font-weight: 300;
    transition: all 0.3s;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--christmas-gold);
}

.select-wrapper label {
    position: absolute;
    left: 1rem;
    top: -0.625rem;
    background: #0e1613;
    padding: 0 0.25rem;
    color: var(--christmas-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
}

.form-submit {
    text-align: center;
    padding-top: 2rem;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 3rem;
    background: linear-gradient(to right, var(--christmas-gold), #B08D55);
    color: black;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.submit-btn:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.4);
}

/* === FOOTER === */
.footer {
    background: rgba(0, 0, 0, 0.6);
    color: #9ca3af;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2em;
}

.footer-brand p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(212, 175, 55, 0.8);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--christmas-gold);
    color: var(--christmas-green);
    border-color: var(--christmas-gold);
}

.footer-copyright {
    text-align: center;
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.4;
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoomIn 0.3s ease-out;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--christmas-gold);
    border-color: var(--christmas-gold);
    color: black;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--christmas-gold);
    border-color: var(--christmas-gold);
    color: black;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    margin-top: 1rem;
    color: white;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 3rem;
        height: 3rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .lightbox-content img {
        max-height: 75vh;
    }
}
