/* ==========================================================
   AVENMARK WEBSITE — PREMIUM VERSION
========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #F5F5F2;
    color: #2F2F2F;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    min-height: 100vh;
    line-height: 1.6;
}

/* HEADER */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(245, 245, 242, 0.92);
    border-bottom: 1px solid rgba(47, 47, 47, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
}

.logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand:hover .logo {
    transform: scale(1.05);
}

.brand h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2F2F2F;
    font-size: 28px;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: color 0.25s ease;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #C47A45;
}

/* HERO SECTION */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 32px 80px;
    text-align: center;
}

.hero-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #2F2F2F;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #999;
    text-transform: uppercase;
}

.stat-value {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #C47A45;
}

/* PROJECTS SECTION */
.projects {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px;
    border-top: 1px solid rgba(47, 47, 47, 0.06);
}

.section-heading {
    text-align: center;
    margin-bottom: 64px;
}

.section-heading h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #2F2F2F;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-heading p {
    color: #666;
    font-size: 18px;
    font-weight: 500;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(47, 47, 47, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 122, 69, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-12px);
    border-color: #C47A45;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.project-card:hover::before {
    opacity: 1;
}

.card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #C47A45;
    background: rgba(196, 122, 69, 0.08);
    padding: 6px 14px;
    border-radius: 999px;
    width: fit-content;
}

.project-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #2F2F2F;
    line-height: 1.3;
}

.project-card p {
    color: #666;
    line-height: 1.8;
    flex: 1;
    font-size: 16px;
}

.card-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #C47A45;
    transition: all 0.25s ease;
    display: inline-block;
    margin-top: 8px;
}

.project-card:hover .card-link {
    letter-spacing: 1.2px;
    transform: translateX(4px);
}

/* VISION SECTION */
.vision {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px;
    border-top: 1px solid rgba(47, 47, 47, 0.06);
}

.vision-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.vision-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #2F2F2F;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.vision-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.vision-content p:last-of-type {
    margin-bottom: 32px;
    color: #666;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #C47A45;
    text-decoration: none;
    padding: 12px 28px;
    border: 2px solid rgba(196, 122, 69, 0.3);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #C47A45;
    color: #FFFFFF;
    border-color: #C47A45;
    transform: translateY(-4px);
}

/* FOOTER */
.main-footer {
    margin-top: 0;
    padding: 60px 32px;
    border-top: 1px solid rgba(47, 47, 47, 0.08);
    background: #FFFFFF;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.weather {
    font-weight: 600;
    color: #2F2F2F;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.footer-divider {
    width: 60px;
    height: 2px;
    margin: 0 auto 20px;
    background: #C47A45;
    border-radius: 999px;
}

.footer-credit {
    color: #888;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .header-container {
        padding: 16px 24px;
    }

    .brand h1 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .header-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }

    .hero {
        padding: 70px 24px 60px;
    }

    .hero-content h2 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-stats {
        gap: 40px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .vision-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 14px 16px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    
