/* Green Nature Theme - Valley Radio Club */

:root {
    --primary-green: #059669;
    --primary-green-dark: #047857;
    --primary-green-light: #10b981;
    --secondary-green: #34d399;
    --accent-orange: #f59e0b;
    --accent-orange-light: #fbbf24;
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --earth-brown: #92400e;
    --earth-brown-light: #d97706;
    --sky-blue: #0ea5e9;
    --sky-blue-light: #38bdf8;
    --white: #ffffff;
    --off-white: #fefefe;
    --light-green: #ecfdf5;
    --medium-green: #d1fae5;
    --dark-green: #064e3b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #d1d5db;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 4px 14px 0 rgba(5, 150, 105, 0.15);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Nature Background */
.nature-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--sky-blue) 0%, var(--sky-blue-light) 50%, var(--light-green) 100%);
    z-index: -2;
}

.mountain-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--primary-green-dark) 100%);
    clip-path: polygon(0% 100%, 25% 60%, 50% 80%, 75% 40%, 100% 70%, 100% 100%);
}

.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    animation: cloudFloat 20s infinite linear;
}

.cloud-1 {
    width: 80px;
    height: 40px;
    top: 20%;
    left: -100px;
    animation-delay: 0s;
}

.cloud-2 {
    width: 120px;
    height: 60px;
    top: 15%;
    left: -150px;
    animation-delay: -7s;
}

.cloud-3 {
    width: 100px;
    height: 50px;
    top: 25%;
    left: -120px;
    animation-delay: -14s;
}

@keyframes cloudFloat {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-green);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2.5rem;
    animation: radioPulse 2s ease-in-out infinite;
}

@keyframes radioPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.callsign {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    position: relative;
}

.hero-content {
    padding: 2rem;
    z-index: 1;
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Outdoor Setup Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.outdoor-setup {
    position: relative;
    width: 400px;
    height: 300px;
    background: linear-gradient(180deg, var(--sky-blue-light) 0%, var(--light-green) 100%);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.mountain-peak {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 80px;
    height: 60px;
    background: var(--primary-green-dark);
    border-radius: 50% 50% 0 0;
    transform: rotate(-15deg);
}

.peak-antenna {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.antenna-mast {
    width: 4px;
    height: 30px;
    background: var(--earth-brown);
    margin: 0 auto;
}

.antenna-element {
    width: 20px;
    height: 3px;
    background: var(--accent-orange);
    position: absolute;
    top: -3px;
    left: -8px;
    border-radius: 2px;
}

.radio-equipment {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.radio-unit {
    width: 100px;
    height: 60px;
    background: var(--text-dark);
    border-radius: 0.5rem;
    position: relative;
    box-shadow: var(--shadow);
}

.unit-display {
    width: 70px;
    height: 15px;
    background: var(--accent-orange);
    border-radius: 0.25rem;
    position: absolute;
    top: 10px;
    left: 15px;
}

.unit-controls {
    position: absolute;
    bottom: 10px;
    left: 15px;
    display: flex;
    gap: 0.5rem;
}

.control-knob {
    width: 10px;
    height: 10px;
    background: var(--primary-green);
    border-radius: 50%;
    border: 2px solid var(--white);
}

.nature-elements {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
}

.tree {
    position: absolute;
    bottom: 0;
}

.tree-1 {
    left: 20px;
    width: 20px;
    height: 30px;
    background: var(--primary-green);
    border-radius: 50% 50% 0 0;
}

.tree-2 {
    left: 60px;
    width: 15px;
    height: 25px;
    background: var(--primary-green-dark);
    border-radius: 50% 50% 0 0;
}

.tree-3 {
    right: 30px;
    width: 18px;
    height: 28px;
    background: var(--primary-green);
    border-radius: 50% 50% 0 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.activity-item {
    background: var(--light-green);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid var(--medium-green);
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.activity-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.activity-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.activity-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg, var(--sky-blue-light) 0%, var(--light-green) 100%);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.mountain-scene {
    position: relative;
    width: 100%;
    height: 100%;
}

.mountain-range {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
}

.mountain {
    position: absolute;
    bottom: 0;
    background: var(--primary-green-dark);
    border-radius: 50% 50% 0 0;
}

.mountain-1 {
    left: 0;
    width: 60px;
    height: 100px;
}

.mountain-2 {
    left: 50px;
    width: 80px;
    height: 120px;
}

.mountain-3 {
    right: 0;
    width: 70px;
    height: 90px;
}

.forest-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
}

.tree-line {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100%;
}

.tree-small {
    width: 12px;
    height: 25px;
    background: var(--primary-green);
    border-radius: 50% 50% 0 0;
}

/* Activities Section */
.activities {
    padding: 6rem 0;
    background: var(--light-green);
}

.activities-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.activities-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-green), var(--secondary-green));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 5rem;
    display: flex;
    gap: 2rem;
}

.timeline-date {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    min-width: 80px;
    height: fit-content;
    box-shadow: var(--shadow);
}

.timeline-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    flex: 1;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.activity-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.activity-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-green);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
}

.detail-icon {
    font-size: 1.1rem;
}

.detail-text {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.activity-link:hover {
    color: var(--primary-green-dark);
}

/* Equipment Section */
.equipment {
    padding: 6rem 0;
    background: var(--white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.equipment-card {
    background: var(--light-green);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 2px solid var(--medium-green);
    transition: all 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.equipment-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.equipment-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.equipment-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.equipment-features {
    list-style: none;
    text-align: left;
}

.equipment-features li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.equipment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Membership Section */
.membership {
    padding: 6rem 0;
    background: var(--light-green);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.membership-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.membership-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
}

.card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-price {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.card-price span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}

.card-content {
    padding: 2.5rem 2rem;
}

.membership-features {
    list-style: none;
    margin-bottom: 2rem;
}

.membership-features li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.membership-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-brand h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--secondary-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-description {
    color: var(--medium-green);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--medium-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-green);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1.1rem;
}

.contact-text {
    color: var(--medium-green);
}

.repeater-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.repeater-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.repeater-freq {
    color: var(--secondary-green);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.repeater-details {
    color: var(--medium-green);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--primary-green-dark);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--medium-green);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--medium-green);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        padding-left: 0;
    }
    
    .timeline-date {
        align-self: flex-start;
    }
    
    .activities-timeline::before {
        display: none;
    }
    
    .equipment-grid,
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
