/* Fonts */
:root {
    --bg-color: #F4F4F4;
    --text-color: #333333;
    --header-color: #000000;
    --accent-color: #B58E1A;
    /* Darker Gold for visibility */
    --white: #FFFFFF;

    --font-heading: 'Jost', sans-serif;
    --font-body: 'Raleway', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--header-color);
    font-weight: 200;
    /* Thin/Light */
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(244, 244, 244, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    padding: 0 5%;
    /* Push to edges but keep safe zone */
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    color: #f4f4f4;
    font-size: 0.85rem;
    padding: 10px 0;
    font-family: var(--font-body);
    font-weight: 400;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5%;
}

.top-bar-left {
    font-weight: 500;
    color: var(--accent-color);
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f4f4f4;
    transition: color 0.3s;
}

.top-bar-link:hover {
    color: var(--accent-color);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: invert(1);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-block;
    /* Ensure padding/border renders correctly */
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.main-nav a.nav-cta::after {
    display: none;
    /* Remove underline effect for button */
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 125px;
    position: relative;
    /* Ensure container is relative for absolute video */
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    /* Light dim effect */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 244, 244, 0.7);
    /* Light overlay to maintain readability */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    /* Ensure text is above video */
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    color: #666;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--text-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.btn-cta:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background-color: #F8F8F8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    /* Optional constraint */
    height: auto;
    object-fit: cover;
    /* Removed grayscale filter */
}

/* Hours Section */
.hours-section {
    padding: 6rem 0;
    background-color: var(--white);
    text-align: center;
    border-bottom: 1px solid #EEE;
}

.hours-display {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hours-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2rem;
    border: 1px solid #EEE;
    min-width: 250px;
    transition: all 0.3s ease;
}

.hours-block:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.hours-block.closed {
    opacity: 0.7;
}

.day-range {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    color: var(--header-color);
}

.time-range {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.opening-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    font-family: var(--font-body);
}

.opening-hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.opening-hours-list li span:first-child {
    font-weight: 500;
    color: var(--text-color);
}

.contact-card h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #5C4505;
    /* Very dark gold/brown for maximum legibility */
}

.phone-link {
    font-size: 1.2rem;
    border-bottom: 1px solid transparent;
}

.phone-link:hover {
    border-bottom: 1px solid var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.map-container {
    width: 100%;
    height: 400px;
    background-color: #EAEAEA;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DDD;
}

.map-placeholder-ui {
    color: #777;
    font-family: monospace;
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid #DDD;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

/* Responsive */
@media (max-width: 900px) {
    .top-bar {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        text-align: center;
    }

    h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .opening-hours-list li {
        justify-content: center;
        gap: 10px;
    }

    /* Global Mobile Adjustments */
    .hero-section {
        padding-top: 60px;
        /* Reduced header height compensation */
    }

    .nav-cta {
        display: block;
        /* Full width button in mobile menu */
        text-align: center;
        margin-top: 10px;
    }

    .about-section,
    .team-section,
    .pricing-section,
    .gallery-section,
    .contact-section {
        padding: 4rem 0;
        /* Reduced padding for mobile */
    }

    h1 {
        font-size: 2.5rem;
        /* Smaller hero title */
    }

    h2 {
        font-size: 1.8rem;
        /* Smaller section titles */
    }

    .header-content {
        padding: 0 1rem;
        /* Less side padding on mobile header */
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        background-color: var(--white);
        transition: height 0.4s ease;
        border-bottom: 1px solid #EEE;
    }

    .main-nav.active {
        height: 200px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 20px;
    }
}



/* Team Section */
.team-section {
    padding: 8rem 0;
    background-color: var(--white);
    border-bottom: 1px solid #EEE;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 4rem;
}

.team-card {
    text-align: center;
}

.team-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.feature-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.team-card h3 {
    color: var(--text-color);
    /* Dark Slate */
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    /* Bolder than normal */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: none;
    /* Override default uppercase if desired, or keep */
}

.team-card p {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: #555;
    /* Dark Grey */
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}



/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
    background-color: #FAFAFA;
    /* Very light grey to distinguish sections */
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.pricing-column h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--header-color);
    letter-spacing: 2px;
}

.pricing-list {
    list-style: none;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #EEE;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.service-name {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-color);
    font-size: 1.05rem;
}

.service-price {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #967515;
    /* Darker gold/brown for price visibility */
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1;
    /* Square images */
}

.gallery-img {
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
    border: none;
    object-fit: cover;
    /* Fix for stretched images */
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    border: 1px solid var(--accent-color);
    padding: 10px 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cta {
    margin-top: 3rem;
    text-align: center;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    background-color: var(--bg-color);
    padding: 20px;
    max-width: 90%;
    width: 500px;
    text-align: center;
    border: 1px solid var(--accent-color);
}

.lightbox-content .placeholder-box {
    aspect-ratio: 1;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.5rem;
}

#lightbox-caption {
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--accent-color);
}

.lightbox-nav {
    background: none;
    border: none;
    color: #f1f1f1;
    font-size: 3rem;
    cursor: pointer;
    padding: 0 20px;
    user-select: none;
    transition: color 0.3s ease;
    z-index: 2001;
    /* Above image */
}

.lightbox-nav:hover {
    color: var(--accent-color);
}

.lightbox-nav.prev {
    position: absolute;
    left: 10px;
}

.lightbox-nav.next {
    position: absolute;
    right: 10px;
}

@media (max-width: 600px) {
    .lightbox-nav {
        font-size: 2rem;
        padding: 0 10px;
    }

    .lightbox-content {
        max-width: 95%;
        width: 100%;
        padding: 10px;
    }
}