:root {
    --primary: #000;
    --accent: #f2c200;
    --bg: #ffffff;
    --text: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
}

.logo {
    height: 60px;
}


html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}




nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

nav a:hover {
    color: var(--accent);
}

/* HERO */
.hero {
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("images/hero.jpg") center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* BUTTON */
.btn {
    background: var(--accent);
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.btn:hover {
    background: #d4aa00;
}

/* SERVICES */
.services {
    padding: 60px 40px;
    text-align: center;
}

.services h2 {
    font-family: 'Fjalla One', sans-serif;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    padding: 25px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

/* GALLERY */
.gallery {
    padding: 60px 40px;
    background: #f9f9f9;
    text-align: center;
}

.gallery h2 {
    font-family: 'Fjalla One', sans-serif;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTACT */
.contact {
    padding: 60px 40px;
    text-align: center;
}

.contact-box {
    margin: 20px 0;
}

/* FOOTER */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
}

.credit {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 5px;
}

/* MOBILE */
@media (max-width: 768px) {

    header {
        flex-direction: column;
    }

    nav {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

.logo {
    height: 200px;
    width: auto;
    object-fit: contain;
}


nav {
    display: flex;
    align-items: center;
}

/* Base links */
nav a {
    position: relative;
    margin-left: 30px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    color: black;
    padding: 5px 0;
    transition: 0.3s;
}

/* Yellow underline animation */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 3px;
    background: var(--accent);
    transition: 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

nav a:hover::after {
    width: 100%;
}

.before-after {
    padding: 60px 40px;
    text-align: center;
}

.before-after h2 {
    font-family: 'Fjalla One', sans-serif;
    margin-bottom: 30px;
}



















.ba-image-box {
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.ba-image-box img {
    width: 100%;
    height: 420px;        /* consistent desktop height */
    object-fit: contain;  /* NO zoom, shows full image */
    display: block;
    border-radius: 10px;
    background: #f5f5f5;
}



















/* Button */
.ba-button {
    display: block;
    margin: 15px auto 0;
    padding: 10px 18px;
    background: var(--accent);
    color: black;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.ba-button:hover {
    opacity: 0.85;
}

/* Gallery images */
.gallery-grid img {
    width: 100%;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 6px;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Lightbox background */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}

/* Zoomed image */
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.basement-ba .ba-image-box img {
    width: 100%;
    height: 450px;
    object-fit: contain;
}

.ba-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* allows mobile stacking */
}

.before-after {
    flex: 1;
    min-width: 300px; /* prevents it from getting squished */
}

.before-after .ba-image-box img {
    width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* Desktop ONLY */
@media (min-width: 900px) {
    .before-after .ba-image-box img {
        height: 420px; /* adjust if needed */
    }
}


@media (min-width: 900px){
.flex{display: flex;} }



.site-footer {
    background: #111;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 60px;
    text-align: center; /* fixes base alignment */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* centers everything */
    gap: 60px;
    max-width: 1100px;
    margin: auto;
}

.footer-brand,
.footer-links,
.footer-contact {
    text-align: center; /* ensures text is centered inside each block */
    min-width: 200px;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin: 5px 0;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

@media (min-width: 900px) {
    .footer-container {
        gap: 120px;
    }
}

.about {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about .accent {
    color: var(--accent); /* your yellow */
}

.about-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #ddd;
    font-size: 1.05rem;
}



.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}



@media (min-width: 900px) {

.newflex{display: flex;}


}

@media (max-width: 900px) {


.about-img{display: none;}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;

    width: 100%;
    max-width: 1400px; /* increase this */
    margin: 0 auto;
    padding: 0 40px;
}

.about-text {
    flex: 1.2;
}
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

}

.newflex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;

    width: 100%;
    max-width: 1200px;   /* lets it grow on big screens */
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    flex: 1;
}

.about-img {
    flex: 1;
    max-width: 450px;
    width: 100%;
}



@media (min-width: 1300px) {

.about-img{max-width: 600px;
align-items: flex-end;}

}


.about.newflex .about-content p {
    font-family: "Inter", sans-serif;
    color: #444;          /* softer grey (not harsh black) */
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}

.about.newflex {
    margin-top: 40px;
}


/*Terms*/

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: "Inter", sans-serif;
    color: #444;
    line-height: 1.8;
}

.legal-page h1 {
    font-family: "Fjalla One", sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.legal-page h2 {
    margin-top: 30px;
    font-size: 1.4rem;
    color: #000;
}

.legal-page p {
    margin-top: 10px;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: "Inter", sans-serif;
    color: #444;
    line-height: 1.8;
}

.legal-page h1 {
    font-family: "Fjalla One", sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.legal-page h2 {
    margin-top: 30px;
    font-size: 1.4rem;
    color: #000;
}

.legal-page p {
    margin-top: 10px;
}

.legal-links {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.legal-card {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #444;
    transition: 0.2s;
    background: #fff;
}

.legal-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.legal-card h2 {
    font-family: "Fjalla One", sans-serif;
    margin-bottom: 10px;
    color: #000;
}

.legal-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.legal-page {
    flex: 1;
}


.contact {
    padding: 100px 20px;
    text-align: center;
    background: #f9f9f9;
}

.contact h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.contact-box {
    margin: 30px auto;
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-box p {
    margin: 8px 0;
}


.about-img-carousel {
    position: relative;
    flex: 1;
    max-width: 450px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.about-slide {
    width: 100%;
    display: none;
    object-fit: cover;
}

.about-slide.active {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 18px;
}

.carousel-btn.prev {
    left: 5px;
}

.carousel-btn.next {
    right: 5px;
}


.about-img-carousel {
    flex: 1;
    max-width: 550px;   /* wider */
    width: 100%;
    height: 420px;      /* taller */
    overflow: hidden;
    border-radius: 8px;
}

.about-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 👈 this is the key */
    display: none;
}
.about-img-carousel {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


@media (max-width: 1000px) {
    .about-img-carousel {
        display: none;
    }
}

@media (max-width: 1000px) {
    .newflex {
        flex-direction: column;
    }
}

.about-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-carousel {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .flex {
        gap: 10px;
    }

    .before-after {
        padding: 25px 15px;
    }
}






/*Styles for before and after*/


@media (max-width: 768px) {

    .flex {
        display: block; /* stack instead of side-by-side */
    }

    .before-after {
        padding: 20px 10px;
    }

    .ba-image-box {
        width: 100%;
        max-width: 100%;
    }

    .ba-image-box img {
        width: 100%;
        height: auto;        /* 🔑 THIS fixes the stretching */
        object-fit: cover;
    }

    .ba-button {
        width: 100%;
        max-width: 300px;
    }
}



.ba-image-box img {
    width: 100%;
    height: 420px;       /* nice consistent desktop height */
    object-fit: contain; /* 🔑 NO zoom */
    display: block;
    border-radius: 10px;
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .ba-image-box img {
        height: auto;
        object-fit: cover; /* fills nicely on small screens */
    }
}

.ba-image-box {
    position: relative;
}

.ba-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    background: rgba(242, 194, 0, 0.95);
    color: #111;

    padding: 18px 0;

    font-family: 'Fjalla One', sans-serif;
    font-size: 1.6rem;   /* 👈 bigger */
    font-weight: 700;    /* 👈 bolder */
    letter-spacing: 2px; /* 👈 stronger presence */

    text-transform: uppercase;
    text-align: center;

    border-radius: 0 0 10px 10px;
}