html{
    height: 100%;
}
body{
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    
    
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 5vh;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    background: hsl(0 0% 100%/0.1);
    backdrop-filter: blur(1rem);
    

           
}

.logo{
    color:rgb(56, 56, 56);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 100;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    
}

.logo img {
  height: 30px; /* Adjust based on the size of your logo */
  width: auto; /* Maintain aspect ratio */
  margin: 0; /* Adjust as needed */
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 30%;
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    color: rgb(56, 56, 56);
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
}

 .burger{
    display: none;
    cursor: pointer;
   
 }

.burger div{
    width: 25px;
    height: 3px;
    background-color:rgb(56, 56, 56);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width:1024px){
    .nav-links{
        width: 60%;
    }
}

@media screen and (max-width:768px){
    body{
        overflow-x: hidden;
    }
    
    .nav-links{
       position: absolute;
       right: 0px;
       height: 72vh;
       top: 8vh;
       display: flex;
       flex-direction: column;
       align-items: center;
       width: 50%;
       transform: translateX(100%);
       transition: transform 0.5s ease-in;
       background: hsl(0 0% 100%/0.8);
       backdrop-filter: blur(1rem);
    }
    .nav-links li{
        opacity: 0;
    }
    .burger{
        display: block;
    }
}

.nav-active{
    transform: translateX(0%);
}
@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }

}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2{
    opacity: 0;
}

.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}

header{
    width: 92%;
    margin: 0 auto;
    padding: 13px 0;
    position: absolute;
    top: 40px;
    left: 30px;
    right: 30px;
    border-radius: 150px;
    z-index: 2;
    box-shadow: 0 0 30px rgb(0 0 0 / 8%);
    background: hsl(0 0% 100%/0.1);
    backdrop-filter: blur(1rem);
  }

  .multiText{
    color: #383838;
    text-transform: capitalize;
}
p{
    display: block;
    width: 90%;
    font-size: 1.2em;
    color: #777;
    font-family: 'Roboto', sans-serif;
}






input{
    display: none;
}

.wrapper{
    margin: 150px auto;
    max-width: 1100px;
    position: relative;
    top: 150px;
    font-family: 'Roboto', sans-serif;
    
  }
  .wrapper section{
    display: flex;
    justify-content: center;
  }
  .wrapper .items{
    display: flex;
    max-width: 720px;
    width: 100%;
    justify-content: space-between;
  }
  .items span{
    padding: 7px 25px;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    color: #383838;
    border-radius: 50px;
    border: 0px solid #383838;
    transition: all 0.3s ease;
  }
  .items span.active,
  .items span:hover{
    color: #f2f3f4;
    background: #383838;
  }
  .gallery{
    display: flex;
    flex-wrap: wrap;
    margin-top: 150px;
  }
  .gallery .image{
    width: calc(100% / 4);
    padding: 7px;
  }
  .gallery .image span{
    display: flex;
    width: 100%;
    overflow: hidden;
  }
  .gallery .image img{
    width: 100%;
    vertical-align: middle;
    transition: all 0.3s ease;
  }
  .gallery .image:hover img{
    transform: scale(1.1);
  }
  .gallery .image video{
    width: 100%;
    vertical-align: middle;
    transition: all 0.3s ease;
  }
  .gallery .image:hover video{
    transform: scale(1.05);
  }
  .gallery .image.hide{
    display: none;
  }
  .gallery .image.show{
    animation: animate 0.4s ease;
  }
  @keyframes animate {
    0%{
      transform: scale(0.5);
    }
    100%{
      transform: scale(1);
    }
  }
  .preview-box{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    max-width: 700px;
    width: 100%;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    padding: 0 5px 5px 5px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    font-family: 'Roboto', sans-serif;
  }
  .preview-box.show{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease;
  }
  .preview-box .details{
    padding: 13px 15px 13px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .details .title{
    display: flex;
    font-size: 20px;
    font-weight: 100;
  }
  .details .title p{
    font-weight: 100;
    margin-left: 1px;
  }
  .details .icon{
    color: #383838;
    font-style: 15px;
    cursor: pointer;
  }
  .preview-box .image-box{
    width: 100%;
    display: flex;
    
  }
  .image-box img{
    width: 100%;
    border-radius: 0 0 3px 3px;
  }

  .image-box video{
    width: 100%;
    border-radius: 0 0 3px 3px;
  }

  .shadow{
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: none;
    background: rgba(0,0,0,0.4);
  }
  .shadow.show{
    display: block;
  }
  @media (max-width: 1000px) {
    .gallery .image{
      width: calc(100% / 3);
    }
  }
  @media (max-width: 800px) {
    .gallery .image{
      width: calc(100% / 2);
    }
  }
  @media (max-width: 700px) {
    .wrapper section .items{
      max-width: 600px;
    }
    section .items span{
      padding: 7px 15px;
    }
  }
  @media (max-width: 600px) {
    .wrapper{
      margin: 30px auto;
    }
    .wrapper section .items{
      flex-wrap: wrap;
      justify-content: center;
    }
    section .items span{
      margin: 5px;
    }
    .gallery .image{
      width: 100%;
    }
  }
  

.social {
    display: flex;
    justify-content: center;
    }

.social a{
    display: flex;
    background: #f3f5f8;
    height: 75px;
    width: 75px;
    margin: 0 15px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
                -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    transition: transform 0.5s;


}

.social a i{
    font-size: 25px;
    color: #777;
    transition: transform 0.5s;

}

.social a:hover{
    box-shadow: 
                inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
                -0.5px -0.5px 0px rgba(255, 255, 255, 1),
                0px 12px 10px -10px rgba(0, 0, 0, 0.05);
                 transform: translateY(5px);
                
}

a:hover .fa-facebook{
color: #3b5998;
}
a:hover .fa-whatsapp{
color: #4fce5d;
}

a:hover .fa-twitter{
color: #00acee;
}
a:hover .gloria-sky{
color: #f14843;
}
a:hover .fa-youtube{
color: #f00;
}

a:hover i{
transform: scale(0.90);
}

.social-button {
  display: inline-block;
  width: 40px;  /* Width of the button */
  height: 40px;  /* Height of the button */
  background-color: transparent;  /* Makes the background color transparent */
  border: none;  /* Removes the border */
  cursor: pointer;  /* Changes the cursor on hover */
}

#gloria-sky {
  background-image: url('Images/espiralgloria.png');
  background-size: cover;  /* Cover the entire area of the button */
}

