@font-face {    
    src: url(https://fonts.googleapis.com/css2?family=Alata&display=swap);
    font-family:'Alata', sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    
}

body, html {
    font-family: 'Alata', sans-serif;
    background: #E8E8E7;  
}

.logo {
    flex: 1;
    display: flex;
}


.logo img {
    width: 250px;
}

nav .logo img {
    width: 250px;
}

nav {
    position: fixed;
    top:0;
    z-index: 9999;
    width: 100%;    
     background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(98,71,71,0.7));
    display: flex;
    align-items: center;      
    transition: all 0.4s ease;
        
}
nav.scrolled {
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(98,71,71,0.9)); /* less transparent */
    padding: 10px 20px; /* shrink effect */
}

nav a {
    color: #FFFFFF;
   
}

.menu {
    display: flex;
    align-items: center;
    padding: 15px 10px;
}

.menu li {
    padding: 15px 10px;
    font-size: 16px;
}

.toggle {
    font-size: 30px;
    display: none;
}


nav  li a {
    
    display:block;
    margin: 0 15px;
    margin-top: 5px;
    padding: 10px 20px;
    transition: 0.2s;
    border-radius: 30px;
    text-decoration: none;    
    font-weight: bold;
}

.navbar-action {    
    font-size: 15px;
    background-color: #FFFFFF;
    color: #463333;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    width: auto;
    margin-left: 100px;
  }

nav ul li a:hover {
    color: #806262;
}

.navbar-action:hover {
    background-color: #806262;
    color:#463333 ;
}

nav ul li a.active {
    color: #bdbdbd;
}

/*main section*/

.cover-smile img {
    position: relative;
    width: 100%;
    margin-top: 100px;
    height: 20vh; /* Make sure this is full screen height */
    align-items: stretch;
    align-self: stretch;
    display:block;
    }

.parent-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.office h2 {
    margin-top: 30px;
}
.office h1 {
    margin-bottom: 15px;
}

.separator {
    border-style: solid;
    border-width: 1.7px;
    border-color: #84817ab7;
    margin-top: 22px;
    margin-bottom: 22px;
    max-width: 100%;
}


.office li {
    display: block;
    position: relative;
    left: 80px;
    font-size: 1.4em;
    top: -60px;

    
}

.office ul {
    margin-bottom: 150px;
}

.office li img {
    width: 120px;
    position: relative;
    right: 112px;
    top: 64px;
    display: block;
    
    margin-bottom: 20px;
}

.platforms {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: -150px;
}

.platforms  img {
    display: block;
    margin: auto;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 20px;
    
}

.medals img {
    display: flex;
    margin: auto;
    width: 300px;
}


/*form*/

form {
    background: white;
    padding: 60px;
    width: 550px;
    height: 730px;
    max-width: calc(100%-60px);
    border-radius: 10px;
    position: relative;
    top: 10%;
}

.form-element {
    display:flex;
    flex-direction: column;
    margin-bottom: 30px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    background-color: #c0bdb838;
    border: 1px solid #ccc; /* Gray border */
    border-radius: 5px; /* Slightly rounded borders */
    padding: 10px; /* Padding inside the input fields */
    margin-bottom: -20px; /* Space between fields */
}

    .checkbox-container {
    display: flex;
    justify-content: space-between;
    color: #84817A;
    }
    
    /* Column container */
    .form-column {
    display: flex;
    flex-direction: column;
    }
    
    /* Individual checkbox group */
    .form-group {
    margin-bottom: 10px; /* Adjust as needed */
    }
    
    textarea {
    background-color: #c0bdb838;
    border: 1px solid #999999; /* Gray border */
    border-radius: 5px; /* Slightly rounded borders */
    padding: 10px; /* Padding inside the input fields */
    margin-bottom: -20px; /* Space between fields */
    outline: none;
    }

    /* Target by input type */
input[type="file"] {
    margin-top: 10px; /* Adjust the value as needed */
    margin-bottom: 10px;
    }

    .image {
    margin-bottom: 10px;
    }
    
    input:focus {
    border: 2px solid #999999;
    outline: none; 
    }
    
h2 {
    color: #DAB36A
}

h1 {
    color: #463333;
    }

    form button[type="submit"] {
    width: 50%;
    padding: 10px;
    background-color: #463333;
    color: white;
    border-radius: 5px;
    border: none;
    font-size: 20px;  
    display: block; /* Make the button a block-level element */
    margin: 0 auto; /* Auto margins on the side centers the button */
} 

form button[type="submit"]:hover {
  background-color: #46333386;
  transition: 0.2s;
}

