*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f4f7fb;
    font-family:Arial,sans-serif;
}

.calendar-page{
    width:100%;
    min-height:100vh;
    padding:40px 20px;
}

.calendar-header{
    text-align:center;
    margin-bottom:40px;
}

.calendar-header h1{
    font-size:42px;
    color:#111;
    margin-bottom:10px;
}

.calendar-header p{
    color:#666;
    font-size:18px;
}

.calendar-wrapper{
    max-width:1200px;
    margin:auto;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.fc-toolbar-title{
    font-size:28px !important;
}

.fc-daygrid-event{
    border:none !important;
    padding:5px !important;
    border-radius:8px !important;
    font-size:13px !important;
}

.fc-day-today{
    background:#fff8e1 !important;
}

.event-modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow:auto;
    background:rgba(0,0,0,0.6);
}

.modal-content{
    background:#fff;
    width:700px;
    max-width:95%;
    margin:50px auto;
    padding:30px;
    border-radius:20px;
    position:relative;
    animation:popup 0.3s ease;
}

@keyframes popup{

    from{
        transform:scale(0.8);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}

.close-modal{
    position:absolute;
    top:15px;
    right:20px;
    font-size:35px;
    cursor:pointer;
}

.modal-image{
    width:100%;
    border-radius:15px;
    margin-bottom:20px;
}

.event-category{
    display:inline-block;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    margin-bottom:15px;
    font-size:14px;
}

.event-details h2{
    font-size:32px;
    margin-bottom:10px;
}

.event-date{
    color:#777;
    margin-bottom:20px;
}

.event-description{
    color:#444;
    line-height:1.8;
    margin-bottom:25px;
}

.event-btn{
    display:inline-block;
    background:#1976d2;
    color:#fff;
    text-decoration:none;
    padding:14px 25px;
    border-radius:10px;
}

@media(max-width:768px){

    .calendar-header h1{
        font-size:28px;
    }

    .modal-content{
        padding:20px;
    }

    .event-details h2{
        font-size:24px;
    }

}

.hero-section{
    text-align:center;
    padding:80px 20px;
    background:#1976d2;
    color:#fff;
}

.hero-section h1{
    font-size:52px;
    margin-bottom:15px;
}

.hero-btn{
    display:inline-block;
    margin-top:20px;
    background:#fff;
    color:#1976d2;
    padding:14px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
}

.search-section{
    max-width:700px;
    margin:40px auto;
}

.search-section form{
    display:flex;
    gap:10px;
}

.search-section input{
    flex:1;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

.search-section button{
    border:none;
    background:#1976d2;
    color:#fff;
    padding:15px 25px;
    border-radius:10px;
    cursor:pointer;
}

.section{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
}

.section-title{
    font-size:32px;
    margin-bottom:30px;
    color:#111;
}

.event-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.event-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.event-card:hover{
    transform:translateY(-5px);
}

.event-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.event-badge{
    display:inline-block;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    margin-bottom:15px;
}

.read-btn{
    display:inline-block;
    margin-top:15px;
    text-decoration:none;
    background:#1976d2;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
}

.calendar-header{
   
    color:#fff;
    padding:50px;
    border-radius:20px;
}

.hero-section{
    background:linear-gradient(135deg,#0f172a,#1e293b);
}

.event-card{
    border:1px solid #e2e8f0;
}

.event-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.event-badge{
    font-weight:bold;
    letter-spacing:0.5px;
}

.fc-daygrid-event{
    font-weight:bold !important;
}

.modal-content{
    border-top:5px solid #1976d2;
}

.fc-daygrid-day{
    transition:0.3s;
}

.fc-daygrid-day:hover{
    background:#f1f5f9 !important;
}

.fc-day-today{
    background:#fff8e1 !important;
    border:2px solid #f59e0b !important;
}

.no-report{
    text-align:center;
    padding:50px 20px;
}

.no-report h2{
    margin-bottom:15px;
    color:#111827;
}

.no-report p{
    color:#6b7280;
}

.calendar-header{
   
    color:#fff;
    padding:50px;
    border-radius:20px;
}

.hero-section{
    background:linear-gradient(135deg,#0f172a,#1e293b);
}


/*
========================
HERO SECTION
========================
*/

.hero-section{

    position:relative;

    background:linear-gradient(
        135deg,
        #000000,
        #0f172a,
        #1e3a8a,
        #2563eb
    );

    min-height:85vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

    padding:60px 20px;
}

.hero-overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:linear-gradient(
        rgba(255,255,255,0.03),
        transparent
    );
}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;
}

.market-badge{

    display:inline-block;

    background:#22c55e;

    color:#fff;

    padding:10px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:bold;

    margin-bottom:25px;
}

.hero-content h1{

    font-size:68px;

    color:#fff;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;
}

.hero-content p{

    font-size:24px;

    color:#dbeafe;

    line-height:1.8;
}

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

    justify-content:center;

    flex-wrap:wrap;
}

.hero-btn{

    display:inline-block;

    background:#ffffff;

    color:#111827;

    padding:16px 35px;

    border-radius:12px;

    text-decoration:none;

    font-weight:bold;

    transition:0.3s;
}

.hero-btn:hover{

    transform:translateY(-4px);
}

.secondary-btn{

    background:#111827;

    color:#fff;

    border:1px solid rgba(255,255,255,0.2);
}

/*
========================
STATS
========================
*/

.stats-section{

    margin-top:-60px;

    position:relative;

    z-index:5;

    padding:0 20px;
}

.stats-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;
}

.stats-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.stats-card h2{

    font-size:42px;

    color:#2563eb;

    margin-bottom:10px;
}

.stats-card p{

    color:#6b7280;

    font-size:18px;
}

/*
========================
SECTION HEADER
========================
*/

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

    flex-wrap:wrap;

    gap:15px;
}

.section-header h2{

    font-size:36px;

    color:#111827;
}

.section-header a{

    text-decoration:none;

    color:#2563eb;

    font-weight:bold;
}

/*
========================
RESPONSIVE
========================
*/

@media(max-width:768px){

    .hero-content h1{

        font-size:42px;
    }

    .hero-content p{

        font-size:18px;
    }

    .section-header h2{

        font-size:28px;
    }

}