/* ============================================================
   GOOGLE FONTS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

/*
   IMPORTANT: Also add this inside your <head> tag in your HTML for fastest load:
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garant:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap" rel="stylesheet">

   Font guide:
   - Headings (h1, h2, h3): font-family: 'Cormorant Garant', serif;   → elegant, refined
   - Body text, nav, buttons: font-family: 'Jost', sans-serif;         → clean, modern
*/


/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Jost', serif;
    font-weight: 600;
}

img {
    display: block;
}

section {
    padding: 100px 0;
}


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.about-text h2 {
    font-family: 'Cormorant Garant', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
    opacity: 0.9;
}

.about-highlight {
    font-weight: 600;
    margin-top: 18px;
}


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


/* ============================================================
   HEADER
   ============================================================ */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile slide-out menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: #8B5E57;
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 30px;
    z-index: 1000;
    transition: left 0.3s ease;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Overlay (darkens background when menu is open) */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}

.menu-overlay.open {
    display: block;
}

   header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    background: #8B5E57;
}

.logo img {
    height: 60px;
    width: auto;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #000000;
    font-weight: 400;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

section {
    scroll-margin-top: 90px;
}





/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    overflow: hidden;

    background:
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('BACKGROUND.jpg');
    background-size: cover;
    background-position: center;
      align-items: center;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    max-width: 620px;
    line-height: 1.15;
    color: white;
    margin: 0;
}

.hero p {
    margin: 14px 0 0;
    font-size: 18px;
    color: white;
}

.hero .btn {
    margin-top: 22px;
}



/* ============================================================
   BUTTON
   ============================================================ */

.btn {
    display: inline-block;
    width: auto;
    padding: 14px 40px;
    background: white;
    color: black;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    background: transparent;
    color: white;
    outline: 2px solid white;
}


/* ============================================================
   ABOUT SECTION (Homepage)
   ============================================================ */

.about {
    padding: 100px 80px;
}

.about-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
    min-width: 0;
}

.about-image {
    flex: 1.2;
    min-width: 0;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.image-grid {
    display: flex;
    gap: 16px;
}

.image-grid img {
    width: 100%;
    max-width: none;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img.zoomed {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */

.services {
    padding: 100px 80px;
    background: #fff;
}

.services-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}

.services-header h2 {
    font-family: 'Cormorant Garant', serif;
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 14px;
}

.services-header p {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #888;
    line-height: 1.75;
    margin: 0;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-card {
    background: #faf9f8;
    border: 1px solid #ede9e6;
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #8B5E57;
    border-radius: 4px 0 0 4px;
}

.preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 94, 87, 0.1);
}

.preview-tag {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8B5E57;
    background: rgba(139, 94, 87, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.preview-card h3 {
    font-family: 'Cormorant Garant', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.2;
}

.preview-card p {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

.services-see-all {
    text-align: center;
    margin-top: 48px;
}

.btn-outline {
    display: inline-block;
    padding: 13px 40px;
    background: transparent;
    color: #8B5E57;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #8B5E57;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
    background: #8B5E57;
    color: white;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact {
    padding: 100px 80px;
    background: #8B5E57;
    color: white;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact p {
    color: #ffffff;
    line-height: 1.6;
}

.contact-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact-text {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
}

.map {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}


/* ============================================================
   ABOUT PAGE (Standalone page)
   ============================================================ */

.about-hero {
    height: 300px;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 600;
    color: #111;
}

.about-page {
    padding: 100px 80px;
    background: #ffffff;
}

.about-container {
    max-width: 700px;
    margin: auto;
}

.about-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
}

.about-intro {
    font-size: 18px;
    font-weight: 500;
    color: #111;
}

.about-highlight {
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    color: #111;
}


/* ============================================================
   SOCIAL ICONS (Fixed)
   ============================================================ */

.social-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 1000;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 0, 0);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-icons img {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.social-icons a img[alt="Instagram"] {
    width: 38px;
    height: 38px;
}


/* ============================================================
   MEDIA QUERIES — TABLET (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {
    .hero {
        min-height: 50vh;
    }

    section {
        padding: 80px 40px;
    }

    .about-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .about-text {
        max-width: 600px;
        text-align: center;
    }

    .image-grid {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .image-grid img {
        width: 30%;
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================================
   MEDIA QUERIES — MOBILE (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {

      html,
    body {
        margin: 0;
        padding: 0;
    }


    .logo img {
        height: 50px;
        width: auto;
    }

    /* Header */
    header {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
        top: -1px;
    }

    header.hidden {
    transform: translateY(-101%);
    }

   nav {
        display: flex;
        justify-content: center;
        gap: 40px;
    }

    nav a {
        margin-left: 0;  /* removes the uneven left push */
    }

    /* Hero */
    .hero {
        padding: 0 20px;
        min-height: 50vh;
    }

    .hero h2 {
        font-size: 32px;
        max-width: 100%;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        margin-top: 20px;
        padding: 14px;
        text-align: center;
    }

    /* About (homepage) */
    .about {
        padding: 60px 20px;
    }

    .about-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text {
        max-width: 500px;
        width: 100%;
        padding: 0 15px;
        margin: 0 auto;
    }

    .about-text h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .image-grid {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .image-grid img {
        width: 100%;
        max-width: none;
    }

    /* Services */
    .services {
        padding: 60px 20px;
    }

    .service-grid {
        width: 100%;
        flex-direction: column;
    }

    .card {
        width: 100%;
    }

    /* Contact */
    .contact {
        padding: 60px 20px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-map iframe {
        height: 250px;
    }

    /* About page */
    .about-hero {
        padding: 0 20px;
        height: 200px;
    }

    .about-page {
        padding: 60px 20px;
    }

    /* Social icons */
    .social-icons {
        bottom: 15px;
        right: 15px;
        z-index: 9999;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .social-icons img {
        width: 22px;
        height: 22px;
    }

    header {
        justify-content: space-between;
        align-items: center;
    }

    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }

    #main-nav {
        display: none;
    }

    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 70px;
    }
}

/* Mobile landscape fix */
@media (max-width: 1024px) and (orientation: landscape) {
    header {
        height: 72px;
        padding: 0 60px;
        flex-direction: row;
    }

    .logo img {
        height: 48px;
    }

    nav {
        display: flex;
        flex-direction: row;
        gap: 28px;
    }

    nav a {
        margin-left: 0;
    }

    .hero {
        min-height: 360px;
        padding: 40px 40px 52px;
        background-size: cover;
        background-position: center;
        overflow: visible;
    }

    .hero h2 {
        font-size: 42px;
        line-height: 1.1;
        margin: 0;
    }

    .hero p {
        font-size: 16px;
        margin: 14px 0 0;
        white-space: nowrap;
    }

    .hero .btn {
        width: auto;
        min-width: 190px;
        margin-top: 24px;
        padding: 14px 40px;
    }

    header {
        justify-content: space-between;
        align-items: center;
    }

    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }

    #main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }

    .services-preview-grid {
        grid-template-columns: 1fr;
    }
}