.footer-container {
    background: linear-gradient(to right, #000000, #624747);
    color: white;
    font-size: 0.8em;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
    top: 80px;

   }

   .whole-thing {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Add some space between elements */
    width: 100%; 
    position: relative;
    justify-content: center;
    top: -20px;
  }

    .footer-section {
      position: relative;
      left: 200px;
      top: -35px;
      flex-basis: 5%; /* Adjust as necessary */
      min-width: 150px; /* Prevents the sections from becoming too narrow on small screens */
    }
  
    .footer-section h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      top: 70px;
      right: 70%;
      width: 100%;
       
    }
  
    .footer-links h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      left: 35%;
      top: 70px;
    }
  
    .footer-services h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      left: 70%;
      top: 70px;
    }
  
    .footer-contact h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      left: 150%;
      justify-content: center; /* Center the images within the container */
      top: 70px;
    }
  
     .footer-links a {
      position: relative;
      left: 35%;
      color: white;
      text-decoration: none;
      display: block; /* To list down links */
      margin-bottom: 5px;
      top: 70px;
     
    }
  
  .footer-section p {
      color: white;
      text-decoration: none;
      display: block; /* To list down links */
      margin-bottom: 5px;
      text-align: justify;
      position: relative;
      right: 70%;
      width: 100%;
      top: 90px;
  }
  
    .footer-section a {
      color: white;
      text-decoration: none;
      display: block; /* To list down links */
      margin-bottom: 5px;
      text-align: justify;
      top: 90px;
  }
  
  .footer-services a  {
    position: relative;
      left: 70%;
      color: white;
      text-decoration: none;
      display: block; /* To list down links */
      margin-bottom: 5px;
      text-align: left;
  }
  
  
    .footer-links a:hover, .footer-services a:hover {
      text-decoration: underline;
    }
  
    .logo-footer img {
      position: relative;
      align-items:left;
      left: 450px;
      top: 40px;
      max-width: 300px; /* Prevents the sections from becoming too narrow on small screens */
      
          }
     
    .contact-icons img {
     position: relative;
      right: 0px;
      top: 200px;
      gap: 10px; 
      width: 70px;
      
    }
   
    .footer-contact p {
      text-align: justify;
      margin-bottom: 20px;
      position: relative;
      left: 150%;
      justify-content: center
    }
  
    .credit {
        background: linear-gradient(to right, #000000, #2e2121);
        text-align: center;
        align-content: center;
        position: relative;
        width: 100%;
        height: 4vh;
        top: 50px;
      
    }

.credit p {
    color: white;
    opacity: 0.7;
}
  
    .designed {
    position: relative;
    justify-content: center;
    align-items: center;
    opacity: 0.7;    
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 0px
    }

@media screen and (max-width: 1248px){
    nav{
        display: block;
        position: relative;
        padding: 15px 20px;
     
    }

    .menu{
        margin-top: 15px;
        display: none;
    }

    .menu.active, .toggle {
        display: block;        
    }

    .toggle {
        position: absolute;
        top:15px;
        right: 20px;
    }

    .toggle:hover {
        background-color: #DAB36A;
        border-radius: 5px;
        transition: 0.5s;
    }

    .navbar-action {
        margin-top: 15px;
        flex: 1;
     
    }

    a.navbar-action {
       width:fit-content;
       right: 73px ;
       position: relative;
}

form {
    background: white;
    padding: 60px;
    width: 400px;
    height: 730px;
    max-width: calc(100%-60px);
    border-radius: 10px;
    position: relative;
    top: 5%;
}

.parent-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0px 30px 0px 30px;
}

.cover-smile img {
    position: relative;
    width: 100%;
    margin-top: 0px;
    height: 20vh; /* Make sure this is full screen height */
    align-items: stretch;
    align-self: stretch;
    display:block;
    }

.footer-container {
    background: linear-gradient(to right, #000000, #624747);
    color: white;
    font-size: 0.7em;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
    top: 70px;

   }

   .whole-thing {
    display: flex;
    flex-wrap: wrap;
    width: 100%; 
    position: relative;
    justify-content: left;
    top: -20px;
  }

    .footer-section {
      position: relative;
      top: -35px;
      
    }
  
    .footer-section h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      top: 70px;
      right: 90%;
      width: 100%;
       
    }
  
    .footer-links h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      left: -40%;
      top: 70px;
    }
  
    .footer-services h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      left: -30%;
      top: 70px;
    }
  
    .footer-contact h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      left: 0%;
      justify-content: center; /* Center the images within the container */
      top: 70px;
    }
  
     .footer-links a {
      position: relative;
      left: -40%;
      color: white;
      text-decoration: none;
      display: block; /* To list down links */
      margin-bottom: 5px;
      top: 90px;
    }
  
  .footer-section p {
      color: white;
      text-decoration: none;
      display: block; /* To list down links */
      margin-bottom: 5px;
      text-align: justify;
      position: relative;
      right: 90%;
      width: 100%;
      top: 90px;
  }
  
  .footer-services a  {
    position: relative;
      left: -30%;
      color: white;
      text-decoration: none;
      display: block; /* To list down links */
      margin-bottom: 5px;
      text-align: left;
  }
  
  
    .footer-links a:hover, .footer-services a:hover {
      text-decoration: underline;
    }
  
    .logo-footer img {
      position: relative;
      align-items:left;
      left: 125px;
      top: 40px;
      width: 220px; /* Prevents the sections from becoming too narrow on small screens */
      
          }
     
    .contact-icons img {
     position: relative;
      left: 620px;
      top: 50px;
      gap: 10px; 
      width: 70px;
      
    }
   
    .footer-contact p {
      text-align: justify;
      margin-bottom: 20px;
      position: relative;
      left: 0%;
      justify-content: center
    }
  
    .credit {
        background: linear-gradient(to right, #000000, #2e2121);
        text-align: center;
        align-content: center;
        position: relative;
        width: 100%;
        height: 4vh;
        top: 50px;
      
    }

.credit p {
    color: white;
    opacity: 0.7;
}
  
    .designed {
    position: relative;
    justify-content: center;
    align-items: center;
    opacity: 0.7;    
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 0px;
    }
}
@media screen and (max-width: 912px){
    
    form {
        background: white;
        padding: 30px;
        width: 350px;
        height: fit-content;
        height: 730px;
        border-radius: 10px;
        position: relative;
        top: 15%;
        font-size: 0.8em;
    }

    .office {
        font-size: 0.8em;
    }

    .office li img {
        width: 100px;
    }

    .platforms img {
        margin-left: 50px;
    }

    .medals {
        width: 120px;
        margin-left: 20px;
    }
    
    
    .footer-container {
        background: linear-gradient(to right, #000000, #624747);
        color: white;
        font-size: 0.7em;
        position: relative;
        width: 100%;
        height: auto;
        top: 70px;

       }

       .whole-thing {
        display: flex;
        flex-wrap: wrap;
        width: 100%; 
        position: relative;
        justify-content: left;
        top: -20px;
        left: -9%;
      }

      .footer-contact h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 0%;
        justify-content: center; /* Center the images within the container */
        top: 70px;
      }

      .footer-contact p {
        text-align: justify;
        margin-bottom: 20px;
        position: relative;
        left: 0%;
        justify-content: center
      }

      .footer-section h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        top: 70px;
        right: 50%;
        width: 100%;
      }
    
      .footer-section p {
        color: white;
        text-decoration: none;
        display: block; /* To list down links */
        margin-bottom: 5px;
        text-align: justify;
        position: relative;
        right: 50%;
        width: 100%;
        top: 90px;
    }

      .footer-links h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 0%;
        top: 70px;
      }

      .footer-links a {
        position: relative;
        left: 0%;
        color: white;
        text-decoration: none;
        display: block; /* To list down links */
        margin-bottom: 5px;
        top: 90px;
      }
    
      .footer-services h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 0%;
        top: 70px;
      }

      .footer-services a  {
        position: relative;
          left: 0%;
          color: white;
          text-decoration: none;
          display: block; /* To list down links */
          margin-bottom: 5px;
          text-align: left;
      }



    .logo-footer img {
        position: absolute;
        left: 680px;
        top: 150px;
        width: 150px; /* Prevents the sections from becoming too narrow on small screens */
        margin-bottom: 20px;
            }
       
      .contact-icons img {
       position: relative;
        left: 100px;
        top: 50px;
        gap: 10px; 
        width: 70px;
      }

      .credit {
        background: linear-gradient(to right, #000000, #2e2121);
        text-align: center;
        align-content: center;
        position: relative;
        width: 100%;
        height: 4vh;
        top: 50px;
        left: 9%;
    }
}
@media screen and (max-width: 770px) {



}
@media screen and (max-width: 549px) {
   
   .parent-container {
    display: flex;
    flex-direction: column-reverse;
   }

   form {
    background: white;
    padding: 30px;
    width: 440px;
    height: 600px;
    border-radius: 0px;
    position: relative;
    top: 15%;
    font-size: 0.9em;
    margin-left: -40px;
    
}
   
.office li {
    display: block;
    position: relative;
    left: 80px;
    font-size: 1.3em;
    top: -60px; 
    width: 50%;
}

.office ul {
    margin-bottom: 150px;
}

.office li img {
    width: 90px;
    position: relative;
    right: 110px;
    top: 64px;
    display: block;
    text-align: none;
    margin-bottom: 20px;
}

.platforms img {
    margin-left: 0px;
}
   
    .footer-container {
        background: linear-gradient(to right, #000000, #624747);
        color: white;
        font-size: 0.7em;
        position: relative;
        width: 100%;
        height: auto;
        top: 60px;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        

       }

       .whole-thing {
        display: flex;
        width: 100%; 
        position: relative;
        justify-content: left;
        left: -40%;
      }

      .footer-section {
        position: relative;
      }
    
      .footer-section h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        top: 70px;
        right: -10%;
        width: 100%;
         
      }
    
      .footer-links h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 30%;
        top: 70px;
      }
    
      .footer-services h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 10%;
        top: 90px;
      }
    
      .footer-contact h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 30%;
        justify-content: center; /* Center the images within the container */
        top: 90px;
      }
    
       .footer-links a {
        position: relative;
        left: 30%;
        color: white;
        text-decoration: none;
        display: block; /* To list down links */
        margin-bottom: 5px;
        top: 90px;
      }
    
    .footer-section p {
        color: white;
        text-decoration: none;
        display: block; /* To list down links */
        margin-bottom: 5px;
        text-align: justify;
        position: relative;
        right: -10%;
        width: 100%;
        top: 90px;
    }
    
    .footer-services a  {
      position: relative;
        left: 10%;
        top: 110px;
        color: white;
        text-decoration: none;
        display: block; /* To list down links */
        margin-bottom: 5px;
        text-align: left;
    }
    
    
    .footer-contact p {
        text-align: justify;
        margin-bottom: 20px;
        position: relative;
        left: 30%;
        justify-content: center;
        top: 110px;
        
      }

      .footer-links a:hover, .footer-services a:hover {
        text-decoration: underline;
      }
    
      .logo-footer img {
        position: relative;
        align-items:left;
        left: 180px;
        top: 70px;
        width: 180px;
            }
       
      .contact-icons img {
       position: relative;
        left: 150px;
        top: 120px;
        gap: 10px; 
        width: 45px;
        
      }

      .credit {
          background: linear-gradient(to right, #000000, #2e2121);
          text-align: center;
          align-content: center;
          position: relative;
          width: 100%;
          height: 4vh;
          top: 50px;
          left: 40%;
      }
      .designed {
        position: relative;
        justify-content: center;
        align-items: center;
        opacity: 0.7;    
        letter-spacing: 1px;
        font-weight: 400;
        margin: 0px 0px;
        }
}


