
*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins','sans-serif';
    overflow-y:none;
}

:root{
    --white-color:#fff;
    --dark-color:#252525;
    --primary-color:#3b141c;
    --secondary-color:#f3961c;
    --light-pink-color:#faf4f5;
    --medium-gray-color:#ccc;

    --font-size-s:0.9rem;
    --font-size-n:1rem;
    --font-size-m:1.12rem;
    --font-size-l:1.5rem;
    --font-size-xl:2rem;
    --font-size-xxl:2.3rem;

    --site-max-width:1300px;
}


#hideBig{
    display: none;
}


#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 15px;
  border: none;
  outline: none;
  background-image:linear-gradient(180deg,var(--primary-color),var(--secondary-color));
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 40px;
}

#myBtn:hover {
  background-color: #555;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background:var(--white-color); 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #333; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background:var(--secondary-color); 
}


ul{
    list-style: none;
}

button{
    cursor:pointer;
    border:none;
    background: none;

}

.section-title{
    text-align: center;
    padding:60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after{
    content: "";
    width:180px;
    height:5px;
    display: block;
    background: var(--secondary-color);
    margin:10px  auto 0;
    border-radius: 25px;
}

img{
    width:100%;
    
}

.section-content{
    max-width: var(--site-max-width);
    margin:0 auto;
    padding:0 10px;

}

/*nav bar**/
header{
    background: var(--primary-color);
    position: fixed;
    width:100%;
    z-index: 5;
}

header .navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:23px;
}

.navbar .navbar-logo{
    text-decoration: none;
}

.navbar .navbar-logo .navbar-text{
    color:var(--white-color);
    font-size: 30px;

}

.navbar .nav-menu{
    display: flex;
    gap:10px;

}

  .navbar :where(#menu-close-button,#menu-open-button){
        display: none;
    }

.navbar .nav-menu .nav-link{
    padding:12px 20px;
    border-top-right-radius: 20px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 40px;
    font-size: 20px;
    transition: 1.1s ease;
    text-decoration: none;
    color:var(--white-color);

}

.navbar .nav-menu .nav-link:hover{
    color:var(--white-color);
    background-color:var(--secondary-color);


  
}


#active{
    border-bottom: 2px solid var(--secondary-color);
}

a{
    text-decoration: none;
}

.hero-section{
    background: var(--primary-color);
    min-height: 100vh;
}

.hero-section .section-content{
    display: flex;
    align-items: center;
    min-height: 100vh;
    color:var(--white-color);
    justify-content: space-between;

}

.hero-section .hero-details .title{
    font-size: var(--font-size-xxl);
    color:var(--secondary-color);
    font-family: 'sans-serif';
}

.hero-section .hero-details .subtitle{
    font-size:var(--font-size-xl);
    margin-top: 8px;
    max-width: 70%;
    font-weight: 500;
}

.hero-section .hero-details .description{
    font-size:var(--font-size-m);
    margin-top: 24px 0 40px;
    max-width: 70%;
}


.hero-section .hero-details .button{
    padding:10px 26px;
    background: var(--secondary-color);
    color:var(--primary-color);
    border-radius: 30px;
    border:2px solid transparent;
    transition: 1.3s ease;
}

.hero-section .hero-details .button:hover,.hero-section .hero-details .contact{
    color:var(--white-color);
    border-color: var(--white-color);
    background: transparent;

}

.hero-section .hero-details .contact:hover{
    color:var(--primary-color);
    border-color: var(--secondary-color);
    background: var(--secondary-color); 
}

.hero-section .hero-image-wrapper{
    max-width: 500px;
    margin-right: 30px;
}

.accordion {
  background: var(--white-color);
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border-bottom: 10px solid var(--dark-color);
  text-align: center;
  outline: none;
  font-size: 15px;
  transition: 1.4s;
  font-size: 20px;
  letter-spacing: 2px;
}

.active, .accordion:hover {
  background-color: var(--secondary-color);
  color:var(--white-color);
}

.accordion:after {
  content: '\002B';
  color:black;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.9s ease-out;
  color:black;
  font-size: 20px;
  text-align: center;

}

.column{
    background: var(--white-color);
    color:#252525;
}

.column h2{
    margin-bottom: 14px;
}

.column p{
    margin-top: 10px;
    text-align: center;
    font-size: 20px;
}

.column hr{
    border: 3px solid var(--secondary-color);
}


.gallery-section .column{
    width:33.33%;
    padding:10px;
    float:left;
    margin-bottom: 30px;
}

.gallery-section .column img{
    width:100%;
    height:400px;
    object-fit: fill;
}

.gallery-section .row::after{
    display: table;
    clear:both;
    content: "";
}



@media screen and (max-width:900px)
{
    :root{
        --font-size-m:1rem;
        --font-size-l:1.3rem;
        --font-size-xl:1.5rem;
        --font-size-xxl:1.8rem;
    }

     body.show-mobile-menu header::before{
        content: "";
        position:fixed;
        left:0;
        top:0;
        height:100%;
        width:100%;
        backdrop-filter: blur(5px);
        background: rgba(0,0,0,0.2);

     }

     .line {
        width: 35px;
        height: 5px;
        background-color:var(--white-color);
        margin: 6px 0;
    }

    .navbar :where(#menu-close-button,#menu-open-button){
        font-size: 40px;
        display: block;
    }

    .navbar #menu-close-button{
        position: absolute;
        right:30px;
        top:30px;
    }

    .navbar #menu-open-button{
        color:var(--white-color);
    }

   

    .navbar .nav-menu{
        display: block;
        background:var(--white-color);
        position: fixed;
        left:-300px;
        top:0;
        width:300px;
        height:100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        transition: left 1.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu{
        left:0;
    }

    .navbar .nav-menu .nav-link{
        color:var(--dark-color);
        font-size: var(--font-size-l);
        display: block;
        margin-top: 17px;
    }

    .hero-section .section-content{
        flex-direction: column-reverse;
        justify-content: center;
        gap:50px;
        text-align: center;
        padding:30px 20px 20px;
    }

    .hero-section .hero-details :is(.subtitle,.description){
        max-width: 100%;
    }

    .hero-section .hero-image-wrapper{
        max-width: 270px;
        margin-right: 0;
    }

    .gallery-section .column{
        width:100%;
        
    }
}