﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Montserrat', sans-serif;
    color: #111;
}
/*//////////////////////// REUSABLE ///////////////////////*/

/* TYPOGRAPHY SYSTEM */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: inherit;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    color: inherit;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
}

h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.3rem;
    line-height: 1.3;
}


.section-header p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.65;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.flex-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}


.section {
    padding: 120px 40px;
}


/*//////////////////////// NAVBAR ///////////////////////*/
/* BASE NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.15);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

    .navbar.scrolled {
        background: rgba(10, 10, 10, 0.85);
        padding: 14px 60px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
        border-bottom: 1px solid rgba(204, 166, 118, 0.15);
    }


/* MAKE NAVBAR RESPONSIVE  */
@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        background: rgba(0,0,0,0.75);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .logo img {
        height: 28px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

        .nav-links a {
            font-size: 0.75rem;
            letter-spacing: 1px;
        }
}



/* LOGO */
.logo img {
    height: 52px;
    width: auto;
    display: block;
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.scrolled .logo img {
    transform: scale(0.95);
}
/* LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

    .nav-links a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        position: relative;
        padding: 6px 0;
        transition: color 0.3s ease;
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background: #cca676;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
            opacity: 0.8;
        }

        /* HOVER EFFECT */
        .nav-links a:hover {
            color: #ffffff;
        }


            .nav-links a:hover::after {
                transform: scaleX(1);
            }


/* BURGER NAVBAR */

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

    .burger span {
        width: 25px;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(7px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px);
    }

@media (max-width: 768px) {

    .burger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10,10,10,0.92);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 18px;
        padding: 25px 30px;
        display: flex;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: all 0.35s ease;
    }

        .nav-links.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
}



/*________________________________________________*/

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('../images/bathroom1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
}

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.55);
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.15rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
    opacity: 0.75;
    max-width: 520px;
    margin: 0 auto;
}


.hero-button {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 34px;
    text-decoration: none;
    background: #cca676;
    color: #111;
    border: 1px solid #cca676;
    border-radius: 50px;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
}

    .hero-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2), 0 0 20px rgba(204,166,118,0.35);
    }


/*________________________________________________*/
/* FEATURED SECTION */
.featured {
    padding: 100px 40px;
    text-align: center;
}

/* HEADER TEXT */
.section-header h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-weight: 300;
}

.section-header p {
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 50px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


    /* IMAGES */
    .grid img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        border-radius: 2px;
    }

        /* HOVER EFFECT */
        .grid img:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 30px rgba(0,0,0,0.18);
        }


.portfolio-cta {
   
    text-align: center;
    margin-top: 70px;
    position: relative;
}

    .portfolio-cta a {
        display: inline-block;
        background: #cca676;
        color: #111;
        border: 1px solid #cca676;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 1px;
        font-size: 0.8rem;
        padding: 12px 30px;
        text-transform: uppercase;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .portfolio-cta a:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 0 18px rgba(204,166,118,0.25);
        }
    .portfolio-cta::before {
        content: "";
        display: block;
        width: 80px;
        height: 1px;
        background: #cca676;
        margin: 0 auto 25px;
        opacity: 0.6;
    }

