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

/* Base styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    color: #111;
    background-color: #fff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Layout helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    border-bottom: 1px solid #eaeaea;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: "Abril Fatface";
    font-size: 2rem;
    color: #0a2a1c;
}

.logo-image {
    display: none;
    height: 60px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-text {
        display: none;
    }

    .logo-image {
        display: block;
    }

    .logo {
        font-size: 0; /* prevents spacing issues */
        display: flex;
        align-items: center;
    }
}


.nav a {
    margin-left: 32px;
    font-size: 14px;
    color: #444;
}

.nav a:hover {
    color: #000;
}

/* Hamburger button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #111;
}

/* Mobile nav */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 72px;
        right: 0;
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #eaeaea;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 24px 0;
        gap: 24px;
        z-index: 10;
    }

    .nav a {
        margin: 0;
        font-size: 16px;
    }

    .nav.open {
        display: flex;
    }
}


/* Hero section */
/* Main Content Areas with Background */
.hero {
    position: relative;
    flex: 1;
    background-color: #f6f7f8;
    background-image:
        linear-gradient(transparent 50%, rgba(50, 50, 50, 0.1) 100%),
        linear-gradient(90deg, transparent 50%, rgba(50, 50, 50, 0.1) 100%);
    background-size: 160px 160px;
    display: flex;
    align-items: center;
}

/* Home Hero Two Column Layout */
.home-hero {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f6f7f8;
    background-image:
        linear-gradient(transparent 50%, rgba(50, 50, 50, 0.1) 100%),
        linear-gradient(90deg, transparent 50%, rgba(50, 50, 50, 0.1) 100%);
    background-size: 160px 160px;
}

.home-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Left image */
.home-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-left img {
    width: 75%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.mobile-image {
    display: none;
}

@media (max-width: 768px) {

    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block;
        width: 60%;
        max-width: 300px;
        height: auto;
    }

    .home-left {
        justify-content: center;
    }
}


/* Right text */
.home-right {
    flex: 1;
}

.home-right h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
}

.home-right p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .home-content {
        flex-direction: column;
        gap: 40px;
    }

    .home-right h1 {
        font-size: 36px;
    }

    .home-right p {
        font-size: 16px;
    }
}



/* Family Office Section (Plain White) */
.family-office-section {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Subtle overlay for readability */
.hero-overlay,
.section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
}

.hero-content,
.office-content,
.about-us-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero p {
    font-size: 18px;
    color: #444;
}

/* Footer */
.footer {
    border-top: 1px solid #eaeaea;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 72px;
    font-size: 14px;
    color: #666;
}

/* Family Office Section */
.family-office-section {
    padding: 100px 0;
    position: relative;
    background-color: #f6f7f8;
    background-image:
        linear-gradient(transparent 50%, rgba(50, 50, 50, 0.1) 100%),
        linear-gradient(90deg, transparent 50%, rgba(50, 50, 50, 0.1) 100%);
    background-size: 160px 160px;
}

.office-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.left-column {
    flex: 1;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

.right-column {
    flex: 1.5;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* Responsive: stack columns on narrow screens */
@media (max-width: 768px) {
    .office-content {
        flex-direction: column;
        gap: 40px;
    }

    .left-column,
    .right-column {
        flex: none;
        width: 100%;
    }

    .left-column {
        font-size: 36px;
    }

    .right-column {
        font-size: 16px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
    background-color: #f6f7f8;
    background-image:
        linear-gradient(transparent 50%, rgba(50, 50, 50, 0.1) 100%),
        linear-gradient(90deg, transparent 50%, rgba(50, 50, 50, 0.1) 100%);
    background-size: 160px 160px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    resize: vertical;
}

.contact-form button {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content h1 {
        font-size: 36px;
    }
}

/* About Us Section */
.about-us-section {
  padding: 5vh 0;
  position: relative;
  background-color: #f6f7f8;
  background-image:
    linear-gradient(transparent 50%, rgba(50, 50, 50, 0.1) 100%),
    linear-gradient(90deg, transparent 50%, rgba(50, 50, 50, 0.1) 100%);
  background-size: 160px 160px;
}

.about-us-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* About rows (mirrors contact simplicity) */
.about-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.about-row h2 {
  font-size: 24px;
  min-width: 60px;
}

.about-image {
  width: 140px;
  height: 100px;
  background-color: #f0f0f0;
  color: #777;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-row p {
  flex: 1;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-us-content h1 {
    font-size: 36px;
  }

  .about-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
