/*---------------------------------------------------------------------------*/
/*-------------------------------Root-Config---------------------------------*/
/*---------------------------------------------------------------------------*/
:root {
    --primary-color: #2c7744;
    --secondary-color: #c9e4ca;
    --accent-color: #e76f51;
    --dark-color: #1a2e1b;
    --light-color: #d8d9da;
    --weather-blue: #1976d2;
    --weather-light: #e3f2fd;
}

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Overpass', sans-serif;
}
h3 {
    font-family: 'Overpass', serif;
    font-weight: 700;
    color: #fff;
    font-size: 24px; 
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
}

 h4 {
    font-family: 'Overpass', serif;
    font-weight: 700;
    color: #bf9a34;
    font-size: 24px; 
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
    
}

        h1, h2 {
            font-family: 'BlackBones'; 
            font-weight: 700;
        }



/*---------------------------------------------------------------------------*/
/*---------------------------Video Background--------------------------------*/
/*---------------------------------------------------------------------------*/
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    filter: sepia(30%) blur(2px);
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

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

/*---------------------------------------------------------------------------*/
/*-----------------------------Hero-Section----------------------------------*/
/*---------------------------------------------------------------------------*/
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--weather-blue);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.hero-btn:hover {
    background-color: white;
    color: var(--weather-blue);
    transform: translateY(-3px);
}

.hero-weather {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.hero-weather-item {
    text-align: center;
    min-width: 80px;
}

.hero-weather-value {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    line-height: 1;
}

.hero-weather-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Hero Weather Container */
.hero-weather-container {
    width: 100%;
    max-width: 800px;
    margin: 25px auto;
}

/* Hero Weather Highlights */
.hero-weather {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-weather-item {
    text-align: center;
    min-width: 80px;
}

.hero-weather-value {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    line-height: 1;
}

.hero-weather-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Centered Recommendation */
.hero-recommendation {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto 30px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    width: fit-content;
    max-width: 90%;
}

.hero-recommendation p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.hero-recommendation h3 {
    margin: 10px 0 0;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-weather {
        gap: 15px;
    }
    
    .hero-weather-item {
        min-width: 70px;
    }
    
    .hero-weather-value {
        font-size: 1.8rem;
    }
    
    .hero-recommendation {
        padding: 15px;
    }
    
    .hero-recommendation h3 {
        font-size: 1.2rem;
    }
}

/*---------------------------------------------------------------------------*/
/*-------------------------Weather Data Sections-----------------------------*/
/*---------------------------------------------------------------------------*/
.data-section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 60px 20px;
    position: relative;
}
    .projects-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
.weathersection-title {
    text-align: center;
    margin-bottom: 40px;
}

.weathersection-title h2 {
    font-size: 36px;
    color: var(--weather-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.weathersection-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--weather-blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.weathersection-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.data-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        justify-items: center;
        margin-top: 30px;
    }

    .data-card {
        width: 100%;
        max-width: 350px;
        background-color: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .data-card:hover {
        transform: translateY(-5px);
    }

    .data-label {
        font-size: 16px;
        color: #666;
        margin-bottom: 10px;
    }

    .data-value {
        font-size: 32px;
        font-weight: bold;
        color: #1a2e1b;
        margin-bottom: 15px;
    }


    .chart-container {
        position: relative;
        height: 400px;
        width: 100%;
        margin-top: 30px;
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    

/*---------------------------------------------------------------------------*/
/*-----------------------------Responsive Design-----------------------------*/
/*---------------------------------------------------------------------------*/
    @media (max-width: 768px) {
        .data-grid {
            grid-template-columns: 1fr;
        }
        
        .data-card {
            max-width: 100%;
        }
        
        .chart-container {
            height: 300px;
        }
    }
@media (max-width: 480px) {
    .data-grid {
        grid-template-columns: 1fr;
    }
}

/*---------------------------------------------------------------------------*/
/*----------------------------Animations Section-----------------------------*/
/*---------------------------------------------------------------------------*/
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

  /* Updated CSS for weather page */
    .projects-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }


        h1{
            font-family: 'BlackBones'; 
            font-weight: 700;
        }


/*---------------------------------------------------------------------------*/
/*--------------------------Fonts Section-------------------------------*/
/*---------------------------------------------------------------------------*/
    @font-face {
  font-family: 'BlackBones'; /* Choose a name for your font */
  src:url('fonts/BlackBones.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;


