/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #242020;
    background: #fff;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}


/* =========================
   COLORS
========================= */

:root {
    --burgundy: #861f35;
    --dark-burgundy: #651426;
    --cream: #f7f2eb;
    --dark: #1b1b1b;
    --gray: #777;
    --white: #fff;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255,255,255,.97);

    border-bottom: 1px solid #eee;

    transition: .3s;
}

.header.scrolled {
    box-shadow: 0 5px 25px rgba(0,0,0,.1);
}

.nav-container {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

/* .logo {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo span {
    font-family: Georgia, serif;

    font-size: 29px;

    font-weight: bold;

    letter-spacing: 3px;

    color: var(--burgundy);
}

.logo small {
    font-size: 9px;

    letter-spacing: 6px;

    color: #444;

    margin-top: 5px;
} */
 .logo img {
    width: 180px;
    height: 55px;
    object-fit: contain;
    object-position: left center;
}


/* NAV */


.navbar {
    display: flex;

    align-items: center;

    gap: 24px;
}

.navbar > a,
.dropdown > a {
    font-size: 12px;

    font-weight: 600;

    position: relative;
}

.navbar > a:hover,
.dropdown > a:hover,
.navbar .active {
    color: var(--burgundy);
}


/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;

    top: 25px;

    left: -15px;

    width: 220px;

    background: white;

    padding: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,.12);

    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;

    padding: 9px;

    font-size: 12px;
}

.dropdown-menu a:hover {
    color: var(--burgundy);

    background: var(--cream);
}


/* QUOTE */

.quote-btn {
    background: var(--burgundy);

    color: white !important;

    padding: 11px 18px;

    transition: .3s;
}

.quote-btn:hover {
    background: var(--dark-burgundy);
}


/* MOBILE */

.menu-toggle {
    display: none;

    border: none;

    background: none;

    font-size: 27px;

    color: var(--burgundy);

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    height: 100vh;

    min-height: 650px;

    position: relative;

    display: flex;

    align-items: center;

    background:
        url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=2000&q=85")
        center/cover;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20,20,20,.85),
            rgba(20,20,20,.45),
            rgba(20,20,20,.15)
        );
}

.hero-content {
    position: relative;

    color: white;

    padding-top: 80px;
}

.eyebrow {
    font-size: 11px;

    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.eyebrow.dark {
    color: var(--burgundy);
}

.hero h1 {
    font-family: Georgia, serif;

    font-size: clamp(45px,7vw,80px);

    line-height: 1.05;
}

.hero h1 span,
h1 span,
h2 span {
    color: var(--burgundy);
}

.hero h1 span {
    color: #f9f7f7;
}

.hero-text {
    max-width: 600px;

    margin: 25px 0 35px;

    color: #eee;
}


/* =========================
   BUTTONS
========================= */

.buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 24px;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1px;

    transition: .3s;
}

.btn.primary {
    background: var(--burgundy);

    color: white;
}

.btn.primary:hover {
    background: var(--dark-burgundy);

    transform: translateY(-3px);
}

.btn.outline {
    border: 1px solid white;

    color: white;
}

