/* Organic Green Theme - Valley Radio Club */

:root {
    --forest-green: #2d5016;
    --forest-green-light: #4ade80;
    --moss-green: #65a30d;
    --sage-green: #84cc16;
    --earth-brown: #92400e;
    --earth-brown-light: #d97706;
    --sky-blue: #0ea5e9;
    --sky-blue-light: #38bdf8;
    --cloud-white: #f8fafc;
    --bark-brown: #451a03;
    --leaf-green: #16a34a;
    --flower-pink: #ec4899;
    --flower-yellow: #eab308;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --organic-shadow: 0 8px 25px rgba(45, 80, 22, 0.15);
}

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

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--cloud-white) 0%, #e0f2fe 50%, #dcfce7 100%);
    overflow-x: hidden;
    position: relative;
}

/* Floating Leaves */
.floating-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--leaf-green);
    border-radius: 0 100% 0 100%;
    opacity: 0.6;
    animation: leafFloat 15s infinite linear;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.leaf-2 {
    top: 40%;
    right: 15%;
    animation-delay: 3s;
    transform: rotate(-30deg);
    background: var(--flower-yellow);
}

.leaf-3 {
    top: 60%;
    left: 20%;
    animation-delay: 6s;
    transform: rotate(60deg);
    background: var(--flower-pink);
}

.leaf-4 {
    top: 80%;
    right: 25%;
    animation-delay: 9s;
    transform: rotate(-45deg);
}

.leaf-5 {
    top: 30%;
    left: 50%;
    animation-delay: 12s;
    transform: rotate(30deg);
    background: var(--sage-green);
}

@keyframes leafFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Organic Container */
.organic-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-orb {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-green), var(--moss-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--organic-shadow);
    animation: orbPulse 3s ease-in-out infinite;
}

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

.nav-links {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.nav-link {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--forest-green);
    color: white;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    padding: 2rem;
}

/* Hero Circle Section */
.hero-circle {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.circle-content {
    text-align: center;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-word {
    display: block;
    background: linear-gradient(135deg, var(--forest-green), var(--moss-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordFloat 3s ease-in-out infinite;
}

.title-word:nth-child(1) { animation-delay: 0s; }
.title-word:nth-child(2) { animation-delay: 0.5s; }
.title-word:nth-child(3) { animation-delay: 1s; }

@keyframes wordFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--moss-green);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.floating-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: var(--organic-shadow);
    backdrop-filter: blur(10px);
    animation: bubbleFloat 4s ease-in-out infinite;
}

.stat-bubble:nth-child(1) { animation-delay: 0s; }
.stat-bubble:nth-child(2) { animation-delay: 1s; }
.stat-bubble:nth-child(3) { animation-delay: 2s; }

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-green);
    font-family: 'Fredoka', sans-serif;
}

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

/* Nature Elements */
.nature-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.tree {
    position: absolute;
    background: var(--forest-green);
    border-radius: 50% 50% 0 0;
    animation: treeSway 6s ease-in-out infinite;
}

.tree-1 {
    width: 80px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tree-2 {
    width: 60px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: var(--moss-green);
}

@keyframes treeSway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

.mountain {
    position: absolute;
    background: var(--earth-brown);
    border-radius: 50% 50% 0 0;
    opacity: 0.7;
}

.mountain-1 {
    width: 120px;
    height: 80px;
    bottom: 20%;
    left: 5%;
    animation: mountainGlow 8s ease-in-out infinite;
}

.mountain-2 {
    width: 100px;
    height: 60px;
    bottom: 15%;
    right: 10%;
    background: var(--earth-brown-light);
    animation: mountainGlow 8s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes mountainGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.9; }
}

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

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

.cloud-2 {
    width: 80px;
    height: 30px;
    top: 25%;
    right: 20%;
    animation-delay: 10s;
}

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

/* Flowing Section */
.flowing-section {
    margin-bottom: 6rem;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.title-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--moss-green));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--leaf-green);
    border-radius: 50%;
    transform: translateY(-50%);
}

.title-decoration::before {
    left: -30px;
}

.title-decoration::after {
    right: -30px;
}

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

.flow-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--organic-shadow);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--moss-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.flow-card:hover::before {
    transform: scaleX(1);
}

