:root {
    --gold: #D4AF37;
    /* Classic gold */
    --black: #000000;
    /* Pure black */
    --white: #FFFFFF;
    /* Pure white */
    --gold-hover: #B8860B;
    /* Darker gold for hover */
    --light-gray: #F5F5F5;
    /* Subtle background */
    --dark-gray: #333333;
    /* Text on white */
}

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

body,
html {
    /* height: 100%;  */
    overflow-x: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--black);
    /* background: var(--black);  */
}

body {
    background: #000;
}

h1,
h2,
h3 {
    font-weight: 300;
    letter-spacing: 1px;
}

p {
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--gold);
    transition: color 0.3s;
}

a:hover {
    color: var(--gold-hover);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container2 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px;
    line-height: 0;
    font-size: 0;
}

.section {
    padding: 0px;
    position: relative;
    z-index: 2;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.cta-btn {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2rem;
    border: 2px solid var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--black);
    color: var(--gold);
}


#videoCanvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    /* Ensures canvas fills screen */
    z-index: -1;
}

#content {
    position: relative;
    z-index: 1;
    color: #fff;
    min-height: 500vh;
    /* Increase this to make the scroll 'slower' */
    /* background-color: rgba(255,255,255,0.8); */
    /* background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8) 20%); */
}



/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gold);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-left: 2rem;
}

nav a {
    color: var(--white);
    font-weight: 500;
}

/* Hero */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-videos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: absolute;
    inset: 0;
}

.hero-videos video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

#hero .cta-btn {
    margin-top: 2rem;
    font-size: 1.3rem;
}

/* Intro Text */
#intro {
    text-align: center;
    color: var(--white);
    background-color: #000000ee;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

#intro p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}


/* About */
#about {
    color: var(--white);
    background-color: #000000bb;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

#about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

#about .about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

#about img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--gold);
}

#about .text {
    flex: 1;
    max-width: 800px;
    font-size: 1.3rem;
    text-align: center;
}

/* Video Showcase */
#video-showcase {
    color: var(--white);
    background-color: #000;
}

.showcase-split {
    display: flex;
    height: 100vh;
}

.showcase-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 4rem;
}

.showcase-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.showcase-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

.showcase-video {
    flex: 1;
}

.showcase-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Picture Slider */
#slider {
    color: var(--dark-gray);
    background-color: #ffffffdd;
    padding: 10rem 0;
}

#slider .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#slider h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.slider-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.gallery-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    transition: transform 0.6s ease;
    will-change: transform;
}

.slide {
    flex: 0 0 150px;
    width: 150px;
    height: 180px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    transform: scale(0.7);
    opacity: 0.6;
    transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
    border: 2px solid transparent;
    z-index: 1;
}

.slide.active {
    transform: scale(2.0);
    opacity: 1;
    border-color: var(--gold);
    z-index: 5;
}

.slide.side {
    transform: scale(1.0);
    opacity: 0.95;
    z-index: 3;
}

.slide.offscreen {
    transform: scale(0.78);
    opacity: 0.7;
    z-index: 2;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.98);
    color: var(--black);
    border: none;
    padding: 0.8rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.35);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 900px) {
    .slide { flex: 0 0 120px; width: 120px; height: 140px; }
    .slide.active { transform: scale(1.5); }
}

@media (max-width: 640px) {
    .gallery-row { gap: 1.5rem; }
    .slide { flex: 0 0 90px; width: 90px; height: 110px; }
    .slide.active { transform: scale(1.3); }
    .slider-btn { display: none; }
}

/* Testimonial */
#testimonial {
    text-align: center;
    color: var(--white);
    background-color: #8a7500b3;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.card-box {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

#testimonial h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.testimonial-card {
    background: #00000099;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--gold);
    flex: 1;
    min-width: 220px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-weight: bold;
}

/* Booking */
#booking {
    color: var(--white);
    background-color: #00000099;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

#booking h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
}