.btn.outline:hover {
    background: white;

    color: var(--dark);
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.cream {
    background: var(--cream);
}

.two-column {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.image-box img {
    height: 560px;

    object-fit: cover;
}

.content h2,
.section-heading h2 {
    font-family: Georgia, serif;

    font-size: clamp(38px,5vw,58px);

    line-height: 1.1;

    margin-bottom: 25px;
}

.content p {
    color: var(--gray);

    font-size: 14px;

    margin-bottom: 18px;
}

.text-link {
    color: var(--burgundy);

    font-size: 12px;

    font-weight: bold;
}

.section-heading {
    text-align: center;

    max-width: 650px;

    margin: auto auto 55px;
}

.section-heading > p:last-child {
    color: var(--gray);
}


/* =========================
   CARDS
========================= */

.cards-3 {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 25px;
}

.design-card {
    background: white;

    border: 1px solid #eee;

    overflow: hidden;

    transition: .4s;
}

.design-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.design-card img {
    height: 300px;

    object-fit: cover;

    transition: .5s;
}

.design-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-family: Georgia, serif;

    font-size: 24px;

    margin-bottom: 10px;
}

.card-content p {
    color: var(--gray);

    font-size: 13px;

    margin-bottom: 15px;
}

.card-content a {
    color: var(--burgundy);

    font-size: 12px;

    font-weight: bold;
}

.center-button {
    text-align: center;

    margin-top: 40px;
}


/* =========================
   FEATURES
========================= */

.features-4 {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;
}

.feature {
    text-align: center;

    padding: 30px 20px;

    background: white;
}

.feature-icon {
    width: 55px;
    height: 55px;

    margin: auto auto 20px;

    background: var(--burgundy);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;
}

.feature h3 {
    font-family: Georgia, serif;

    margin-bottom: 10px;
}

.feature p {
    color: var(--gray);

    font-size: 12px;
}


/* =========================
   CTA
========================= */

.cta {
    padding: 110px 0;

    text-align: center;

    color: white;

    background:
        linear-gradient(
            rgba(90,15,30,.82),
            rgba(90,15,30,.82)
        ),
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2000&q=80")
        center/cover;
}

.cta h2 {
    font-family: Georgia, serif;

    font-size: clamp(38px,5vw,60px);

    line-height: 1.1;

    margin-bottom: 15px;
}

.cta h2 span {
    color: #efeced;
}

.cta p {
    margin-bottom: 25px;
}


/* =========================
   PAGE HERO
========================= */

.page-hero {
    padding: 170px 0 90px;

    background: var(--cream);

    text-align: center;
}

.page-hero h1 {
    font-family: Georgia, serif;

    font-size: clamp(45px,6vw,70px);

    line-height: 1.1;

    margin-bottom: 15px;
}

.page-hero p:last-child {
    color: var(--gray);
}


/* =========================
   INFO CARDS
========================= */

.info-card {
    background: white;

    padding: 40px;

    border-top: 3px solid var(--burgundy);
}

.info-card h3 {
    font-family: Georgia, serif;

    font-size: 25px;

    margin-bottom: 15px;
}

.info-card p {
    color: var(--gray);

    font-size: 13px;
}


/* =========================
   DARK SECTION
========================= */

.dark-section {
    padding: 100px 0;

    background: var(--dark);

    color: white;
}

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

.center-content h2 {
    font-family: Georgia, serif;

    font-size: clamp(35px,5vw,55px);

    margin-bottom: 20px;
}

.center-content p {
    margin-bottom: 25px;

    color: #bbb;
}


/* =========================
   SERVICES
========================= */

.service-detail {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    margin-bottom: 100px;
}

.service-detail.reverse img {
    order: 2;
}

.service-detail img {
    height: 450px;

    object-fit: cover;
}

.service-detail h2 {
    font-family: Georgia, serif;

    font-size: 48px;

    margin-bottom: 20px;
}

.service-detail p {
    color: var(--gray);

    font-size: 14px;
}

.service-detail ul {
    margin-top: 20px;

    padding-left: 20px;

    color: #555;

    font-size: 13px;
}


/* =========================
   PROJECTS
========================= */

.filter-buttons {
    display: flex;

    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 45px;
}

.filter {
    border: 1px solid #ddd;

    background: white;

    padding: 10px 20px;

    cursor: pointer;

    font-size: 12px;
}

.filter.active,
.filter:hover {
    background: var(--burgundy);

    color: white;

    border-color: var(--burgundy);
}

.project-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 25px;
}

.project-card {
    border: 1px solid #eee;

    background: white;

    overflow: hidden;

    transition: .3s;
}

.project-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 30px rgba(0,0,0,.1);
}

.project-card img {
    height: 300px;

    object-fit: cover;
}

.project-card div {
    padding: 20px;
}

.project-card h3 {
    font-family: Georgia, serif;

    margin-bottom: 5px;
}

.project-card p {
    color: var(--gray);

    font-size: 12px;
}


/* =========================
   GALLERY
========================= */

.gallery-grid {
    columns: 3 300px;

    column-gap: 20px;
}

.gallery-image {
    width: 100%;

    margin-bottom: 20px;

    cursor: pointer;

    break-inside: avoid;

    transition: .3s;
}

.gallery-image:hover {
    transform: scale(.98);
}


/* LIGHTBOX */

.lightbox {
    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.9);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 2000;

    padding: 30px;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;

    max-height: 85vh;

    width: auto;
}

