/* -------------------------------------
   VERBENA HEMP COMPANY — BRAND THEME
--------------------------------------*/

:root {
    --navy: #0e0e2f;
    --lavender: #b69cd6;
    --sage: #5f866a;
    --stone: #f2eee8;
    --gold: #c1a054;
    --text-dark: #202022;

    /* Fluid Typography Scaling */
    --step-1: clamp(1.1rem, 1vw + 0.9rem, 1.4rem);
    --step-2: clamp(1.5rem, 1vw + 1.2rem, 2.1rem);
    --step-3: clamp(2.1rem, 2vw + 1.4rem, 2.9rem);
}

/* -------------------------------------
   RESET & BASE
--------------------------------------*/

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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.6;
}

/* Headings */

h1, h2, h3, h4 {
    font-family: 'EB Garamond', serif;
    color: var(--navy);
}

h1 { font-size: var(--step-3); }
h2 { font-size: var(--step-2); margin-bottom: 0.5rem; }
h3 { font-size: var(--step-1); margin-bottom: 0.25rem; }

/* Images always responsive */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Links */

a {
    color: inherit;
}

/* -------------------------------------
   LAYOUT
--------------------------------------*/

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section.alt {
    background: var(--stone);
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* Divider */

.divider {
    width: 140px;
    height: 4px;
    background: var(--lavender);
    margin: 20px 0 40px;
    border-radius: 20px;
}

/* -------------------------------------
   HEADER & NAV
--------------------------------------*/

.vhc-header {
    background: #ffffff;
    border-bottom: 1px solid #e7e4ef;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.logo img {
    max-height: 64px;
}

/* Main nav */

.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 24px;
    font-size: 0.95rem;
}

.main-nav a,
.dropbtn {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.main-nav a:hover,
.dropbtn:hover {
    color: var(--lavender);
}

/* Dropdown */

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    margin-top: 8px;
    background: #ffffff;
    min-width: 200px;
    border: 1px solid #ddd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 100;
}

.dropdown-content a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
}

.dropdown-content a:hover {
    background: #f6f4ff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile adjustments */

@media (max-width: 820px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        max-height: 56px;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 6px 18px;
        font-size: 0.9rem;
    }
}

/* -------------------------------------
   HERO (IMAGE INSIDE CARD)
--------------------------------------*/

.hero {
    background: linear-gradient(180deg, #faf8ff, #ffffff);
    padding: 90px 0 70px;
}

.hero-inner {
    /* hero-inner is also .container in HTML */
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background: #faf8ff;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(14,14,47,0.10);
    padding: 36px 28px 32px;
    text-align: center;
    overflow: hidden; /* keeps image inside rounded card */
}

.hero h1 {
    margin-bottom: 10px;
}

.hero-tag {
    font-family: 'Inter', sans-serif;
    color: var(--lavender);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-lead {
    max-width: 680px;
    margin: 0 auto 26px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Hero image INSIDE the card */

.hero-image {
    width: 100%;
    max-width: 960px;
    height: auto;
    margin: 18px auto 0;
    border-radius: 16px;
    display: block;
}

/* Hero responsive tweaks */

@media (max-width: 768px) {
    .hero {
        padding: 70px 0 55px;
    }

    .hero-inner {
        padding: 26px 18px 24px;
        border-radius: 18px;
        box-shadow: 0 12px 28px rgba(14,14,47,0.12);
    }

    .hero-lead {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-image {
        border-radius: 14px;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 45px;
    }

    .hero-inner {
        padding: 22px 14px 20px;
    }

    .hero h1 {
        font-size: var(--step-2);
    }

    .hero-lead {
        font-size: 0.98rem;
        line-height: 1.6;
    }
}

/* -------------------------------------
   IMPACT GRID & CARDS
--------------------------------------*/

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e9e7f2;
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 10px 24px rgba(14,14,47,0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(14,14,47,0.14);
}

/* -------------------------------------
   TIMELINE (ROADMAP)
--------------------------------------*/

.timeline {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.timeline li {
    margin-bottom: 14px;
    padding-left: 22px;
    position: relative;
}

.timeline li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--lavender);
    font-size: 1.4rem;
    line-height: 1;
}

/* PDF download area */

.roadmap-download {
    margin-top: 8px;
    font-weight: 500;
    position: relative;
    z-index: 10; /* keeps link clickable above any weird overlaps */
}

.roadmap-download a {
    color: var(--lavender);
    text-decoration: none;
    position: relative;
    z-index: 15;
}

.roadmap-download a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* -------------------------------------
   CONTACT LINKS
--------------------------------------*/

.email-link {
    color: var(--lavender);
    font-weight: 600;
}

.email-link:hover {
    color: var(--gold);
}

/* -------------------------------------
   FOOTER
--------------------------------------*/

.footer {
    text-align: center;
    padding: 60px 0;
    background: var(--navy);
    color: #ffffff;
    margin-top: 80px;
}

.footer a {
    color: var(--lavender);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin: 15px 0;
    font-size: 0.95rem;
}

.footer-links span {
    margin: 0 10px;
    color: #7775a3;
}

.copy {
    font-size: 0.85rem;
    color: #b7b4d6;
}

.footer-tag {
    color: var(--gold);
    font-style: italic;
    margin-top: 6px;
}
