/* Cycling Page Styles */

/* Import Earthy Theme Colors */
@import url('../css/earthy-theme.css');

/* Additional CSS Variables for Cycling Page */
:root {
    --white: #FFFFFF;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    
    /* Cycling-specific accent colors using earthy theme */
    --cycling-primary: var(--primary-green);
    --cycling-secondary: var(--accent-terracotta);
    --cycling-accent: var(--accent-light-brown);
}



/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/cycling/hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.8rem;
    opacity: 0.8;
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

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

/* Introduction Section */
.intro-section {
    padding: 6rem 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1.8rem;
    line-height: 1.3;
}

.intro-lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 1.8rem;
    font-weight: 500;
    line-height: 1.7;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-highlights {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-light-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    color: var(--primary-brown);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--text-medium);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.image-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Experience Section */
.experience-section {
    padding: 6rem 0;
    background: var(--neutral-light);
}

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

.experience-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.experience-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.experience-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.experience-content {
    padding: 1.5rem;
}

.experience-content h3 {
    color: var(--primary-brown);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.experience-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Routes Section - Compact Design */
.routes-section {
    padding: 4rem 0;
    background: var(--white);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.route-card {
    background: var(--white) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    border: 1px solid var(--neutral-beige) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 380px !important;
}

.route-card.featured {
    border: 2px solid var(--accent-light-brown) !important;
    box-shadow: 0 6px 20px rgba(166, 140, 105, 0.15) !important;
}

.route-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
}

.route-header {
    position: absolute !important;
    top: 0.8rem !important;
    left: 0.8rem !important;
    right: 0.8rem !important;
    display: flex !important;
    justify-content: space-between !important;
    z-index: 3 !important;
}

.route-badge {
    background: var(--accent-light-brown) !important;
    color: white !important;
    padding: 0.3rem 0.6rem !important;
    border-radius: 12px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}

.route-difficulty {
    background: rgba(255,255,255,0.95) !important;
    color: var(--primary-brown) !important;
    padding: 0.3rem 0.6rem !important;
    border-radius: 12px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.route-image {
    height: 160px !important;
    overflow: hidden !important;
    position: relative !important;
}

.route-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.route-card:hover .route-image img {
    transform: scale(1.05) !important;
}

.route-content {
    padding: 1.2rem 1rem !important;
}

.route-content h3 {
    color: var(--primary-brown) !important;
    margin-bottom: 0.6rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.route-content p {
    color: var(--text-medium) !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.5 !important;
    font-size: 0.85rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.route-stats {
    display: flex !important;
    justify-content: space-between !important;
    padding: 0.6rem !important;
    background: var(--neutral-light) !important;
    border-radius: 8px !important;
    margin-bottom: 0.8rem !important;
}

.route-stats .stat {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.2rem !important;
    text-align: center !important;
    flex: 1 !important;
}

.route-stats .stat i {
    color: var(--accent-light-brown) !important;
    font-size: 0.9rem !important;
}

.route-stats .stat span {
    font-weight: 500 !important;
    color: var(--primary-brown) !important;
    font-size: 0.65rem !important;
    line-height: 1.2 !important;
}

.route-highlights {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.3rem !important;
    margin-top: auto !important;
}

.highlight-tag {
    background: var(--primary-green) !important;
    color: white !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 8px !important;
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}

/* Tours Section */
.tours-section {
    padding: 6rem 0;
    background: var(--neutral-light);
}

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

.tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-beige);
}

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

.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-light-brown);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.tour-content {
    padding: 1.5rem;
}

.tour-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.tour-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.tour-highlights .highlight-tag {
    background: var(--primary-green);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-beige);
}

.tour-price .price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-light-brown);
}

.tour-price .price-unit {
    font-size: 0.8rem;
    color: var(--text-medium);
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.tour-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tour-btn:hover {
    background: var(--accent-light-brown);
    transform: translateY(-2px);
}

/* No Tours Message */
.no-tours-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.no-tours-icon {
    width: 80px;
    height: 80px;
    background: var(--neutral-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-medium);
    font-size: 2rem;
}

.no-tours-message h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-tours-message p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent-light-brown);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

/* View More Container */
.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-green);
    text-decoration: none;
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Why Cycling Section */
.why-cycling-section {
    padding: 6rem 0;
    background: var(--white);
}

.why-cycling-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-cycling-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.section-lead {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.6;
}

.benefits-list {
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-light-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-content p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

.why-cycling-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
}

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

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-light-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-light-brown) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.cta-btn.primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-features .feature i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .intro-content,
    .why-cycling-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .intro-text h2,
    .why-cycling-text h2 {
        font-size: 2.2rem;
    }
    
    .intro-lead {
        font-size: 1.15rem;
    }
    
    .intro-text p {
        font-size: 1.05rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .routes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .intro-text h2,
    .why-cycling-text h2 {
        font-size: 1.9rem;
    }
    
    .intro-lead {
        font-size: 1.1rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tour-image {
        height: 180px;
    }
    
    .tour-content {
        padding: 1.2rem;
    }
    
    .tour-footer {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    
    .tour-btn {
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    body {
        font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .intro-text h2,
    .why-cycling-text h2 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .intro-lead {
        font-size: 1rem;
    }
    
    .intro-text p {
        font-size: 0.95rem;
    }
    
    .experience-grid,
    .routes-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .tour-title {
        font-size: 1.1rem;
    }
    
    .tour-description {
        font-size: 0.9rem;
    }
}
