:root {
    --bg-color: #f7f3f0; /* Warm off-white */
    --text-primary: #000000;
    --text-secondary: #777777;
    --accent-color: #000000;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

body {
    background: radial-gradient(circle at center, #fbf9f7 0%, #f0ece6 100%);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.landing-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    mix-blend-mode: multiply;
}

.content-wrapper {
    text-align: center;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 0.5rem;
    width: 100%;
    margin-top: 3rem;
}

#main-logo {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.subtitle {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 3vw, 1.15rem);
    font-weight: 400;
    letter-spacing: 0.5em;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    padding-left: 0.5em; 
}

.cta-container {
    margin-top: 0;
}

.btn-book {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    border: 0.5px solid var(--text-primary);
    transition: var(--transition);
    cursor: pointer;
    outline: none;
}

.btn-book:hover {
    background-color: var(--text-primary);
    color: #ffffff;
    letter-spacing: 0.45em;
}

.footer {
    padding: 4rem;
    text-align: center;
    font-size: 0.6rem;
    font-family: var(--font-sans);
    letter-spacing: 0.3em;
    color: #999999;
    text-transform: uppercase;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 1.2s ease forwards;
}

.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.8s; }
.delay-3 { animation-delay: 1.2s; }

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

/* Responsive */
@media (max-width: 768px) {
    #main-logo {
        max-width: 300px;
    }
    
    .subtitle {
        letter-spacing: 0.4em;
        margin-bottom: 3rem;
    }
    
    .btn-book {
        padding: 1rem 2.5rem;
        font-size: 0.75rem;
        padding-left: calc(2.5rem + 0.3em);
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 650px;
    height: 80vh;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition);
}

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

.iframe-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        height: 100%;
    }
    
    .close-btn {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        z-index: 1002;
    }
}
