*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    background-color: #000;
    background-image: url(images2/hero_main.jpg);
    background-size: cover;
    background-position: center;
}

li {
    list-style: none;

}

a {
    text-decoration: none;
    color: rgb(10, 70, 5);
    font-size: 1rem;

}

a:hover{
    color: rgb(162, 139, 8);
}
 /* HEADER */

 header {
    position: relative;
    padding: 0 2rem;
 }

 .navbar {
    width: 100%;
    height: 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
 }

 .navbar .logo{
   margin-top: 28px;

 }

 .navbar .links{
    display: flex;
    gap: 2rem;

 }

 .navbar .toggle_btn{
    color: rgb(4, 66, 31);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
 }

 .action_btn{
    background-color: rgb(1, 39, 18);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;

 }

 .action_btn:hover{
    scale: 1.5;
    color: azure;
 }

 .action-btn:active {
    scale: 0.95;
 }

/* DROPDOWN MENU */

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }

 .dropdown_menu.open{
    height: 240px;
 }

 .dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
 }

 .dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;

 }


/* HERO SECTION */

section#hero {
    height: calc(100vh - 60px); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
}

#hero {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#hero h1 {
    font-size: 70px;
    margin-bottom: 2rem;
}

#hero h3 {
    font-size: 40px;
    color: #a18902;
    margin-bottom: 2rem;
}

#hero a img{
 width: 300px;
 border-radius: 50%;
 margin-top: 20px;
}


section#about {
    height: calc(100vh - 60px); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #093504;
    margin-top: 100px;
} 




 /* RESPONSE DESIGN */

 @media(max-width: 992px) {
    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
      
    }
 }

 @media(max-width: 576px){
    .dropdown_menu {
        left: 2rem;
        width: unset;
 }
}