@font-face {
    font-family: 'BiroScriptPlus';
    src: url('../fonts/BiroScriptPlus.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --mameh-font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --mameh-font-script: 'BiroScriptPlus', 'Caveat', cursive;
    --mameh-green: #234e32;
    --mameh-gold: #b59669;
    --mameh-text: #1a1a1a;
    --mameh-text-muted: #4b4545;
    --mameh-bg: #ffffff;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--mameh-font-primary);
    color: var(--mameh-text);
    background-color: var(--mameh-bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sticky Navigation */
.mameh-navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mameh-navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 30px;
    position: relative;
}

.mameh-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mameh-nav-links li a {
    font-family: var(--mameh-font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.2s ease;
    letter-spacing: 0.2px;
}

.mameh-nav-links li a:hover {
    color: var(--mameh-green);
}

.mameh-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #000000;
    opacity: 0;
    transform: scaleX(0.4);
    transition: all 0.25s ease;
}

.mameh-nav-links li a.active::after,
.mameh-nav-links li a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.mameh-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #000;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 20px;
}

@media (max-width: 768px) {
    .mameh-mobile-toggle {
        display: block;
    }
    .mameh-navbar {
        justify-content: space-between;
        padding: 16px 20px;
    }
    .mameh-nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        gap: 20px;
    }
    .mameh-nav-links.open {
        display: flex;
    }
}

/* Sections */
.mameh-section {
    padding: 90px 24px;
    max-width: 1140px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Hero Section */
.mameh-hero-section {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 110px;
    box-sizing: border-box;
}

.mameh-hero-logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.mameh-tagline {
    font-family: var(--mameh-font-script);
    font-size: 26px;
    line-height: 1.6;
    color: #000000;
    max-width: 620px;
    margin: 0 auto 35px auto;
    font-weight: 400;
}

.mameh-location {
    font-family: var(--mameh-font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 14px;
}

.mameh-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.mameh-socials a {
    color: var(--mameh-green);
    font-size: 18px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mameh-socials a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Typography */
.mameh-heading {
    font-family: var(--mameh-font-primary);
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    margin: 0 0 16px 0;
    letter-spacing: -0.2px;
}

.mameh-heading.center {
    text-align: center;
}

/* About Section */
.mameh-about-row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.mameh-about-col-text {
    flex: 6;
}

.mameh-about-col-logo {
    flex: 4;
    text-align: center;
}

.mameh-about-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.mameh-text {
    font-family: var(--mameh-font-primary);
    font-size: 14px;
    line-height: 1.65;
    color: #000000;
    margin-bottom: 18px;
}

.mameh-purpose-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
    color: #000000;
}

.mameh-photos-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mameh-photo-rounded {
    border-radius: 6px;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.mameh-photo-rounded:hover {
    transform: translateY(-4px);
}

/* Farm Section */
.mameh-farm-container {
    max-width: 860px;
    margin: 0 auto;
}

.mameh-photos-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 45px;
}

.mameh-photos-2col img {
    height: 380px;
    width: 100%;
    object-fit: cover;
}

.mameh-mission-list {
    font-size: 14px;
    color: #000000;
    line-height: 2.1;
    padding-left: 20px;
    margin: 0;
}

/* Produce Section */
.mameh-principles-text {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
    font-size: 14px;
    line-height: 2.1;
    color: #000000;
}

.mameh-principles-text p {
    margin: 4px 0;
}

.mameh-produce-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.mameh-produce-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mameh-produce-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.mameh-produce-item span {
    font-family: var(--mameh-font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

/* Services & Values */
.mameh-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    max-width: 950px;
    margin: 40px auto 0 auto;
}

.mameh-value-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.mameh-value-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.mameh-value-content h4 {
    font-family: var(--mameh-font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--mameh-green);
    margin: 0 0 8px 0;
}

.mameh-value-content p {
    font-family: var(--mameh-font-primary);
    font-weight: 400;
    font-size: 11px;
    line-height: 1.6;
    color: var(--mameh-text-muted);
    margin: 0;
}

.mameh-services-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 0 auto;
    text-align: center;
    max-width: 600px;
}

.mameh-services-list li {
    font-family: var(--mameh-font-primary);
    font-size: 14px;
    color: #000000;
    margin: 8px 0;
    line-height: 1.6;
}

/* Contact Details */
.mameh-contact-box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.mameh-contact-box p {
    font-family: var(--mameh-font-primary);
    font-size: 14px;
    color: var(--mameh-text-muted);
    margin: 12px 0;
    line-height: 1.6;
}

.mameh-contact-box p.farm-name {
    color: #000000;
    font-weight: 600;
}

.mameh-contact-form {
    max-width: 480px;
    margin: 35px auto 0 auto;
    text-align: left;
}

.mameh-contact-form .form-group {
    margin-bottom: 16px;
}

.mameh-contact-form input,
.mameh-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--mameh-font-primary);
    font-size: 13px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
}

.mameh-contact-form input:focus,
.mameh-contact-form textarea:focus {
    border-color: var(--mameh-green);
}

.mameh-contact-form button {
    background: var(--mameh-green);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-family: var(--mameh-font-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease;
}

.mameh-contact-form button:hover {
    background: #193824;
}

.mameh-footer {
    text-align: center;
    border-top: 1px solid #f0f0f0;
    padding: 35px 20px;
    font-size: 13px;
    color: #888;
}

/* Responsive */
@media (max-width: 900px) {
    .mameh-about-row {
        flex-direction: column;
        text-align: center;
    }
    .mameh-photos-3col,
    .mameh-photos-2col,
    .mameh-produce-grid,
    .mameh-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mameh-photos-3col,
    .mameh-photos-2col,
    .mameh-produce-grid,
    .mameh-values-grid {
        grid-template-columns: 1fr;
    }
    .mameh-tagline {
        font-size: 21px;
    }
}
