/* Weather Page Specific Components */

:root {
    --weather-bg: #f3f8f5;
    --weather-accent: #2d5f3f;
    --weather-text-light: #666;
    --color-dark: #1a1a1a;
}

/* 1. Weather Hero Refinement */
.weather-hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* 2. Season Cards Carousel */
.seasons-carousel-container {
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
}

.seasons-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
}

.seasons-carousel::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.season-card {
    flex: 0 0 300px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
}

.season-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.season-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.season-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.season-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

/* 3. Weather Stats Section */
.weather-stats-card {
    background: var(--weather-bg);
    border-radius: 30px;
    padding: 3rem;
    margin: 4rem 0;
}

.stat-group {
    margin-bottom: 2.5rem;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.progress-bar-bg {
    height: 8px;
    background: rgba(45, 95, 63, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--weather-accent);
    border-radius: 10px;
}

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

.milestone-item {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.milestone-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--weather-text-light);
    margin-bottom: 0.5rem;
}

.milestone-value {
    font-weight: 700;
    font-size: 1.1rem;
}

/* 4. "Best Moment for..." List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.activity-item {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.activity-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #eee;
}

.activity-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: #eef3f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-text h4 {
    margin: 0;
    font-size: 1.1rem;
}

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

/* 5. Color Palette */
.palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.palette-item {
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 1/1;
    position: relative;
}

.palette-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.palette-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 6. Activity Modal Specifics */
.activity-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.activity-modal.active {
    opacity: 1;
    visibility: visible;
}

.activity-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.activity-modal.active .activity-modal-content {
    transform: translateY(0);
}

.activity-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f3f8f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--weather-accent);
    line-height: 1;
}

.activity-modal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.activity-modal h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    text-align: left;
}

.activity-modal p {
    color: var(--weather-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
}

.activity-modal .btn-more {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--weather-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.activity-modal .btn-more:hover {
    opacity: 0.9;
}

/* 7. Carousel Navigation Arrows */
.carousel-nav-wrapper {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.carousel-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--weather-accent);
    font-size: 1.2rem;
}

.carousel-nav-btn:hover {
    background: var(--weather-accent);
    color: white;
    border-color: var(--weather-accent);
}