.flow-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.2);
}

.card-1 { transform: rotate(-2deg); }
.card-2 { transform: rotate(1deg); }
.card-3 { transform: rotate(-1deg); }

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.flow-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.flow-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Spiral Section */
.spiral-section {
    margin-bottom: 6rem;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spiral-center {
    text-align: center;
    z-index: 2;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--organic-shadow);
}

.spiral-center h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.spiral-center p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.spiral-items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.spiral-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--organic-shadow);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 250px;
}

.spiral-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(45, 80, 22, 0.2);
}

.item-1 {
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.item-2 {
    top: 60%;
    right: 15%;
    transform: rotate(20deg);
}

.item-3 {
    bottom: 20%;
    left: 20%;
    transform: rotate(-10deg);
}

.item-date {
    background: var(--forest-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    display: inline-block;
}

.month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
}

.day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.item-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.item-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.item-tag {
    background: var(--moss-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Organic Section */
.organic-section {
    margin-bottom: 6rem;
    position: relative;
}

.organic-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.organic-title h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.title-vine {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--moss-green));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.title-vine::before,
.title-vine::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background: var(--leaf-green);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: vineGrow 2s ease-in-out infinite;
}

.title-vine::before {
    left: -40px;
    animation-delay: 0s;
}

.title-vine::after {
    right: -40px;
    animation-delay: 1s;
}

@keyframes vineGrow {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

.membership-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.membership-orb {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-green), var(--moss-green));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    animation: orbFloat 6s ease-in-out infinite;
}

.orb-1 { animation-delay: 0s; }
.orb-2 { animation-delay: 2s; }
.orb-3 { animation-delay: 4s; }

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.membership-orb:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.3);
}

.membership-orb.featured {
    background: linear-gradient(135deg, var(--moss-green), var(--sage-green));
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(45, 80, 22, 0.2);
}

.orb-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.orb-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Fredoka', sans-serif;
}

.price span {
    font-size: 1rem;
    opacity: 0.8;
}

.orb-content ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.orb-content li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.orb-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.orb-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.orb-button:hover {
    background: white;
    color: var(--forest-green);
    transform: translateY(-2px);
}

/* Wavy Section */
.wavy-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wave-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, var(--forest-green), var(--moss-green));
    opacity: 0.1;
    animation: waveMove 10s linear infinite;
}

.wave-1 {
    top: 20%;
    animation-delay: 0s;
}

.wave-2 {
    top: 50%;
    animation-delay: 3s;
    background: linear-gradient(90deg, var(--moss-green), var(--sage-green));
}

.wave-3 {
    top: 80%;
    animation-delay: 6s;
    background: linear-gradient(90deg, var(--sage-green), var(--leaf-green));
}

@keyframes waveMove {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.contact-content {
    text-align: center;
    z-index: 2;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--organic-shadow);
}

.contact-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.contact-flow {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-bubble {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: bubbleFloat 4s ease-in-out infinite;
}

.contact-bubble:nth-child(1) { animation-delay: 0s; }
.contact-bubble:nth-child(2) { animation-delay: 1s; }
.contact-bubble:nth-child(3) { animation-delay: 2s; }

.contact-bubble:hover {
    transform: translateY(-5px);
    box-shadow: var(--organic-shadow);
}

.bubble-icon {
    font-size: 2rem;
}

.bubble-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bubble-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bubble-value {
    font-size: 0.9rem;
    color: var(--forest-green);
    font-weight: 600;
}

.repeater-info h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.repeater-flow {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.repeater-bubble {
    background: var(--forest-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
}

.repeater-bubble:hover {
    transform: translateY(-3px);
    box-shadow: var(--organic-shadow);
}

.freq {
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Fredoka', sans-serif;
}

.details {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-nav {
        position: static;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .floating-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .flowing-cards {
        grid-template-columns: 1fr;
    }
    
    .spiral-item {
        position: static;
        transform: none;
        margin-bottom: 2rem;
    }
    
    .membership-flow {
        flex-direction: column;
    }
    
    .membership-orb {
        width: 250px;
        height: 250px;
    }
    
    .contact-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .repeater-flow {
        flex-direction: column;
        align-items: center;
    }
}
