/* Global Styles */
:root {
    --primary-color: #2d5a3d;
    /* Alpine Forest Green */
    --gold-accent: #c9a227;
    --dark-bg: #1a1a1a;
    --light-text: #f4f4f4;
    --text-grey: #666;
    --section-bg-light: #fff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Typography Helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

/* Section Styles */
.section {
    padding: 80px 0;
    background-color: var(--section-bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-accent);
    margin: 10px auto 0;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

header.scrolled .logo {
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

header.scrolled nav a {
    color: #333;
}

nav a:hover {
    color: var(--gold-accent);
}

/* Register Button in Nav */
.btn-register {
    border: 1px solid #fff;
    padding: 8px 18px;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-register:hover {
    background: #fff;
    color: #000 !important;
}

header.scrolled .btn-register {
    border-color: #333;
    color: #333;
}

header.scrolled .btn-register:hover {
    background: #333;
    color: #fff !important;
}

.nav-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

header.scrolled .nav-separator {
    color: #ccc;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

/* Slideshow Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slide-prev {
    left: 20px;
}

.slide-next {
    right: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--gold-accent);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--gold-accent);
    color: #000;
}

/* About Section */
.about-section {
    background-color: #fff;
}

.separator-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.separator-title::before,
.separator-title::after {
    content: "";
    height: 1px;
    width: 60px;
    background-color: #ccc;
    display: block;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.description-text {
    font-size: 1rem;
    color: var(--text-grey);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background 0.3s;
    border: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* Impact/Stats Section */
.impact-section {
    background-color: #f9f9f9;
    text-align: center;
}

.section-subtitle {
    margin-bottom: 50px;
    color: var(--text-grey);
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

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

/* Services Grid Section */
.services-section {
    background-color: #fff;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-details {
    padding: 25px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    text-decoration: none;
    color: var(--text-grey);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--primary-color);
}


/* Footer */
footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
}

.footer-col h4 {
    color: var(--gold-accent);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: #bbb;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.copyright {
    color: #666;
    font-size: 0.8rem;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    nav ul {
        display: none;
    }
}