.booking-form input,
.booking-form select,
.booking-form button {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--gold);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 5px;
}

.booking-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.booking-form select option {
    background: var(--black);
    color: var(--white);
}

.booking-form button {
    background: var(--gold);
    color: var(--black);
    font-weight: bold;
}

/* Contact */
#contact {
    color: var(--white);
    background-color: #000000ee;
    padding: 0;
}

#contact .container {
    display: flex;
    max-width: 100%;
    padding: 0;
    min-height: 50vh;
}

.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    font-size: 1.1rem;
}

.contact-item h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.8rem;
    justify-content: space-around;
}

.social-icons a {
    color: var(--white);
    font-size: 1.4rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--gold);
}

.contact-map {
    flex: 1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--gold);
}

.footer{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer p {
    margin-bottom: 1rem;
}

/* Responsive — tablet */
@media (max-width: 1024px) {
    /* Hero */
    #hero h1 { font-size: 3rem; }
    #hero p  { font-size: 1.2rem; }

    /* About */
    #about img {
        width: 220px;
        height: 220px;
    }
    #about .text { font-size: 1.1rem; }

    /* Video Showcase */
    .showcase-text { padding: 3rem 2rem; flex: 1; }
    .showcase-text h2 { font-size: 2rem; }
    .showcase-text p { font-size: 1.05rem; }

    /* Slider */
    #slider { padding: 6rem 0; }

    /* Testimonials — wrap to 2x2 */
    .card-box { gap: 24px; }
    .testimonial-card { min-width: 40%; }

    /* Booking */
    .booking-form { padding: 0 1rem; }

    /* Contact */
    #contact .container { min-height: 45vh; }
    .contact-text { padding: 3rem 2rem; }
}

/* Responsive — mobile */
@media (max-width: 767px) {
    .container { padding: 0 1rem; }

    /* Nav */
    nav ul { display: none; }

    /* Hero */
    #hero h1 { font-size: 2rem; }
    #hero p  { font-size: 1rem; }
    #hero .cta-btn { font-size: 1rem; padding: 0.8rem 1.5rem; }

    .hero-videos {
        grid-template-columns: 1fr;
    }
    .hero-videos video:nth-child(2),
    .hero-videos video:nth-child(3) {
        display: none;
    }

    /* Intro */
    #intro { min-height: 60vh; }
    #intro p { font-size: 1rem; }

    /* All section headings */
    #intro h2,
    #about h2,
    #slider h2,
    #testimonial h2,
    #booking h2,
    .contact-text h2 { font-size: 1.8rem; }

    /* About */
    #about { min-height: auto; padding: 4rem 0; }
    #about .about-content {
        flex-direction: column;
        text-align: center;
    }
    #about img {
        width: 180px;
        height: 180px;
    }
    #about .text { font-size: 1rem; }

    /* Video Showcase */
    .showcase-split {
        flex-direction: column;
        height: auto;
    }
    .showcase-text {
        padding: 3rem 1.5rem;
    }
    .showcase-text h2 { font-size: 1.8rem; }
    .showcase-text p { font-size: 1rem; }
    .showcase-video {
        height: 60vh;
    }

    /* Slider */
    #slider { padding: 4rem 0; }
    .slider-container { padding: 2.5rem 0; }

    /* Testimonials */
    .card-box { flex-direction: column; gap: 16px; }
    .testimonial-card { padding: 1.25rem; min-width: auto; }

    /* Booking */
    #booking { padding: 3rem 0; min-height: auto; }
    .booking-form { padding: 0; }

    /* Contact */
    #contact .container {
        flex-direction: column;
        min-height: auto;
    }
    .contact-text {
        padding: 3rem 1.5rem;
    }
    .contact-map {
        min-height: 350px;
        width: 100%;
    }

    .contact-map iframe {
        min-height: 350px;
    }

    /* Footer */
    .footer { justify-content: center; }
    footer p { font-size: 0.9rem; }
}