.close-lightbox {
    position: absolute;

    top: 20px;

    right: 35px;

    color: white;

    font-size: 45px;

    cursor: pointer;
}


/* =========================
   PROCESS
========================= */

.process-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 25px;
}

.process-card {
    background: white;

    padding: 35px;

    border-top: 3px solid var(--burgundy);

    position: relative;
}

.process-card span {
    color: var(--burgundy);

    font-size: 30px;

    font-weight: bold;
}

.process-card h3 {
    font-family: Georgia, serif;

    font-size: 25px;

    margin: 10px 0;
}

.process-card p {
    color: var(--gray);

    font-size: 13px;
}


/* =========================
   TESTIMONIALS
========================= */

.testimonials-grid {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 25px;
}

.testimonial {
    padding: 35px;

    background: var(--cream);

    border-left: 4px solid var(--burgundy);
}

.stars {
    color: var(--burgundy);

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.testimonial p {
    color: #555;

    font-size: 14px;

    margin-bottom: 20px;
}

.testimonial h3 {
    font-family: Georgia, serif;

    font-size: 17px;
}

.testimonial span {
    color: var(--gray);

    font-size: 11px;
} 


/* =========================
   CONTACT
========================= */

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;
}

.contact-info h2 {
    font-family: Georgia, serif;

    font-size: 50px;

    line-height: 1.1;

    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray);

    font-size: 14px;
}

.contact-item {
    display: flex;

    gap: 15px;

    align-items: center;

    margin-top: 25px;
}

.contact-icon {
    width: 45px;
    height: 45px;

    background: var(--burgundy);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;
}

.contact-item h3 {
    font-size: 14px;
}

.contact-item p,
.contact-item a {
    color: var(--gray);

    font-size: 13px;
}

.whatsapp-btn {
    display: inline-block;

    margin-top: 30px;

    padding: 13px 22px;

    background: #218c54;

    color: white;

    font-size: 12px;

    font-weight: bold;
}


/* FORM */

.contact-form {
    background: var(--cream);

    padding: 35px;
}

.contact-form h3 {
    font-family: Georgia, serif;

    font-size: 28px;

    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;

    font-size: 11px;

    font-weight: bold;

    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid #ddd;

    background: white;

    font-family: inherit;

    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
}

.form-message {
    margin-top: 15px;

    color: var(--burgundy);

    font-size: 12px;
}


/* MAP */

.map-section iframe {
    width: 100%;

    height: 400px;

    border: 0;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #181818;

    color: white;

    padding-top: 60px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.5fr;

    gap: 40px;

    padding-bottom: 50px;
}

.footer-logo {
    color: #d18b98;

    font-family: Georgia, serif;

    font-size: 34px;

    letter-spacing: 4px;
}

.footer-logo-sub {
    letter-spacing: 5px;

    font-size: 10px;
}

.footer-about {
    color: #999;

    font-size: 12px;

    max-width: 300px;

    margin-top: 15px;
}

.footer h3 {
    font-family: Georgia, serif;

    margin-bottom: 15px;
}

.footer a,
.footer p {
    display: block;

    color: #999;

    font-size: 12px;

    margin-bottom: 8px;
}

.footer a:hover {
    color: #d18b98;
}

.copyright {
    border-top: 1px solid #333;

    padding: 20px;

    text-align: center;

    color: #777;

    font-size: 11px;
}


/* =========================
   REVEAL
========================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition: .8s;
}

.reveal.show {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px) {

    .navbar {
        position: absolute;

        top: 82px;

        left: 0;

        width: 100%;

        background: white;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        padding: 25px;

        gap: 18px;

        box-shadow: 0 10px 30px rgba(0,0,0,.1);
    }

    .navbar.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;

        box-shadow: none;

        width: 100%;

        padding-left: 10px;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .two-column,
    .service-detail,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail.reverse img {
        order: 0;
    }

    .cards-3,
    .project-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .features-4 {
        grid-template-columns: repeat(2,1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media(max-width:600px) {

    .nav-container {
        height: 75px;
    }

    .navbar {
        top: 75px;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-text {
        font-size: 13px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }

    .image-box img {
        height: 400px;
    }

    .cards-3,
    .features-4,
    .project-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-detail h2,
    .contact-info h2 {
        font-size: 40px;
    }

    .service-detail img {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 140px 0 70px;
    }

}