@media screen and (max-width: 414px) {
    
    form {
      background: white;
      padding: 30px;
      width: 424px;
      height: 600px;
      border-radius: 0px;
      position: relative;
      top: 15%;
      margin-left: -40px;
      font-size: 0.9em;
    }
    
    .office {
        font-size: 0.9em;
        left: 0px;
    }

    .office li img {
        width: 90px;
    }

    .platforms img {
        margin-left: 0px;
    }

    .whole-thing {
        display: flex;
        width: 100%; 
        position: relative;
        justify-content: left;
        left: -45%;
      }

      .credit {
        background: linear-gradient(to right, #000000, #2e2121);
        text-align: center;
        align-content: center;
        position: relative;
        width: 100%;
        height: 4vh;
        top: 50px;
        left: 45%; 
    }

    .logo-footer img {
        position: relative;
        align-items:left;
        left: 180px;
        top: 70px;
        width: 180px;
            }
       
      .contact-icons img {
       position: relative;
        left: 170px;
        top: 120px;
        gap: 10px; 
        width: 35px;
      }
}

@media screen and (max-width: 390px){
    form {
      background: white;
      padding: 30px;
      width: 400px;
      height: 600px;
      border-radius: 0px;
      position: relative;
      top: 15%;
      font-size: 0.8em;
      margin-left: -40px;
      
    }
}

@media screen and (max-width: 375px) {

    form {
      background: white;
      padding: 30px;
      width: 385px;
      height: 600px;
      border-radius: 0px;
      position: relative;
      top: 15%;
      font-size: 0.9em;
      margin-left: -40px;
      font-size: 0.9em;
    }


    .separator {
        margin-right: 20px;
    }
    .office li {
        display: block;
        position: relative;
        left: 50px;
        font-size: 1.15em;
        top: -50px; 
    }
    
    .office ul {
        margin-bottom: 150px;
    }
    
    .office li img {
        width: 65px;
        position: relative;
        right: 70px;
        top: 50px;
        display: block;
        text-align: none;
        margin-bottom: 20px;
    }

    .platforms img {
        width: 50px;
    }

    .whole-thing {
        display: flex;
        width: 100%; 
        position: relative;
        justify-content: left;
        left: -54.5%;
      }

      .credit {
        background: linear-gradient(to right, #000000, #2e2121);
        text-align: center;
        align-content: center;
        position: relative;
        width: 100%;
        height: 6vh;
        top: 50px;
        left: 54.5%; 
    }

    .logo-footer img {
        position: relative;
        align-items:left;
        left: 180px;
        top: 70px;
        width: 180px;
            }
       
      .contact-icons img {
       position: relative;
        left: 350px;
        top: 0px;
        gap: 10px; 
        width: 35px;
      }
}

