@import url('https://fonts.googleapis.com/css2?family=Asimovian&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2&display=swap');


* {
    font-family: Asimovian, Arial, sans-serif;
    box-sizing: border-box;
}
:root {
    --main-bg: white;
}

.colorText {
  color:   rgb(212, 128, 18);
}

.emphasis {
font-size: 2rem;
font-weight: bolder;
}

/*---- INITIAL VALUES----*/
body {
    background-color: rgb(252, 230, 202);
    margin: 0 10%;
    font-size: 15px;
    font-weight: 600;
}

section {
    border: 0.22rem solid azure;
    padding: 2rem;
    background-color: rgb(247, 238, 200);
    box-shadow: 0.25rem 0.33rem 0.33rem 0.2rem grey;
    margin-top: 3rem;
}

h1 {
    font-size: 3rem;
    color: rgb(46, 10, 79);
    padding-right: 2rem;
    
}


h3 {
    font-size: 1.4rem;
    color: brown;
    padding-right: 2rem;
    margin-bottom: 4rem;
}

h6 {
    font-size: 1rem;
    color: rgb(46, 10, 79);
    padding-right: 2rem;
    margin-bottom: auto;
}

p {
     font-family: 'Exo 2', Arial, sans-serif;  
    font-size: 1.1rem;
    color: rgb(4, 39, 27);
    margin-top: 0;
    padding-right: 2rem;
  }

/*----CONTAINER----*/

.container {
    display: flex;
    background-color: rgb(247, 238, 200);
}


/*----HEADER----*/
#header{
    display: grid;
    margin: 10px 0;
    width: 100%;
   }

#hero_img{
    width: 100%;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    margin: auto;
}

/*----NAVIGATION BAR----*/

#navbar {
  background-color: rgb(104, 63, 63);
  overflow: hidden;
}

/* Horizontal list items */
#navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Float list items left */
#navbar li {
  float: left;
  position: relative; /* required for dropdown */
}

/* Navbar links */
#navbar li a, .dropbtn {
  display: block;
  color: rgb(252, 230, 202);
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

/* Hover effect for links */
#navbar li a:hover, .dropdown:hover .dropbtn {
  background-color: rgb(212, 128, 18);
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(252, 230, 202);
  min-width: 160px;
  z-index: 1;
}

.homeicon {
 width: 20px;
 height: auto;
 margin-right: 8px;
 vertical-align: middle;
}

/*----ABOUT----*/

.about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-header {
  position: relative;
  margin-bottom: 2rem;
}

.about-header h1 {
  margin: 0;
}

.title-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.logogif {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: auto;
}

.about_text{
    margin-top: 0;
}


.IconHeadline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.beeIcon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: -3%;
} 

.final-paragraph {
  margin-top: 2.5rem; /* Adjust spacing as needed */
}

@media (max-width: 600px) {
  .logogif {
    position: static;
    display: block;
    margin: 1rem auto 0;
  }

  .about-header {
    padding-right: 0;
    text-align: center;
  }
}


/*----FOOTER----*/
footer {
    background-color: rgb(104, 63, 63);
    margin-top: 5rem;
    height: 1.75rem;
    position: absolute;
    width: 100%;
    left: 0;
}

/*----SCROLL UP BEE----*/

.iconbutton{
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 3%;
  bottom: 9%;
  cursor: pointer;
  }

footer p { color: azure; position: absolute; margin-top: 0.1rem; }
