﻿/* ================================
   GLOBAL RESET
================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ================================
   ROOT VARIABLES
================================ */
:root {
    --pad: clamp(1.5rem, 5svw, 6rem);
    --green: #0b5f4b;
    --green-dark: #073e32;
    --navy: #0b2a3d;
    --bg: #f4f7f6;
    --card: #ffffff;
    --line: rgba(11,95,75,.25);
}

/* ================================
   LV ABOUT HERO
================================ */
.lvabout {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: var(--pad);
    background: linear-gradient( to right, rgba(0,0,0,.18), rgba(0,0,0,.08) ), url("../images/header/hole5_rainbow.jpg") center / cover no-repeat;
    filter: saturate(1.12) contrast(1.08) brightness(1.02);
    overflow: hidden;
}
    .lvabout::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(0,0,0,.28), rgba(0,0,0,.14) );
        z-index: 0;
    }

/* ================================
   GLASS CARD
================================ */
.lvabout-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    background: rgba(255,255,255,.42);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 26px;
    padding: 3rem 3.2rem;
    box-shadow: 0 25px 60px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.18), 0 0 60px 15px rgba(42,89,52,.15);
}

    /* soft highlight retained */
    .lvabout-content::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at 80% 40%, rgba(255,210,140,.22), transparent 60% );
        border-radius: 26px;
        pointer-events: none;
    }

/* text clarity boost */
.lvabout h1,
.lvabout p {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.lvabout-content > * {
    position: relative;
    z-index: 1;
}


/* ================================
   BADGE
================================ */
.lvabout .badge {
    display: inline-block;
    padding: .4rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.25);
    border: 1px solid rgba(255,255,255,.35);
    text-transform: uppercase;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 1px;
    color: #1c3b5a;
}

/* ================================
   TITLE
================================ */
.lvabout h1 {
    margin: .6rem 0;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    line-height: 1.15;
    background: linear-gradient(120deg, #2a5934, #1c3b5a, #2a5934);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 6px rgba(0,0,0,.25);
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0%,100% {
        background-position: 200% 0;
    }

    50% {
        background-position: -200% 0;
    }
}

/* ================================
   TEXT
================================ */
.lvabout-intro {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.98);
}

.lvabout p {
    text-shadow: 0 1px 5px rgba(0,0,0,.2);
}

/* ================================
   STORY SECTION
================================ */
.story {
    max-width: 1000px;
    margin: 5rem auto;
    padding-inline: var(--pad);
    text-align: center;
}

    .story h2 {
        font-size: 2.4rem;
        color: var(--navy);
        margin-bottom: 1.5rem;
    }

    .story p {
        max-width: 70ch;
        margin: 0 auto 1.2rem;
        font-size: 1.05rem;
        line-height: 1.8;
        color: #334155;
    }

/* ================================
   FACT STRIP
================================ */
.facts {
    background: linear-gradient(180deg, #f4f7f6, #eef3f2);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 3rem var(--pad);
    text-align: center;
}

.fact {
    position: relative;
    background: linear-gradient(180deg, #fff, #f8fbfa);
    border-radius: 1.5rem;
    padding: 2.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(11,95,75,.12);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .fact::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 4px;
        background: linear-gradient(90deg, #1ea98c, var(--green));
        border-radius: 1.5rem 1.5rem 0 0;
    }

    .fact strong {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--green);
        margin-bottom: .6rem;
    }

    .fact span {
        font-size: .95rem;
        color: #334e48;
    }

/* ================================
   HOVER (DESKTOP)
================================ */
@media (hover:hover) {
    .fact:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(11,95,75,.18);
    }
}

/* ================================
   RESPONSIVE
================================ */

/* TABLET */
@media (max-width: 1024px) {
    .facts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .lvabout-content {
        padding: 2rem 1.5rem;
    }

    .lvabout h1 {
        font-size: 1.35rem;
    }

    .lvabout-intro {
        font-size: .95rem;
        line-height: 1.6;
    }

    .lvabout .badge {
        font-size: .65rem;
        padding: .25rem .55rem;
    }

    .facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .85rem;
        padding: 2rem var(--pad);
    }

    .fact {
        padding: 1.75rem 1.25rem;
    }

        .fact strong {
            font-size: 1.35rem;
        }

        .fact span {
            font-size: .85rem;
        }
}

/* SMALL PHONES */
@media (max-width: 380px) {
    .lvabout h1 {
        font-size: 1.25rem;
    }

    .fact strong {
        font-size: 1.25rem;
    }
}
