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

html {
    scroll-behavior: smooth;
    background: #222222;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #222222;
    color: #ffffff;
    overflow-x: hidden;
}

#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #222222;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 8vw;
    background: transparent;
    z-index: 1;
}


#three-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

#three-container canvas {
    pointer-events: auto;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    display: inline-block;
}

.title {
    font-family: 'Owners XWide', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #ffffff;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1rem;
    opacity: 0.7;
}

.tagline {
    font-family: 'Times New Roman', Times, serif !important;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
    text-align: right;
    opacity: 0.7;
}

/* Book Now Button (Hero) */
.book-btn,
.book-btn:visited,
.book-btn:link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.6rem 2rem;
    font-family: 'Owners XWide', 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.book-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 10;
}

.scroll-hint p {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #ffffff 0%, transparent 100%);
    margin-top: 1rem;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* About Section */
.about-section {
    min-height: auto;
    padding: 6rem 2rem;
}

.about-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    letter-spacing: 0.03em;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sections */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    background: transparent;
    z-index: 1;
    overflow: visible;
}

.section-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
    overflow: visible;
}

.section h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-shadow:
        1px 1px 0 #ccc,
        2px 2px 0 #bbb,
        3px 3px 0 #aaa,
        4px 4px 0 #999,
        5px 5px 0 #888,
        6px 6px 8px rgba(0,0,0,0.4);
}

.section p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    opacity: 0.7;
}

.video-section {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    filter: blur(10px);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.video-section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.video-section h2 {
    font-family: 'Owners XWide', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-shadow:
        1px 1px 0 #ccc,
        2px 2px 0 #bbb,
        3px 3px 0 #aaa,
        4px 4px 0 #999,
        5px 5px 8px rgba(0,0,0,0.4);
}

.section-subtitle {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    font-weight: normal;
    font-style: italic;
    opacity: 0.5;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}

.video-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 2rem calc(50vw - 140px);
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: center;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.video-item {
    flex: 0 0 auto;
    text-align: center;
    position: relative;
}

.video-title {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    z-index: 10;
}

.video-player {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 8px;
    scroll-snap-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    transform: scale(0.85);
    transition: transform 0.4s ease, box-shadow 0.4s ease, width 0.4s ease;
}

.video-player:hover {
    transform: scale(1);
    width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.4);
}

/* Reel Container */
.reel-container {
    width: 50%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    transition: width 0.4s ease, max-width 0.4s ease, transform 0.4s ease;
}

.reel-container:hover {
    width: 70%;
    max-width: 700px;
}

@media (max-width: 768px) {
    .reel-container {
        width: 90%;
        max-width: 100%;
    }
    .reel-container:hover {
        width: 90%;
        max-width: 100%;
    }
}

.reel-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.4s ease;
}

.reel-container:hover iframe {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* YouTube Thumbnail (lazy load) */
.yt-thumb {
    width: 280px;
    height: 500px;
    border-radius: 12px;
    scroll-snap-align: center;
    background-size: cover;
    background-position: center;
    background-color: #111;
    cursor: pointer;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 10px 20px rgba(0, 0, 0, 0.4);
    transform: scale(0.85);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.yt-thumb:hover {
    transform: scale(1);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 15px 30px rgba(0, 0, 0, 0.5);
}

.yt-thumb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23222'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.yt-thumb:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #fff;
}

.yt-thumb-horizontal {
    width: 500px;
    height: 280px;
    border-radius: 12px;
    scroll-snap-align: center;
}

.yt-thumb-wide {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 10px 20px rgba(0, 0, 0, 0.4);
    transform: none;
}

.yt-thumb-wide:hover {
    transform: none;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* YouTube Short Embed (loaded on click) */
.youtube-short {
    width: 280px;
    height: 500px;
    border: none;
    outline: none;
    border-radius: 12px;
    scroll-snap-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 10px 20px rgba(0, 0, 0, 0.4);
    transform: scale(0.85);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.youtube-short:hover {
    transform: scale(1);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Booking Section */
.booking-section {
    min-height: 60vh;
    padding: 6rem 2rem;
}

.booking-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.booking-btn,
.booking-btn:visited,
.booking-btn:link {
    padding: 0.8rem 2.5rem;
    font-family: 'Owners XWide', 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: #222;
    background: #fff;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.booking-btn:hover {
    transform: translateY(-2px);
    background: #ddd;
}

.booking-btn-outline,
.booking-btn-outline:visited,
.booking-btn-outline:link {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.booking-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .booking-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
.footer {
    position: relative;
    padding: 4rem;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.footer p {
    font-size: 0.875rem;
    opacity: 0.5;
    line-height: 1.6;
}

.footer-email {
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.5;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.footer-email:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Selection */
::selection {
    background: #ffffff;
    color: #0a0a0a;
}
