


/* GENERAL */



body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

/* HERO */

.hero {
    height: 550px;
    background-image: linear-gradient( rgba(0,0,0,0.35), rgba(0,0,0,0.35) ), url('/images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 700px;
    padding: 30px;
}

    .hero-content p:first-child {
        letter-spacing: 4px;
        font-size: 14px;
    }

.hero h1 {
    font-size: 70px;
    margin: 10px 0;
}

.hero h2 {
    font-size: 28px;
    font-weight: normal;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: white;
    color: #333;
    text-decoration: none;
}

.intro {
    max-width: 900px;
    margin: auto;
    padding: 80px 30px;
    text-align: center;
}

    .intro h2 {
        font-size: 40px;
    }
.page-header {
    text-align: center;
    padding: 70px 20px 40px;
}

    .page-header h1 {
        font-size: 48px;
    }

.gallery {
    max-width: 1100px;
    margin: auto;
    padding: 20px 30px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    text-align: center;
}

    .gallery-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .gallery-item h2 {
        font-size: 24px;
        margin-top: 15px;
    }
/* =========================
   GALLERY
   ========================= */

.gallery-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 70px;
}

    .gallery-header h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .gallery-header p {
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
    }

.gallery-section {
    margin-bottom: 80px;
}

    .gallery-section h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

    .gallery-grid a {
        display: block;
        width: 100%;
        overflow: hidden;
        border-radius: 8px;
    }

    .gallery-grid img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }


/* NAVIGATION */

.site-header {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background: white;
    border-bottom: 1px solid #ddd;
}

.logo a {
    text-decoration: none;
    color: #333;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    font-weight: normal;
}

nav {
    display: flex;
    gap: 30px;
}

    nav a {
        text-decoration: none;
        color: #333;
        font-size: 16px;
    }

        nav a:hover {
            color: #777;
        }


/* FOOTER */
/* =========================
   FOOTER
   ========================= */

