/* ============================
   BRAND COLOURS
   ============================ */
:root {
    --deep-green: #0f1f17;
    --brass: #c6a667;
    --white: #ffffff;
    --light-green: #1f3d31;
}

/* ============================
   GLOBAL
   ============================ */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--deep-green);
    color: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* ============================
   NAVIGATION BAR
   ============================ */
.navbar {
    background: var(--deep-green);
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    display: inline-block;
    margin: 0 15px;
}

.navbar a {
    color: var(--brass);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.navbar a:hover {
    color: var(--white);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 999999; /* force navbar above everything */
}

.services {
    position: relative;
    z-index: 1; /* keep it below navbar */
}

/* ============================
   HERO SECTION (HOME)
   ============================ */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-green);
}

.logo {
    width: 2000px;
    max-width: 60%;
    display: block;
    margin: 0 auto;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--brass);
    color: var(--deep-green);
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

/* ============================
   GALLERY PAGE
   ============================ */
.gallery {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-green);
    margin-top: 40px;
}

.gallery h1 {
    color: var(--brass);
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

/* ⭐ Subtitle now brass */
.gallery > p {
    margin-bottom: 30px;
    color: var(--brass);
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid var(--brass);
    cursor: pointer;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Empty placeholder slots */
.empty-slot {
    width: 100%;
    aspect-ratio: 16/9;
    border: 3px solid var(--brass);
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
}

.gallery h2 {
    color: var(--brass);
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox Background */
.lightbox {
    display: none; 
    position: fixed;
    z-index: 99999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    text-align: center;
}

/* Enlarged Image */
.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border: 4px solid var(--brass);
    border-radius: 10px;
}

/* Close Button */
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--brass);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


/* ============================
   SERVICES PAGE
   ============================ */
.services {
    padding: 40px 20px;
    background: var(--light-green);
}

.services-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Page title */
.services h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--brass);
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

/* Service cards */
.service-card {
    background: var(--light-green);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--brass);
    border-radius: 6px;
    color: var(--brass); /* all writing brass */
}

.service-card h3 {
    color: var(--brass);
    font-style: italic;
    margin-bottom: 8px;
    padding-bottom: 4px;
    display: inline-block; /* underline matches text width */
    border-bottom: 2px solid var(--brass);
    opacity: 0;
    transform: translateY(10px); /* bigger movement so you SEE it */
    animation: fadeUnderline 0.8s ease forwards;
    animation-delay: 0.2s; /* gives your eye time to notice it */
}



/* Prices */
.price {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    color: var(--brass);
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
}


/* ============================
   CONTACT SECTION (HOME)
   ============================ */
.contact {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-green);
    margin-top: 40px;
}

.contact h2 {
    margin-bottom: 10px;
    color: var(--brass);
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.contact p {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-highlight {
    color: var(--brass);
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-page {
    background: var(--light-green);
    padding: 40px 20px;
    text-align: center;
}

.contact-page h1,
.contact-page > p {
    color: var(--brass);
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.contact-page h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-card {
    background: var(--light-green);
    border: 3px solid var(--brass);
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 500px;
    color: var(--brass);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.contact-card h3 {
    color: var(--brass);
}

.contact-card p {
    color: var(--brass);
}


/* Luxury Blurb Box */
.blurb-box {
    border: 2px solid var(--brass);
    background-color: var(--light-green);
    padding: 20px 25px;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

/* Luxury Blurb Text */
.blurb-box p {
    color: var(--brass);
    font-size: 1.25rem; /* slightly larger */
    font-family: "Playfair Display", serif; /* luxury but readable */
    line-height: 1.6;
    text-align: center;
}

@keyframes fadeUnderline {
    0% {
        opacity: 0;
        transform: translateY(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-page {
    background-color: #1f3d31; /* your light green */
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    padding: 40px;
}


.booking-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.booking-form-container {
    background: #1A2F2A;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.booking-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: none;
    background: #25433D;
    color: #D4AF37;
}

.submit-btn {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    background: #D4AF37;
    color: #0F1A18;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #F5D98A;
}

.lightbox {
    display: none;          /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;          /* sits ABOVE navbar when active */
    pointer-events: none;   /* <-- THIS is the fix */
}

.lightbox.active {
    display: flex;
    pointer-events: auto;   /* allow clicking only when open */
}


/* ============================
   FOOTER
   ============================ */
.footer {
    text-align: center;
    padding: 20px;
    background: var(--light-green);
    margin-top: 40px;
    color: var(--brass); 
}

.footer-logo {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    border: 2px solid var(--brass);   /* brass border */
    border-radius: 6px;               /* optional: smooth corners */
    padding: 4px;                     /* optional: breathing room */
}

