/* 
* The People's Elbow - Mutual Aid Massage
* Main Stylesheet
*/

/* Variables */
:root {
    /* Color palette based on the logo */
    --pe-green: #006937;
    --pe-green-light: #008a47;
    --pe-green-dark: #004225;
    --pe-gold: #ffcc00;
    --pe-orange: #ff9900;
    --pe-black: #000000;
    --pe-white: #ffffff;
    --pe-blue: #008ecc;
    --pe-red: #8B0000;
    --pe-light-gray: #f9f9f9;
    
    /* Fonts */
    --font-heading: 'Bangers', cursive;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--pe-green);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--pe-green-light);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--pe-green);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--space-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    padding-bottom: var(--space-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--pe-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--pe-green);
    color: var(--pe-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--pe-green);
}

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

.btn-secondary {
    background-color: var(--pe-gold);
    color: var(--pe-black);
}

.btn-secondary:hover {
    background-color: #e6b800;
    color: var(--pe-black);
}

/* Header */
header {
    background-color: var(--pe-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-lg);
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-link:active {
    transform: scale(0.98);
}

.logo-link .main-logo {
    display: block;
}

.main-logo {
    height: 80px;
    max-width: 200px;
    width: auto;
}

.version-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #ffd700 50%, #b8860b 100%);
    color: #2d5a2d;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 25px;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 2px solid #2d5a2d;
    transition: all 0.4s ease;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 50px;
    text-align: center;
    cursor: pointer;
}

.version-badge a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.version-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.version-badge:hover,
.version-badge:active,
.version-badge:focus-within {
    transform: scale(1.08) translateY(-1px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 25%, #ffed4e 50%, #b8860b 100%);
}

.version-badge:hover::before,
.version-badge:active::before,
.version-badge:focus-within::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@media (max-width: 768px) {
    .version-badge {
        -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3);
        touch-action: manipulation;
    }
    
    .version-badge:active {
        transform: scale(1.05) translateY(0px);
        transition: all 0.1s ease;
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: var(--space-lg);
}

nav ul li a {
    color: var(--pe-green);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pe-gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-color: var(--pe-green);
    color: var(--pe-white);
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: var(--space-xs);
    color: var(--pe-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    color: var(--pe-white);
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--pe-gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--space-lg);
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* Mission Section */
.mission {
    padding: var(--space-xl) 0;
    background-color: var(--pe-white);
}

.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-text {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.mission-tagline {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--pe-green);
    margin-bottom: var(--space-md);
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    width: 100%;
}

.value-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--pe-white);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--pe-gold);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--pe-gold);
    margin-bottom: var(--space-md);
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--pe-green-dark);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-item p {
    color: var(--pe-text-dark);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: var(--space-xl) 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    background-color: var(--pe-white);
    padding: var(--space-lg);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--pe-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--pe-white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--pe-green-dark);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.service-card p {
    color: var(--pe-text-dark);
    line-height: 1.6;
}

/* Equipment Showcase Section */
.equipment-showcase {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid var(--pe-gold);
    border-bottom: 3px solid var(--pe-gold);
}

.equipment-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.equipment-text {
    flex: 2;
}

.equipment-text h3 {
    font-size: 2rem;
    color: var(--pe-green);
    margin-bottom: var(--space-sm);
}

.equipment-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin-bottom: var(--space-lg);
}

