html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #000000; 
  font-family: "Gowun Dodum", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}


nav {
  position: fixed;
  top: 0;
  left: 0; 
  width: 100%; 
  height: 65px;
  padding: 1.5rem 3rem;
  background-color: rgba(21, 21, 21, 1);
  display: flex;
  justify-content: space-between;  
  align-items: center; 
  width: 100%;
  z-index: 10;
}
  

  .logo-link {
    position: relative;         
    width: 50px;                
    height: 50px;               
    border-radius: 50%;         
    background-color: #ffffff;  
    transition: background-color 0.3s, box-shadow 0.3s;  
    overflow: hidden;          
  }
  
 
  .logo-link:hover {
    background-color: #efefef; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);  
  }
  

  .nav-logo {
    position: absolute;   
    top: 50%;              
    left: 50%;            
    transform: translate(-50%, -50%); 
    width: 60px;           
    height: 60px;         
    object-fit: contain;  
  }
  
  nav a {
    font-weight: 200;
    text-decoration: none;
    color: #efefef;
    font-size: 1.33rem;
    padding: 0.5rem 1rem;
  }
  
  nav a:hover {
    color: #aacc83;
  }
  
  
 
  .hamburger {
    display: none; 
    position: absolute;
    top: 1rem;  
    right: 3rem; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }
  
  .bar {
    width: 30px;
    height: 4px;
    background-color: #efefef;
    border-radius: 5px;
  }
  


.contact-container {
    display: flex;
    flex-wrap: wrap; 
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #000000;
    padding: 50px;
    border-radius: 8px;
    color: #fff;
}

a {
  color: rgb(255, 255, 255); /* Change to your desired color */
}

.contact-info {
    flex: 1; 
    padding: 20px;
    margin-bottom: 20px;
}

.contact-info h2 {
    margin-bottom: 10px;
}

.socials {
    padding-top: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex: 1; 
}

.socials img {
    width: 75x;
    height: 75px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.socials a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
    filter: brightness(1.2);
}

.socials a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

h2 {
    margin-bottom: 10px;
}

/* Footer Style */
footer {
    background: rgb(0, 0, 0);
    text-align: center;
    padding: 2em;
    position: relative;
}

.pflip {
    color: #efefef;
}

.hilight {
    color: rgb(213, 206, 187);
}

footer a {
    color: rgb(213, 206, 187);
    font-weight: 600;
    text-decoration: none;
}

/* Media Queries */
@media only screen and (min-width: 768px) {
    nav {
      justify-content: space-between;
    }
  
    nav a {
      font-size: 1.5rem;
    }
  
    .hamburger {
      display: none; 
    }
  
    .nav-logo {
      margin-right: 40px; 
    }
  
    .nav-links {
      display: flex;
      justify-content: space-evenly; 
      width: 100%;
    }
  }

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        justify-content: space-between;
      }
    
      .hamburger {
        display: flex;
      }
    
      .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        right: 0;
        background-color: rgba(21, 21, 21, 1);
        width: 100%;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
      }
    
    
      .nav-links.active {
        display: flex;
      }
    

      .nav-links a {
        font-size: 1.5rem;
        padding: 1rem 0;
      }

      .contact-container {
        flex-direction: column;
        align-items: center; 
        padding: 20px; 
      }
      
      .contact-info {
        flex: 0 0 100%; 
        padding: 20px 0;
        text-align: center; 
        margin-bottom: 20px;
      }

    .socials {
        flex: 0 0 100%; 
        justify-content: center; 
        gap: 1rem;    
        padding-top: 20px;
     }


    .socials a {
        display: block;
        width: 75px; 
        margin: 5px auto; 
     }
    }
    

@media (max-width: 480px) {
    nav {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
    }

    .navbar-menu.active {
        display: block;
    }

    .container {
        padding: 1rem;
    }

    .about-section {
        font-size: 1.2rem;
    }

    .icon-grid {
        grid-template-columns: 1fr;
    }

    .slider {
        padding-bottom: 20px;
    }

    .boxes {
        height: 250px;
        width: 250px;
    }
}