/* MAKE FEATURED SECTION RESPONSIVE  */
@media (max-width: 768px) {

    .featured {
        padding: 70px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .grid {
        gap: 18px;
    }

        .grid img {
            height: 220px;
        }

            .grid img:hover {
                transform: none;
            }
}
@media (max-width: 480px) {

    .grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

        .grid img {
            height: 260px;
        }
}

/*________________________________________________*/
/* REVIEWS SECTION */
.reviews {
    background: #0b0b0b;
    color: white;
}

    .reviews .section-header p {
        opacity: 0.6;
    }

/* GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* CARD */
.review-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

    .review-card:hover {
        transform: translateY(-5px);
    }

.stars {
    color: gold;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-card p {
    line-height: 1.7;
    opacity: 0.85;
}

.review-name {
    display: block;
    margin-top: 15px;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/*________________________________________________*/

/* SERVICES SECTION */
.services {
    padding: 120px 40px;
    background: #f8f8f8;
    text-align: center;
}

/* SERVICES HEADER */
.services-header h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.services-header p {
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 70px;
}

/* LIST CONTAINER */
.services-list {
    max-width: 700px;
    margin: 0 auto;
}

/* INDIVIDUAL SERVICE */
.service-item {
    font-size: 1.2rem;
     padding: 18px 0;
    border-bottom: 1px solid #eee;
    letter-spacing: 0.5px;
    position: relative;
    cursor: default;
    transition: letter-spacing 0.3s ease, transform 0.3s ease;
}

    /* REMOVE LAST BORDER */
    .service-item:last-child {
        border-bottom: none;
    }

    /* ✨ HOVER EFFECT (this is the pizazz) */
    .service-item::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 10px;
        width: 0%;
        height: 1px;
        background: rgba(204, 166, 118, 0.6);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .service-item:hover {
        letter-spacing: 1px;
    }

        .service-item:hover::after {
            width: 40%;
        }

.services-cta {
    margin-top: 60px;
}

    .services-cta a {
        display: inline-block;
        padding: 14px 34px;
        background: #cca676;
        color: #111;
        border: 1px solid #cca676;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .services-cta a:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 0 18px rgba(204,166,118,0.25);
        }


.service-item::before {
    content: "—";
    color: #cca676;
    margin-right: 12px;
}

.services-trust {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #cca676;
    position: relative;
    opacity: 0.85;
}

    .services-trust::before {
        content: "";
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 1px;
        background: #cca676;
    }

    .services-trust div {
        position: relative;
    }

        .services-trust div:not(:last-child)::after {
            content: "";
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 14px;
            background: rgba(204,166,118,0.4);
        }


@media (max-width: 480px) {
    .services-trust {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .services-trust {
        flex-direction: column;
        gap: 10px;
    }

        .services-trust::before {
            top: -15px;
        }
}



/*________________________________________________*/

/* ABOUT SECTION */
.about {
    padding: 120px 40px;
    background: #fff;
}


/* TEXT */
.about-text {
    flex: 1;
}

    .about-text h2 {
        font-size: 2.5rem;
        font-family: 'Playfair Display', serif;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.8;
        opacity: 0.7;
        margin-bottom: 20px;
        max-width: 500px;
    }

/* LOGO */
.about-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .about-logo img {
        max-width: 250px;
        opacity: 0.8;
    }




/* 📱 RESPONSIVE */
@media (max-width: 768px) {

    .about .container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 30px;
    }

    .about-text p {
        max-width: 100%;
    }

    .about-logo img {
        max-width: 180px;
        margin-top: 20px;
    }
    .about-logo img,
    .contact-logo img {
        max-width: 160px;
        height: auto;
    }
}
/* GALLERY */
.gallery {
    display: flex;
    gap: 20px;
    padding: 40px;
    justify-content: center;
}

    .gallery img {
        width: 300px;
        height: auto;
    }


/*________________________________________________*/

/* CONTACT SECTION */
.contact {
    background: #0b0b0b;
    color: #cca676; /* gold tone */
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

    .contact::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(204,166,118,0.08), transparent 70% );
    }

  
/* TEXT */
.contact-text h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    margin-bottom: 20px;
}

    .contact-text h2::after {
        content: "";
        display: block;
        width: 70px;
        height: 1px;
        background: #cca676;
        margin-top: 18px;
        margin-left: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .contact-text h2.is-visible::after {
        transform: scaleX(1);
    }
@media (max-width: 768px) {

    .contact-text h2::after {
        margin-left: auto;
        margin-right: auto;
    }
}

.contact-trust {
    margin-top: 30px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.contact-text p {
    opacity: 0.8;
    margin-bottom: 15px;
}

/* DETAILS */
.contact-details {
    margin-top: 35px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    align-items: center;
}

    .contact-item span {
        min-width: 70px;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0.5;
    }

    .contact-item a {
        color: #cca676;
        text-decoration: none;
        transition: opacity 0.3s ease;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

        .contact-item a:hover {
            opacity: 0.7;
        }


@media (max-width: 768px) {

    .contact-item {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
}



/* BUTTON */
.contact-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: #cca676;
    color: #111;
    border: 1px solid #cca676;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
    .contact-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2), 0 0 18px rgba(204,166,118,0.3);
    }

/* LOGO */
.contact-logo img {
    max-width: 200px;
    opacity: 0.8;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {

    .contact .container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }

    .contact-logo img {
        max-width: 160px;
        margin-top: 20px;
    }

    .contact-item {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
}
/*________________________________________________*/

/* FOOTER */

.footer {
    background: #0b0b0b;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 25px 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/*________________________________________________*/
/*________________________________________________*/
/*_____________PROJECTS PAGE______________________*/
/*________________________________________________*/
/*________________________________________________*/
/*________________________________________________*/



/*________________________________________________*/
/*_____________PROJECTS PAGE______________________*/
/*________________________________________________*/

/* NAVBAR */
.navbar-dark {
    background: rgba(11,11,11,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

    .navbar-dark .nav-links a {
        color: white;
    }

    .navbar-dark .burger span {
        background: white;
    }


html {
    scroll-behavior: smooth;
}


/* PROJECTS HEADER */
.projects-header {
    padding: 180px 40px 80px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

    .projects-header h1 {
        font-size: 3rem;
        font-family: 'Playfair Display', serif;
        font-weight: 300;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .projects-header p {
        opacity: 0.6;
        line-height: 1.8;
        font-size: 1rem;
    }


/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}


/* CARD */
.project-card {
    text-align: left;
    cursor: pointer;
}

    /* IMAGE WRAPPER  */
    .project-card img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        display: block;
    }

    /* HOVER EFFECT */
    .project-card:hover img {
        transform: scale(1.03);
        box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    }


    /* TITLE */
    .project-card h3 {
        margin-top: 16px;
        font-weight: 300;
        letter-spacing: 1px;
        font-size: 1.1rem;
        color: #111;
    }


    /* OPTIONAL DESCRIPTION */
    .project-card p {
        margin-top: 6px;
        font-size: 0.9rem;
        opacity: 0.6;
        line-height: 1.6;
    }


/* 📱 RESPONSIVE */
@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .project-card img {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card img {
        height: 260px;
    }
}



/* =========================
   LIGHTBOX
========================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .lightbox.active {
        display: flex;
    }

    .lightbox img {
        max-width: 90%;
        max-height: 85%;
    }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
}

.lightbox-close {
    top: 20px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

#lightboxImg {
    transition: opacity 0.25s ease;
}

/*________________________________________________*/
/*________________________________________________*/
/*_____________PROJECTS PAGE TEMPLATE______________________*/
/*________________________________________________*/
/*________________________________________________*/
/*________________________________________________*/



/*________________________________________________*/
/*_____________PROJECTS PAGE TEMPLATE______________________*/
/*________________________________________________*/


/* =========================
   PROJECT PAGE (REFINED)
========================= */

/* HERO */
/*.project-hero {
    padding: 180px 40px 70px;
    text-align: center;
}

.project-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 15px;
}

.project-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.project-intro {
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.65;
    line-height: 1.8;
    font-size: 1rem;
}*/


/* FEATURE IMAGE */
/*.project-feature img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    display: block;
}*/


/* CONTENT LAYOUT */
/*.project-content {
    padding: 90px 40px;
}

.project-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}*/


/* LEFT CONTENT */
/*.project-info h2 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    margin-bottom: 20px;
}

.project-info p {
    line-height: 1.8;
    opacity: 0.75;
    margin-bottom: 18px;
    max-width: 600px;
}*/


/* RIGHT DETAILS */
/*.project-details {
    flex: 1;
    padding-left: 40px;
    border-left: 1px solid rgba(0,0,0,0.08);
}

    .project-details h3 {
        font-size: 1rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0.5;
        margin-bottom: 25px;
    }

.detail-row {
    margin-bottom: 18px;
}

    .detail-row span {
        display: block;
        font-size: 0.75rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0.4;
        margin-bottom: 5px;
    }

    .detail-row p {
        font-size: 1rem;
        opacity: 0.8;
    }*/


/* GALLERY */
/*.project-gallery {
    padding: 0 40px 100px;
}

    .project-gallery .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .project-gallery img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

        .project-gallery img:hover {
            transform: scale(1.02);
        }*/


/* RESPONSIVE */
/*@media (max-width: 768px) {

    .project-layout {
        flex-direction: column;
        gap: 40px;
    }

    .project-details {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.08);
        padding-top: 30px;
    }

    .project-feature img {
        height: 45vh;
    }

    .project-gallery .container {
        grid-template-columns: 1fr;
    }
}*/


