@font-face {   /* download font from drive then do this and use same fonnt for everythig */
    font-family: 'Montserrat';
    src: url('/static/font/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype-variations');
}
body {
    font-family: 'Montserrat';
    background-color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
   
}


html, body {
    margin: 0;
    padding: 0;
    height: auto ;
    
}
.navbar-container{
  
    width: 100%;
}
.navbar-container h3{ /* this is the 'modern montessori school' on the navbar */
    font-family: 'Montserrat';
     font-size: 18px;
     font-weight: bold;
    
    
}
#committee-info{
    font-size:20px;
    font-family: 'Montserrat';

}

#home-logo-top{
    height: 135px; /* this is the mss logo on the navbar */
    width: 135px;
    border-radius: 10px;
    
    
}

.custom-navbar{
    background-color: #006f3b;
    min-height: 110px;
    display: flex;
    align-items: center;
    padding: 0 45px;
   
}
.navbar-nav{
    display:flex;
    align-items: center;
    margin-left: auto;
    gap: 10px;
}
.navbar-nav .nav-link {
    color: white;
    font-size: 16px;
    font-family:'Montserrat';
    transition: 0.3s;
    font-weight: bold;

    
}
.navbar-nav .nav-link:hover {
    color: black;
    font-size: 16px;
    font-family:'Montserrat';
}
.navbar-brand{
    
    color: #5a5a5a;
    font-size: 20px;
    font-family:'Montserrat';
}
#header{
    
    color:white;
    border-radius: 15px;
    height: 40px;
    width:100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin-right: 100px; /*  this the div that has the 'modern motessori school' in the narbar */


}
.green{
    padding: 20px;
    display: flex;
    background-image: url('../images/earth.png');
    height: 350px;
    position: relative;
    align-items: center;
    justify-content: flex-start; /* such a stupid name but this  is the  div that has the map and coundown and everything, idk why its called green, the div is literally whitw\e*/
    flex-direction: column;
    flex-wrap: wrap;
}
.main{
    padding: 20px;
    display: flex;
    min-height: 350px;
    height:auto;
  
    flex-direction: column;
}
.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color:#006f3b;
    
h3{
    font-weight: bold;
    font-size: 10;
}
}

.buttons{
    display: flex;
margin-left: 25px;
 gap: 45px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;

}
.buttonso{
    display: flex;
    margin-left: 20px;

 gap: 28px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;

}
.buttons button:hover{
       transform: scale(1.1);
}
.card {
    display: none;
    width: 400px;
    padding: 25px;
    margin: 20px auto; 
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
}
.stripes {
    margin-top: auto;
    width: 100%;
    height: 50px;
    background:
        linear-gradient(
            #006f3b 45%,
            #006f3b 50%,
            #b8965b 50%,
            #b8965b 60%
            #527241
        );
}

#bubble{ /* this that the '9th annual mun */

    background-color: #b8965bc7;
    color:white;
    border-radius: 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
#countdown{
    margin-top: 15px;
    display: flex;
    flex-direction: row;
   justify-content: center;
   align-items: center;
   gap: 50px;
}

.com{
    align-self: center;
    font-weight: bold;
    font-family: 'Montserrat';
    margin-bottom: 40px;
}
#committee-page{
    font-family: 'Montserrat';
    font-size: 25px;
    
color: #006f3b;
}
#committee-name{
    font-weight: bold;
font-family: 'Montserrat';
}
#back{
    border-radius: 10px;
    background-color: white;
    font-size:18px;
    margin-bottom: 10px;
    font-weight: bold;
    color: black;
    border: 2px solid #b8965b;
}

.time-block{
    background:#8584843d;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255, 255, 255, 0.249);
    width:110px;
    height:110px;
    border-radius: 15px;
    padding:10px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time-block span{ /*the text in the time block */
    color:#c9a96e;
    font-size:40px;
}

.title{ /* the black 'montessori mun 2026' and 'thegrand act'*/
    font-family: 'Montserrat';
    font-weight: bold;
}
@media (max-width: 768px){
 .custom-navbar {
        padding: 10px 20px;
        height: auto;
    }

    #home-logo-top {
        width:70px;
        height:70px;
    }

    #header {
        margin-right:0;
        width:auto;
    }

    .navbar-toggler {
        margin-left:auto;
    }

    .navbar-collapse {
        width:100%;
    }

    .navbar-nav {
        margin-left:0;
        align-items:flex-start;
        gap:0;
        padding-top:15px;
    }


    #committee-list {
        width: 100%;
    }

    .buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        width: 100%;
    }
    .buttonso {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        width: 100%;
    }

    .item {
        width: 100%;
    }

    

    .item h3 {
        font-size: 18px;
        margin-top: 10px;
    }

}

   


    .navbar-container {
        flex-wrap: wrap;
    }

   
  

  



   

    .navbar-container h3 {
        font-size: 14px;
    }

   

   

    .navbar-nav .nav-link {
        padding: 10px 0;
    }

 

/* ============================================
   Italic Montserrat + Dubai (Arabic), per brand guidelines
   ============================================ */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    src: url('/static/font/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype-variations');
}
@font-face {
    font-family: 'Dubai';
    font-weight: 400;
    src: url('/static/font/Dubai/Dubai-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Dubai';
    font-weight: 500;
    src: url('/static/font/Dubai/Dubai-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Dubai';
    font-weight: 300;
    src: url('/static/font/Dubai/Dubai-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Dubai';
    font-weight: 700;
    src: url('/static/font/Dubai/Dubai-Bold.ttf') format('truetype');
}
