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

body {
    font-family: 'Quicksand', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(to bottom, #87CEEB 0%, #90EE90 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

/* Cute Cloud Pattern Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 25%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 22%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation - Cute Rounded Style */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 3px solid #FF69B4;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    color: #FF69B4;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.5px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FF69B4;
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
    border: 2px solid #FF69B4;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

/* Hero Section - Cute Rounded Card Style */
.hero {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #FF69B4;
    border-radius: 30px;
    box-shadow: 
        0 8px 25px rgba(255, 105, 180, 0.4),
        0 0 0 8px rgba(255, 182, 193, 0.3);
    color: #2c3e50;
    padding: 4rem 2rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
    color: #FF1493;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.3rem;
    color: #2c3e50;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

/* Route Section - Cute Cards */
.route-section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.route-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
    letter-spacing: 1px;
}

/* Map - Cute Frame */
#map {
    height: 500px;
    width: 100%;
    border-radius: 25px;
    box-shadow: 
        0 8px 25px rgba(255, 105, 180, 0.4),
        0 0 0 5px rgba(255, 182, 193, 0.5);
    margin-bottom: 2rem;
    position: relative;
    border: 4px solid #FF69B4;
    overflow: hidden;
}

.map-fallback {
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.fallback-content {
    text-align: center;
    padding: 2rem;
}

.fallback-content p {
    font-size: 1.3rem;
    color: #FF1493;
    margin-bottom: 0.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.fallback-note {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Route Info - Cute White Cards */
.route-directions {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 25px;
    border: 4px solid #FF69B4;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
    margin-bottom: 2rem;
}

.route-directions h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    text-align: center;
}

.route-directions .loading-text {
    text-align: center;
    color: #2c3e50;
    font-size: 1.1rem;
    font-style: italic;
}

.direction-step {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 182, 193, 0.2);
    border-radius: 15px;
    border-left: 4px solid #FF1493;
    transition: all 0.3s ease;
}

.direction-step:hover {
    background: rgba(255, 182, 193, 0.3);
    transform: translateX(5px);
}

.step-number {
    display: inline-block;
    background: #FF1493;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-instruction {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline;
}

.step-distance {
    color: #FF69B4;
    font-weight: 600;
    margin-left: 10px;
    font-size: 0.95rem;
}

.total-distance {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
    border-radius: 15px;
    margin-top: 1.5rem;
    border: 3px solid #FF69B4;
}

.total-distance strong {
    color: #FF1493;
    font-size: 1.3rem;
}

.route-info {
    display: grid;
    gap: 2rem;
}

.route-point {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 25px;
    border: 4px solid #FF69B4;
    border-left: 8px solid #FF1493;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

.route-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.5);
}

.route-point h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.route-point p {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #FFB6C1;
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.stat:hover {
    border-color: #FF69B4;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.5);
}

@media (prefers-reduced-motion: no-preference) {
    .stat:hover {
        transform: translateY(-8px) scale(1.05);
    }
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #2c3e50;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

/* About Section - Cute White Cards */
.about-section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.mission-statement,
.why-section,
.journey-section,
.future-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #FFB6C1;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.mission-statement h3,
.why-section h3,
.journey-section h3,
.future-section h3 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mission-statement p,
.journey-section p,
.future-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.mission-statement strong {
    color: #FF1493;
    font-weight: 700;
}

/* Reasons Grid - Cute White Cards */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    border: 4px solid #FFB6C1;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
    position: relative;
}

.reason-card:hover {
    border-color: #FF69B4;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.5);
}

@media (prefers-reduced-motion: no-preference) {
    .reason-card:hover {
        transform: translateY(-10px) scale(1.05);
    }
}

.reason-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.reason-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.reason-card p {
    color: #2c3e50;
    line-height: 1.7;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Footer - Cute Style */
footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 4px solid #FF69B4;
    color: #2c3e50;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
    box-shadow: 0 -4px 15px rgba(255, 105, 180, 0.3);
    position: relative;
    z-index: 1;
}

footer p {
    margin: 0.5rem 0;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
}

footer p:first-child {
    color: #FF1493;
    font-weight: 700;
}

/* Location Info Cards */
.location-info {
    margin-bottom: 2rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 25px;
    border: 4px solid #FF69B4;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.location-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.postcode-display {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 3px solid #FF69B4;
    display: inline-block;
}

.postcode-label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.postcode-value {
    font-weight: 700;
    color: #FF1493;
    font-size: 1.2rem;
    font-family: 'Courier New', monospace;
}

.history-section {
    margin-top: 1.5rem;
}

.history-section h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #FF69B4;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.history-section p {
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Route Disclaimer */
.route-disclaimer {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 25px;
    border: 4px solid #FF6B6B;
    border-left: 8px solid #dc3545;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
    margin-bottom: 2rem;
}

.route-disclaimer h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #dc3545;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.route-disclaimer p {
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 500;
}

.route-disclaimer strong {
    color: #dc3545;
    font-weight: 700;
}

/* Goals Page Styles */
.goals-section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.goal-totem {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #FF69B4;
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.goal-totem h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    text-align: center;
}

.goal-description {
    text-align: center;
    margin-bottom: 2rem;
}

.goal-description p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.goal-description strong {
    color: #FF1493;
    font-weight: 700;
}

.conversion-note {
    font-size: 1rem !important;
    color: #666 !important;
    font-style: italic;
}

.progress-container {
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #FFE5EC 0%, #FFF0F5 100%);
    border-radius: 30px;
    border: 4px solid #FFB6C1;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    border-radius: 26px;
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    position: relative;
    min-width: 0%;
}

.progress-text {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'Quicksand', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.progress-stat {
    text-align: center;
    background: rgba(255, 182, 193, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid #FFB6C1;
}

.progress-stat .stat-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.progress-stat .stat-value {
    display: block;
    color: #FF1493;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 0.3rem;
}

.progress-stat .stat-unit {
    display: block;
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
}

.trips-section {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #FFB6C1;
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.trips-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    text-align: center;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.trip-card {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #FF69B4;
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.5);
}

.trip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trip-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.trip-distance {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trip-count {
    margin: 1.5rem 0;
}

.count-value {
    display: block;
    font-size: 3.5rem;
    font-weight: bold;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
}

.count-label {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
}

.trip-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.round-trips {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 3px solid #FF69B4;
}

.round-trip-label {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin-right: 1rem;
}

.round-trip-value {
    font-size: 2.5rem;
    color: #FF1493;
    font-weight: bold;
    font-family: 'Quicksand', sans-serif;
}

.donation-info {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #FFB6C1;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.donation-info h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    text-align: center;
    background: rgba(255, 182, 193, 0.15);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #FFB6C1;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #FF69B4;
    background: rgba(255, 182, 193, 0.25);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FF1493;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.info-card p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 70%;
        max-width: 300px;
        height: 100vh;
        padding: 5rem 2rem 2rem 2rem;
        box-shadow: -4px 0 15px rgba(255, 105, 180, 0.3);
        transition: right 0.3s ease;
        gap: 1rem;
        border-left: 4px solid #FF69B4;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        text-align: center;
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    #map {
        height: 400px;
    }

    .route-stats {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }

    .trips-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Goals page mobile improvements */
    .goal-totem {
        padding: 1.5rem;
    }

    .goal-totem h3 {
        font-size: 1.8rem;
    }

    .goal-description p {
        font-size: 1rem;
    }

    .progress-stats {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .progress-stat {
        flex: 0 0 70%;
        min-width: 200px;
        scroll-snap-align: center;
    }

    .progress-stat .stat-value {
        font-size: 1.8rem;
    }

    .trips-section {
        padding: 1.5rem;
    }

    .trips-section h3 {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .trip-card {
        padding: 1.5rem;
    }

    .trip-icon {
        font-size: 2.5rem;
    }

    .trip-card h4 {
        font-size: 1.2rem;
    }

    .count-value {
        font-size: 2.5rem;
    }

    .count-label {
        font-size: 1rem;
    }

    .round-trips {
        padding: 1.5rem;
    }

    .round-trip-label {
        font-size: 1.1rem;
        display: block;
        margin-bottom: 0.5rem;
    }

    .round-trip-value {
        font-size: 2rem;
    }

    .donation-info {
        padding: 1.5rem;
    }

    .donation-info h3 {
        font-size: 1.8rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .info-card h4 {
        font-size: 1.2rem;
    }
}
