
body {
  background-color: #FFEBC7; 
  margin: 0;
  font-family: sans-serif;
}



header {
  position: relative;
  background-color: #91CFF7;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between; 
}

/* Logo */
header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  width: 80px;
  height: 100px;
  margin-right: 10px;
}


header .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Potta One' ;
  font-size: 4.5rem; 
  color: black;
}


.dropdown {
  position: relative;
}

.dropdown button {
  background-color: #91CFF7;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.dropdown button img {
  width: 32px;
  height: auto;
}

.dropdown .content {
  position: absolute;
  right: 0;
  top: 50px;
  width: 200px;
  background-color: #F1B945;
  border-radius: 10px;
  outline: 3px solid black; 
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  font-family: "Edu AU VIC WA NT Hand";
  transition: max-height 0.4s ease, opacity 0.3s ease;
  z-index: 100;
}

.dropdown:hover .content {
  opacity: 1;
  max-height: 600px;
}

.dropdown .content a {
  display: block;
  font-size: 18px;
  color: black;
  text-decoration: none;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.dropdown .content a:hover {
  color: yellow;
  outline: 2px black;
}




.node{
  position: absolute;
  width: 100px;
  height: 100px;
  cursor: pointer;
}

.flag {
  position: relative;
  display: block;
  margin: 20px auto;
  width: 150px;     
  height: auto;
}

.circle{
  position: absolute;
  width: 150%;
  height: 50%;
  background: yellow;
  border: 3px solid black;

  border-radius: 50%;
  transition: background 0.3s;

  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}


.icon{
  position: absolute;
  width: 100%;
  left: 0%;
  top: -20%;
  transition: transform 0.3s;
}


.node:hover .circle{
  background: red;
}

.node:hover .icon{
  transform: scale(1.3);
}



.half {
  position: absolute;
  width: 35%;   
  height: 40%;
  opacity: 1;   
  pointer-events: none;
  transition: transform 0.3s ease;
}

.trail{
  position: absolute;
  width: 60%;    
  height: 70%;
  opacity: 1;   
  pointer-events: none;
  transition: transform 0.3s ease;
}

.flip{
  transform: scaleX(-1);
  }

.about_me_section {
  position: absolute;
  top: 510%;    
  left: 0;
  width: 100%;    
  background-color: #F1B945;
  padding: 5vw 10%; 
  padding-bottom:50vw
}
  
.about_me_title {
  position: absolute;
  left: 10%;
  top: 510%;
  transform:translate(25%,0%);
  font-family: 'Potta One';
  font-size: 5vw;
  color: black;
}
.about_me_subtitle{
    position: absolute;
  left: 6%;
  top: 510%;
  transform:translate(0,270%);
  font-family: 'Mogra';
  font-size: 3vw;
  color: black;
  }
  
.about_me_img {
  position: absolute;
  width: 40%;
  height: auto;

  left: 60%;  
  top: 500%;  

  transform: translate(0%, 100px);
}

.about_me_text{
  position: absolute;
  left: 5%;
  right: 45%;
  top: 510%;
  transform: translate(0,37%);
  font-family: "Edu AU VIC WA NT Hand";
  font-size: 1.5vw;
  color: black;
}

.gallery_button {
  position: absolute;
  width: 15vw;
  height: 5vw;
  left: 50%;
  top: 515%;
  transform: translate(60%, 700%); 
  background-color: yellow;
  border: 3px solid black;
  border-radius: 20px;
  font-family: "Mogra";
  font-size: 2vw;
  font-weight: bold;
  display: flex;           
  justify-content: center;   
  align-items: center;     
  cursor: pointer;
  transition: background 0.3s;
}


.gallery_button:hover {
  background: red;
}

html {
  scroll-behavior: smooth;
}
.footer_return{
  position: absolute;
  right: 50px;
  bottom: 40px;

  width: 80px;
  height: 80px;
}
.footer{
  position: absolute;
  top: 510%;
  left: 0;
  width: 100%;
  transform: translate(0,47vw);

  padding: 2vw 10%;
  background: #91CFF7;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer_column{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footerh2{
  font-family: "Mogra";
  font-size: 2rem;
  margin-bottom: 10px;
}

.footertext{
  font-family:"Edu AU VIC WA NT Hand";
  font-size: 1.5rem;
}

.returnbutton{
  position: absolute;
  width: 100%;
  height: 100%;
  background: yellow;
  border: 3px solid black;
  border-radius: 50%;
  transition: background 0.3s;

  bottom: 0;
  left: 50%;
  transform: translate(-50%,-20%);
}

.footer_return:hover .returnbutton{
  background: red;

}

.social_icons{
  display: flex;
  gap: 20px;
}

.social_icons img{
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
  cursor: pointer;
}

.social_icons img:hover{
  transform: scale(1.2);
}



/* Responsive */
@media (max-width: 740px){
  
header .logo img {
  width: 58px;
  height: 74px;
  margin-right: 10px;
}
  header .title {
    font-size: 8vw;
    left: 52.5%;
  }
  header{
    width: 100%;
    
  }
  body {
    width:100%;
    }
    
  .node{
  position: absolute;
  width: 70px;
  height: 70px;
  cursor: pointer;
}

.flag{
  width: 150px;
  height: 150px;  
  
  }


  .dropdown .content a {
    font-size: 16px;
  }
  
  
.orange{
  position: absolute;
  top: 510%; 
  left: 0;
  width: 100%;
  height: 1000px;
  background-color: #F1B945;
  z-index:0;
}  

.about_me_title {
  position: absolute;
  left: 50%;
  top: 510%;
  transform:translate(-50%,0%);
  font-family: 'Potta One';
  font-size: 8vw; 
  color: black;
}

.about_me_img {
  position: absolute;
  width: 100%;
  height: auto;

  left: 50%;  
  top: 510%;    

  transform: translate(-48%, 30%);
}

.about_me_subtitle{
  position: absolute;
  top: 510%;
  transform:translate(0%,270%);
  font-family: 'Mogra';
  font-size: 6.5vw;
  color: black;
  }

.about_me_text {
  position: absolute;
  top: 510%;     
  margin: 0 auto;   
  width: 90%;  
  
  transform: translate(0,90%);
  
  font-size: 4.5vw;  
  color: black;
  text-align: center; 
  line-height: 1.5;
}

.gallery_button{
  position: absolute;
  width: 70vw;   
  height: 25vw;
  left: 50%;
  top: 510%;
  transform: translate(-50%, 950%);
  font-size: 5vw;
}

  .footer {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    top: 500%;
    transform: translate(0%, 290vw);
    align-items: center; 
    padding-bottom: 80px;
  }


  .social_icons {
    justify-content: center;
    align-items: center;
  }


.footer_return {
  position: absolute;
  left: 50%;      
  bottom: 5px;    
  width: 80px;
  height: 80px;
  transform: translateX(-50%); 
}


.about_me_section {
  position: absolute; 
  top: 510%;       
  left: 0;
  width: 100%;     
  background-color: #F1B945; 
  padding: 5vw 10%; 
  padding-bottom:300vw
}

}