#gloria-skyinsta {
  background-image: url('Images/espiralgloriainstagram.png');
  background-size: cover;  /* Cover the entire area of the button */
}

#sea-whispers {
  background-image: url('Images/logoseawhisper2png.png');
  background-size: cover;  /* Cover the entire area of the button */
}

#lumagia {
  background-image: url('Images/logoLumagia.png');
  background-size: cover;  /* Cover the entire area of the button */
}

#lumagiainsta {
  background-image: url('Images/logoLumagia2insta.png');
  background-size: cover;  /* Cover the entire area of the button */
}

#lumagiayoutube {
  background-image: url('Images/logoLumagia2youtube.png');
  background-size: cover;  /* Cover the entire area of the button */
}

#eye1 {
  background-image: url('Images/eye-2.png');
  background-size: cover;  /* Cover the entire area of the button */
}

#eye2 {
  background-image: url('Images/instarune.png');
  background-size: cover;  /* Cover the entire area of the button */
}

#eye3 {
  background-image: url('Images/youtrune.png');
  background-size: cover;  /* Cover the entire area of the button */
}




#lyanis {
  background-image: url('Images/lyanisrune.png');
  background-size: cover;  /* Cover the entire area of the button */
}



footer{

    
    margin-top: auto;

}

.footer{
    position: absolute;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    padding: 40px 0;
    background-color: #f2f3f4;
    background: hsl(0 0% 100%/0.1);
    backdrop-filter: blur(1rem);
    
    
}

.footer .social{
    text-align: center;
    padding-bottom: 25px;

}

.footer .copyright{
    margin-top: 10px;
    text-align: center;
    font-size: 12pt;
    color: #383838;
}

.description{
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 12pt;
  text-align: left;
  color: #383838;
}

.description h2{
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 18pt;
  text-align: left;
}



.about {
  box-sizing: border-box;
  padding: 20px 0;
  text-align: justify;
  font-weight: 100;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  margin: 2em auto; /* Adjusted to use 'em' for responsive spacing */
  width: 80%; /* Adjusted for better responsiveness, you can also use media queries to change this value on different screen sizes */
}


.fotobio {
  width: auto; /* Adjust this to the desired width of the container, or use 'auto' if it should fill its parent container */
}

.fotobio_image {
  width: 70%; /* Makes the image responsive and scales to the width of its container */
  height: auto; /* Maintains the aspect ratio of the image */
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.5rem; /* Ensure space between fields */
  border: 1px solid #ddd;
  border-radius: 4px;
}

button[type="submit"] {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