.equipment-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm);
    background-color: var(--pe-white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    width: 40px;
    height: 40px;
    background-color: var(--pe-green);
    color: var(--pe-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    flex: 1;
    line-height: 1.5;
}

.equipment-badge {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.license-display {
    background: linear-gradient(135deg, var(--pe-green) 0%, var(--pe-green-dark) 100%);
    color: var(--pe-white);
    padding: var(--space-lg);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.license-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.license-display i {
    font-size: 2.5rem;
    color: var(--pe-gold);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.license-display span {
    font-size: 1.3rem;
    font-weight: bold;
    display: block;
    margin-bottom: var(--space-xs);
    position: relative;
    z-index: 1;
}

.license-display p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Host Connection Section */
.host-connection {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--pe-green) 0%, var(--pe-green-dark) 100%);
    color: var(--pe-white);
}

.host-connection .section-title {
    color: var(--pe-gold);
}

.host-connection .section-title::after {
    background-color: var(--pe-gold);
}

.host-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.host-text h3 {
    color: var(--pe-gold);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

.host-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.host-benefits {
    list-style: none;
    padding: 0;
}

.host-benefits li {
    padding: var(--space-sm) 0;
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.host-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pe-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.host-form {
    background: var(--pe-white);
    padding: var(--space-xl);
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.host-form h3 {
    color: var(--pe-green);
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: 1.75rem;
}

/* Form Styling */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: bold;
    color: var(--pe-green);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--pe-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pe-green);
    box-shadow: 0 0 0 3px rgba(0, 105, 55, 0.1);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right var(--space-sm) center;
    background-size: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group button {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-size: 1.1rem;
    margin-top: var(--space-sm);
    transition: all 0.3s ease;
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 105, 55, 0.3);
}

/* Contact Form Styling */
.contact {
    padding: var(--space-xl) 0;
    background-color: var(--pe-light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info h3 {
    color: var(--pe-green);
    margin-bottom: var(--space-lg);
}

.contact-methods {
    margin-top: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    background: var(--pe-white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    color: var(--pe-green);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-form {
    background: var(--pe-white);
    padding: var(--space-xl);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Form Styling */
@media (max-width: 992px) {
    .host-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .host-form {
        padding: var(--space-lg);
    }
    
    .contact-form {
        padding: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .host-form {
        padding: var(--space-md);
    }
    
    .contact-form {
        padding: var(--space-md);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--space-sm);
    }
}

/* Impact Section */
.impact {
    padding: var(--space-xl) 0;
    background-color: #f9f9f9;
}

.impact-tracker {
    display: flex;
    justify-content: space-around;
    margin-bottom: var(--space-xl);
}

.impact-stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--pe-green);
    margin-bottom: var(--space-xs);
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-stories {
    text-align: center;
}

.coming-soon {
    font-style: italic;
    color: #777;
}

/* Locations Section */
.locations {
    padding: var(--space-xl) 0;
    background-color: var(--pe-white);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--pe-green) 0%, var(--pe-green-dark) 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: rotate 20s linear 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.map-coming-soon {
    text-align: center;
    z-index: 1;
    position: relative;
}

.map-coming-soon i {
    font-size: 4rem;
    color: var(--pe-gold);
    margin-bottom: var(--space-md);
    animation: bounce 2s ease-in-out 3;
}

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

.map-coming-soon p {
    color: var(--pe-white);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: var(--space-xs);
}

.map-coming-soon .small-text {
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: var(--space-xl) 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    gap: var(--space-xl);
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-methods {
    margin-top: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.contact-method i {
    width: 40px;
    height: 40px;
    background-color: var(--pe-green);
    color: var(--pe-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
}

/* Footer */
footer {
    background-color: var(--pe-green);
    color: var(--pe-white);
    padding: var(--space-lg) 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-info p {
    margin-bottom: var(--space-xs);
}

.footer-quote {
    font-style: italic;
}

.social-icon {
    color: var(--pe-white);
    font-size: 1.5rem;
    margin-left: var(--space-sm);
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--pe-gold);
}

.site-disclaimer {
    margin-top: var(--space-md);
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-sm);
}

.site-disclaimer a {
    color: #FFD700; /* Brighter gold for better contrast */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.site-disclaimer a:hover {
    color: var(--pe-white);
}

/* Responsive Styles */
@media (min-width: 769px) {
    /* Ensure navigation is visible on desktop */
    nav ul {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }
    
    nav ul li {
        margin-left: var(--space-lg);
    }
    
    nav ul li a {
        display: inline !important;
        padding: 0 !important;
        border-bottom: none !important;
    }
    
    .menu-toggle {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .mission-content, .host-content, .contact-content {
        flex-direction: column;
    }
    
    .values, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--pe-white);
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.mobile-menu-active {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        display: block;
        padding: var(--space-md);
        border-bottom: 1px solid #eee;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .version-badge {
        font-size: 0.8rem;
    }
    
    .values, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .impact-tracker {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .mission-content {
        flex-direction: column;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .version-badge {
        font-size: 0.8rem;
    }
    
    .equipment-content {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .equipment-text h3 {
        font-size: 1.75rem;
    }
    
    .license-display {
        padding: var(--space-md);
    }
    
    .license-display i {
        font-size: 2rem;
    }
    
    .license-display span {
        font-size: 1.1rem;
    }
}

/* Coming Soon Pages Styling */
.steal-hero, .calendar-hero, .map-hero, .chat-hero {
    background: linear-gradient(135deg, var(--pe-green) 0%, var(--pe-green-dark) 100%);
    color: var(--pe-white);
    padding: var(--space-xl) 0;
    text-align: center;
}

.steal-hero h1, .calendar-hero h1, .map-hero h1, .chat-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--pe-gold);
    margin-bottom: var(--space-md);
}

.steal-tagline, .calendar-tagline, .map-tagline, .chat-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-content {
    padding: var(--space-xl) 0;
    background: var(--pe-white);
}

.construction-notice {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.construction-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    animation: construction-blink 2s infinite;
}

.construction-notice h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--pe-red);
    margin-bottom: var(--space-md);
}

.planned-features, .tech-note, .philosophy-note {
    background: var(--pe-light-gray);
    padding: var(--space-lg);
    border-radius: 8px;
    margin: var(--space-lg) 0;
    text-align: left;
}

.planned-features h3, .tech-note h3, .philosophy-note h3 {
    color: var(--pe-green);
    margin-bottom: var(--space-md);
}

.planned-features ul {
    list-style: none;
    padding: 0;
}

.planned-features li {
    padding: var(--space-sm) 0;
    border-left: 3px solid var(--pe-gold);
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
}

.stay-updated {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(0, 105, 55, 0.1) 0%, rgba(0, 105, 55, 0.05) 100%);
    border-radius: 8px;
    border-left: 4px solid var(--pe-green);
}

.stay-updated a {
    color: var(--pe-green);
    text-decoration: underline;
    font-weight: bold;
}

.stay-updated a:hover {
    color: var(--pe-green-dark);
}

/* Active nav link styling */
nav ul li a.active {
    color: var(--pe-gold);
    font-weight: bold;
}

@keyframes construction-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Dashboard Styling */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.dashboard-card {
    background: var(--pe-white);
    border-radius: 15px;
    padding: var(--space-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--pe-gold);
}

.dashboard-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pe-green) 0%, var(--pe-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg) auto;
    box-shadow: 0 4px 12px rgba(0, 105, 55, 0.3);
}

.dashboard-card .card-icon i {
    font-size: 2rem;
    color: var(--pe-white);
}

.dashboard-card h3 {
    text-align: center;
    color: var(--pe-green-dark);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.dashboard-card p {
    text-align: center;
    color: var(--pe-text-dark);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.coming-soon-badge {
    background: linear-gradient(135deg, var(--pe-gold) 0%, #e6b800 100%);
    color: var(--pe-black);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wip-timeline {
    background: var(--pe-light-gray);
    padding: var(--space-xl);
    border-radius: 15px;
    margin-top: var(--space-xl);
    border-left: 5px solid var(--pe-green);
}

.wip-timeline h3 {
    color: var(--pe-green-dark);
    margin-bottom: var(--space-lg);
    text-align: center;
    font-size: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--pe-green);
    border-radius: 50%;
    margin-right: var(--space-lg);
    margin-top: var(--space-xs);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(0, 105, 55, 0.2);
}

.timeline-item:not(:last-child) .timeline-dot::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 9px;
    width: 2px;
    height: 60px;
    background: var(--pe-green);
    opacity: 0.3;
}

.timeline-content h4 {
    color: var(--pe-green-dark);
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--pe-text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Secret admin icon styling */
.admin-secret {
    opacity: 0.1;
    transition: opacity 0.3s ease;
    position: relative;
    display: inline-block;
    margin-left: var(--space-sm);
}

.admin-secret:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .wip-timeline {
        padding: var(--space-lg);
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-dot {
        margin: 0 auto var(--space-md) auto;
    }
    
    .timeline-item:not(:last-child) .timeline-dot::after {
        display: none;
    }
}

/* Version 100 Milestone Celebration */
.version-badge.milestone-100 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 15%, #ffd700 30%, #b8860b 45%, #ffd700 60%, #ffed4e 75%, #ffd700 100%);
    background-size: 200% 200%;
    animation: shimmer 2s ease-in-out infinite, milestone-glow 3s ease-in-out infinite;
    box-shadow: 
        0 2px 8px rgba(255, 215, 0, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.version-badge.milestone-100::before {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    animation: shimmer 1.5s ease-in-out infinite;
}

.version-badge.milestone-100::after {
    content: '✨';
    position: absolute;
    right: -8px;
    top: -8px;
    font-size: 0.8rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes milestone-glow {
    0%, 100% { 
        box-shadow: 
            0 2px 8px rgba(255, 215, 0, 0.4),
            0 0 0 2px rgba(255, 215, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    50% { 
        box-shadow: 
            0 3px 12px rgba(255, 215, 0, 0.6),
            0 0 0 3px rgba(255, 215, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.6;
        transform: rotate(0deg) scale(1);
    }
    50% { 
        opacity: 1;
        transform: rotate(180deg) scale(1.2);
    }
}

/* Who is The People's Elbow? Section - Clean background */
#who {
    position: relative;
    overflow: hidden;
}

#who .container {
    position: relative;
    z-index: 1;
}

#who .section-title {
    position: relative;
    z-index: 1;
}

/* All content within the who section needs to be above the background */
#who div, #who h2, #who h3, #who p, #who img {
    position: relative;
    z-index: 1;
}

/* Who section responsive styles are handled by inline styles in HTML */