/* Wellington Recommendations - NZ Special Convention 2026 */
/* Redesigned for visual impact */

:root {
    --green-dark: #1a5c0f;
    --green-mid: #2d8a1a;
    --green-light: #4cb82d;
    --teal: #4db6ac;
    --teal-light: #b2dfdb;
    --yellow: #ffc107;
    --yellow-light: #fff8e1;
    --cream: #fdfaf5;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-light: #555;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================
   HERO SECTION
   =================== */
.hero {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--yellow-light) 50%, var(--cream) 100%);
    padding: 3rem 1.5rem 4rem;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.subtitle strong {
    color: var(--green-dark);
}

.intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.email-link {
    display: inline-block;
    color: var(--green-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.contact {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1.25rem !important;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

/* Desktop hero layout */
@media (min-width: 900px) {
    .hero {
        padding: 4rem 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero-text {
        text-align: left;
    }

    .hero h1 {
        font-size: 4.5rem;
        justify-content: flex-start;
    }

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

    .subtitle {
        font-size: 1.4rem;
    }

    .intro {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-image img {
        max-width: 550px;
    }
}

/* ===================
   NAVIGATION
   =================== */
.category-nav {
    background: var(--green-dark);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-nav a {
    color: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.1);
}

.category-nav a:hover {
    background: var(--green-light);
}

/* ===================
   SECTIONS
   =================== */
.category {
    padding: 3rem 0;
}

.category.alt {
    background: var(--white);
}

.category h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category h2::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--teal) 0%, transparent 100%);
    border-radius: 2px;
}

/* ===================
   VENUE CARDS GRID
   =================== */
.venues-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .venues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================
   VENUE CARD
   =================== */
.venue-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    display: block;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.category.alt .venue-card {
    background: var(--cream);
}

.venue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--teal);
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--green-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.venue-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.venue-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.venue-location {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.travel-time {
    display: inline-block;
    background: var(--teal-light);
    color: var(--green-dark);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0.25rem;
}

.venue-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Featured card */
.venue-card.featured {
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--white) 100%);
    border-color: var(--yellow);
}

.venue-card.featured::before {
    background: linear-gradient(90deg, var(--yellow) 0%, var(--green-light) 100%);
    opacity: 1;
}

/* Highlight card (non-link) */
.venue-card.highlight {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 100%);
    border: 2px dashed var(--teal);
    cursor: default;
}

.venue-card.highlight:hover {
    transform: none;
    box-shadow: none;
}

.venue-card.highlight::before {
    display: none;
}

/* ===================
   UTILITIES
   =================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
}

/* Print */
@media print {
    .hero {
        min-height: auto;
        padding: 2rem;
    }
    .category-nav {
        display: none;
    }
    .venue-card {
        break-inside: avoid;
    }
}