.site-footer {
    margin-top: 100px;
    padding: 60px 40px 20px;
    background: #333;
    color: white;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.footer-brand h2 {
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

    .footer-links h3 {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        margin-bottom: 10px;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-bottom {
    max-width: 1100px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

footer {
    padding: 30px;
    text-align: center;
    background: #333;
    color: white;
}
@media (max-width: 768px) {

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer {
        padding: 40px 20px 20px;
    }
}

/* PROJECT PAGE */

.project-header {
    padding: 90px 20px;
    text-align: center;
    background: #eeeae2;
}

    .project-header p:first-child {
        letter-spacing: 4px;
        font-size: 14px;
    }

    .project-header h1 {
        font-size: 50px;
        margin: 15px 0;
    }


.project-content {
    max-width: 900px;
    margin: auto;
    padding: 70px 30px;
}

    .project-content h2 {
        font-size: 32px;
        margin-top: 50px;
    }

.property-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

    .property-details div {
        padding: 25px;
        background: #f4f2ed;
        text-align: center;
    }

    .property-details strong {
        display: block;
        font-size: 18px;
    }
.property-summary {
    padding: 70px 30px;
    background: #eeeae2;
    text-align: center;
}

    .property-summary h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .property-summary .property-details {
        max-width: 1000px;
        margin: auto;
    }
/* GALLERY */

.gallery-header {
    text-align: center;
    padding: 80px 20px 50px;
}

    .gallery-header h1 {
        font-size: 50px;
        margin: 10px 0;
    }

    .gallery-header p:first-child {
        letter-spacing: 4px;
        font-size: 14px;
    }


.gallery-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

.gallery-section-header {
    text-align: center;
    margin-bottom: 35px;
}

    .gallery-section-header h2 {
        font-size: 36px;
        margin-bottom: 5px;
    }


.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 700px) {

    .site-header {
        height: auto;
        flex-direction: column;
        padding: 20px;
    }

    nav {
        margin-top: 15px;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }


    .hero {
        height: 450px;
    }

        .hero h1 {
            font-size: 48px;
        }


    .property-details {
        grid-template-columns: 1fr;
    }


    .photo-grid {
        grid-template-columns: 1fr;
    }


    .gallery-header h1 {
        font-size: 38px;
    }


    .gallery-section {
        padding-left: 20px;
        padding-right: 20px;
    }


    .photo-card img {
        height: 280px;
    }
}


.photo-card {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}


    .photo-card img {
        display: block;
        width: 100%;
        height: 350px;
        object-fit: cover;
    }


    .photo-card p {
        padding: 15px 20px;
        margin: 0;
    }
/* ROOM PAGES */

.room-header {
    text-align: center;
    padding: 80px 20px 50px;
    background: #eeeae2;
}

    .room-header p:first-child {
        letter-spacing: 4px;
        font-size: 14px;
    }

    .room-header h1 {
        font-size: 50px;
        margin: 10px 0;
    }


.room-content {
    max-width: 1000px;
    margin: auto;
    padding: 70px 30px;
}

    .room-content h2 {
        font-size: 34px;
    }


.before-after {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}


    .before-after h3 {
        text-align: center;
        font-size: 24px;
    }


    .before-after img {
        display: block;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
.project-gallery {
    margin-top: 50px;
}

    .project-gallery h2 {
        margin-bottom: 25px;
    }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

    .photo-grid img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.3s ease;
    display: block;
    }
    .photo-grid img:hover {
        transform: scale(1.03);
    }
.property-details {
    margin: 60px 0;
    text-align: center;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.detail-card {
    padding: 30px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f8f8;
}

    .detail-card h3 {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .detail-card p {
        margin: 0;
        font-size: 1.1rem;
    }
@media (max-width: 768px) {

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {

    .details-grid {
        grid-template-columns: 1fr;
    }
}
.renovation-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 80px 0;
}

.renovation-text {
    padding: 20px;
}

    .renovation-text h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .renovation-text p {
        line-height: 1.8;
        margin-bottom: 20px;
    }

.renovation-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}
@media (max-width: 768px) {

    .renovation-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .renovation-image img {
        height: 350px;
    }
}
.renovation-timeline {
    margin: 100px 0;
    text-align: center;
}

    .renovation-timeline h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

.timeline-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.timeline-item {
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 25px;
}

    .timeline-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .timeline-item h3 {
        margin-top: 20px;
        font-size: 1.5rem;
    }

    .timeline-item p {
        padding: 0 20px;
        line-height: 1.6;
    }

.site-footer {
    margin-top: 100px;
    padding: 60px 40px 20px;
    background: #333;
    color: white;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.footer-brand h2 {
    margin-bottom: 15px;
}

.footer-brand p {
    margin: 0;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

    .footer-links h3 {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        margin-bottom: 10px;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-bottom {
    max-width: 1100px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}
@media (max-width: 768px) {

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer {
        padding: 40px 20px 20px;
    }
}

@media (max-width: 768px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-header h1 {
        font-size: 2.3rem;
    }
}
.project-hero {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

    .project-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.project-hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    z-index: 2;
}

    .project-hero-overlay h1 {
        font-size: 4rem;
        margin-bottom: 15px;
    }

    .project-hero-overlay p {
        font-size: 1.5rem;
    }

@media (max-width: 768px) {

    .project-hero {
        height: 400px;
    }

    .project-hero-overlay h1 {
        font-size: 2.8rem;
    }

    .project-hero-overlay p {
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {

    .project-hero {
        height: 320px;
    }

    .project-hero-overlay h1 {
        font-size: 2.2rem;
    }

    .project-hero-overlay p {
        font-size: 1rem;
    }
}
.property-details {
    max-width: 1100px;
    margin: 70px auto;
    padding: 0 20px;
    text-align: center;
}

    .property-details h2 {
        font-size: 2.3rem;
        margin-bottom: 35px;
    }

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.detail-card {
    padding: 30px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f8f8;
}

    .detail-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .detail-card p {
        margin: 0;
        font-size: 1.1rem;
    }
@media (max-width: 768px) {

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .details-grid {
        grid-template-columns: 1fr;
    }
}
.renovation-section {
    max-width: 1100px;
    margin: 90px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.renovation-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
}

.renovation-text p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.renovation-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}
@media (max-width: 768px) {

    .renovation-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .renovation-image img {
        height: 350px;
    }
}
.project-timeline {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
}

.timeline-header {
    text-align: center;
    margin-bottom: 50px;
}

    .timeline-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .timeline-header p {
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
    }

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.timeline-card {
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
}

    .timeline-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
    }

    .timeline-card h3 {
        margin-top: 20px;
        font-size: 1.5rem;
    }

    .timeline-card p {
        padding: 0 20px;
        line-height: 1.6;
    }
@media (max-width: 768px) {

    .timeline-grid {
        grid-template-columns: 1fr;
    }
}
.featured-project {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-project-text {
    padding: 20px;
}

.section-eyebrow {
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-project-text h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.featured-project-text h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.featured-project-text p {
    line-height: 1.8;
    margin-bottom: 30px;
}

.featured-project-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.project-button {
    display: inline-block;
    padding: 13px 28px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

    .project-button:hover {
        background: #555;
    }
@media (max-width: 768px) {

    .featured-project {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 70px auto;
    }

    .featured-project-text h2 {
        font-size: 2.4rem;
    }

    .featured-project-image img {
        height: 350px;
    }
}
.before-after {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
}

.before-after-header {
    text-align: center;
    margin-bottom: 50px;
}

    .before-after-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .before-after-header p {
        max-width: 650px;
        margin: 0 auto;
        line-height: 1.7;
    }

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.before-after-card {
    text-align: center;
}

    .before-after-card img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }

    .before-after-card h3 {
        margin-top: 20px;
        font-size: 1.5rem;
    }

.before-after-button {
    text-align: center;
    margin-top: 40px;
}
@media (max-width: 768px) {

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .before-after-card img {
        height: 350px;
    }
}
.our-approach {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.approach-text h2 {
    font-size: 2.7rem;
    margin-bottom: 25px;
}

.approach-text p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-features {
    display: grid;
    gap: 20px;
}

.approach-feature {
    padding: 25px;
    border-left: 3px solid #333;
    background: #f8f8f8;
}

    .approach-feature h3 {
        margin-bottom: 10px;
    }

    .approach-feature p {
        margin: 0;
        line-height: 1.6;
    }

@media (max-width: 768px) {

    .our-approach {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 70px auto;
    }
}

/* =========================
   NAVIGATION
   ========================= */

.navbar {
    padding: 18px 30px;
}

.navbar-brand {
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.navbar-nav {
    gap: 10px;
}

    .navbar-nav .nav-link {
        padding: 8px 15px !important;
        letter-spacing: 1px;
        font-size: 0.9rem;
        transition: opacity 0.3s ease;
    }

        .navbar-nav .nav-link:hover {
            opacity: 0.6;
        }
