/* =========================================
   LeyMart - Base
========================================= */

:root {
    --green: #0B6E4F;
    --orange: #FF6B35;
    --cream: #FFFDF8;
    --dark: #1F2933;
    --white: #faf7f2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
}

h1,
h2,
h3 {
    font-weight: 800;
}

.tagline {
    font-weight: 700;
}

.btn-primary,
.header-link {
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}


/* =========================================
   Header
========================================= */

.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(11, 110, 79, 0.08);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 200px;
    height: auto;
    display: block;
}

.header-link {
    color: var(--green);
    font-weight: 600;
    transition: color 0.2s ease;
}

.header-link:hover {
    color: var(--orange);
}


/* =========================================
   Hero
========================================= */

.hero {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 0;
}

.hero-content {
    max-width: 850px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero h1 {
    color: var(--green);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.tagline {
    color: var(--orange);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-description {
    max-width: 650px;
    margin: 0 auto 28px;
    font-size: 1.1rem;
    color: #52606D;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-features span {
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid rgba(11, 110, 79, 0.12);
    border-radius: 999px;
    font-size: 0.95rem;
}

.btn-primary {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 8px;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.btn-primary:hover {
    background: var(--green);
    transform: translateY(-2px);
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 600px) {

    .header-inner {
        min-height: 68px;
    }

    .brand img {
        width: 145px;
    }

    .header-link {
        font-size: 0.9rem;
    }

    .hero {
        min-height: calc(100vh - 68px);
        padding: 60px 0;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-features span {
        text-align: center;
    }

    .hero-description {
        font-size: 1rem;
    }
}


/* =========================================
   Why LeyMart
========================================= */

.why-leymart {
    padding: 100px 0;
    background: var(--white);
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.section-heading h2,
.about-content h2 {
    color: var(--green);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-heading p,
.about-content p {
    color: #52606D;
    font-size: 1.05rem;
}


/* Benefits */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px 26px;
    background: var(--cream);
    border: 1px solid rgba(11, 110, 79, 0.08);
    border-radius: 16px;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.12);
    border-radius: 50%;
    font-size: 1.7rem;
}

.benefit-card h3 {
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #52606D;
    font-size: 0.95rem;
}


/* =========================================
   About LeyMart
========================================= */

.about-leymart {
    padding: 100px 0;
    background: var(--cream);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 18px;
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 768px) {

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .why-leymart,
    .about-leymart {
        padding: 70px 0;
    }
}

/* =========================================
   Contact
========================================= */

.contact-leymart {
    padding: 100px 0;
    background: var(--green);
    color: var(--white);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-leymart .section-label {
    color: var(--orange);
}

.contact-leymart h2 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    line-height: 1.2;
}

.contact-leymart p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}


/* Contact buttons */

.contact-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--white);
    color: var(--green);
    font-weight: 600;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.contact-item:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1rem;
}


/* Social links */

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.9rem;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
}


/* =========================================
   Footer
========================================= */

.site-footer {
    background: #07563E;
    color: var(--white);
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand strong {
    font-size: 1.3rem;
}

.footer-brand p {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 2px 0;
}


/* =========================================
   Contact/Footer Mobile
========================================= */

@media (max-width: 600px) {

    .contact-leymart {
        padding: 70px 0;
    }

    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
}