/* ========================================
   EVERWYN DATA HUB
   Main Stylesheet
   ======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f1e8;
    color: #3f3a32;
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
    background: #263d35;
    color: white;
    padding: 18px 30px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.main-nav {
    display: flex;
    gap: 24px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.main-nav a:hover {
    opacity: 0.75;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    margin: 0 0 15px;

    font-size: 52px;
    color: #263d35;
}

.hero p {
    margin: 0 auto;

    max-width: 650px;

    font-size: 20px;
    line-height: 1.6;
}

/* ========================================
   FEATURE CARDS
   ======================================== */

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    margin-top: 40px;
}

.feature-card {
    background: white;

    border-radius: 16px;

    padding: 30px;

    text-align: center;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-card h2 {
    margin-top: 0;

    color: #263d35;
}

.feature-card p {
    line-height: 1.6;
}

/* ========================================
   BUTTONS
   ======================================== */

.button {
    display: inline-block;

    padding: 12px 22px;

    margin-top: 15px;

    border-radius: 10px;

    background: #6b8f71;
    color: white;

    text-decoration: none;

    font-weight: bold;
}

.button:hover {
    background: #58785e;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    margin-top: 60px;

    padding: 30px;

    text-align: center;

    background: #263d35;
    color: white;
}

/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 800px) {

    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    main {
        padding: 40px 20px;
    }
}