* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden;
}

/* Video Background 
.video-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}*/

/* YouTube Background Wrapper */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    z-index: -1;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.65),
        rgba(212, 175, 55, 0.3),
        rgba(212, 175, 55, 0.3)
    );
    background-size: 100% 200%;
    animation: gradientMove 10s ease-in-out infinite;
}

/* vignette */
.overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(0,0,0,0) 40%,
        rgba(0,0,0,0.55) 100%
    );
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

/* Login Button */
.top-right {
    position: absolute;
    top: 20px;
    right: 30px;
}

.login-btn {
    padding: 10px 22px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: 0.2s;
}

.login-btn:hover {
    background: #fff;
    color: #000;
}

/* Main Content */
.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.content h1 {
    font-family: 'Baloo 2', cursive;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;

    background: linear-gradient(90deg, #fff, #d4af37, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 8px rgba(212, 175, 55, 0.25),
        0 0 18px rgba(212, 175, 55, 0.15);
}

.content p {
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow:
        1px 1px 0 #000,
        2px 2px 4px rgba(0,0,0,0.7);
}

.hero-logo {
    max-width: 480px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;

    filter:
        drop-shadow(0 0 8px rgba(212,175,55,0.35))
        drop-shadow(0 0 18px rgba(0,0,0,0.7));
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 160px;
        margin-bottom: 18px;
    }
}


/* Buttons */
.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 14px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid transparent;
}

.btn-search {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-search:hover {
    background: #fff;
    color: #000;
}

.btn-book {
    background: linear-gradient(135deg, #ffde73, #d6b03c);
    color: #000;
    box-shadow:
        0 0 12px rgba(212, 175, 55, 0.45),
        inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.7),
        inset 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.3rem;
    }

    .content p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}
