:root {
    --primary: #cda434; /* Elegant gold */
    --primary-hover: #b38f2d;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --glass-bg: rgba(10, 15, 25, 0.45);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-color: #000;
}

/* Background Slider */
.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 10s ease-in-out;
    transform: scale(1.05);
}

.bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}

/* Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    z-index: 1;
}

/* Header & Logo */
.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.brand-logo {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
}

/* Content */
.content {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 2.5rem;
    width: 100%;
    transform-style: preserve-3d;
}

.title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateZ(30px);
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    transform: translateZ(20px);
}

.description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    transform: translateZ(10px);
}

/* Booking section */
.booking-options {
    width: 100%;
}

.booking-title {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ota-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.ota-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

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

.ota-card:hover {
    transform: translateY(-5px);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(205, 164, 52, 0.3);
}

.ota-card:hover::before {
    left: 100%;
}

.ota-icon {
    font-size: 1.25rem;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-light);
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.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);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-logo {
        max-width: 260px;
    }

    .title {
        font-size: 3rem;
    }
    
    .content {
        padding: 2.5rem;
    }
    
    .ota-card {
        padding: 0.875rem 1.5rem;
        flex: 1 1 calc(50% - 1rem);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        max-width: 200px;
    }

    .ota-card {
        flex: 1 1 100%;
    }
    
    .container {
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .footer {
        margin-top: 3rem;
    }
}
