* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
    outline-color: transparent;
    /* background: #111111; */
}

/* Scrollbar */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background: #606060;
}

::-webkit-scrollbar-track {
    background: #222;
}

/* ::-webkit-scrollbar-thumb:hover {
      background: #000; 
    } */

/* Navbar */

header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 120px;
    transition: 0.5s ease;
    -webkit-transition: 0.3s ease;
  }
  
  header.sticky {
    position: fixed;
    background: #1b1b1bf4;
    height: 80px;
  }
  
  header .brand {
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  header .nav {
    position: relative;
  }
  
  header .nav .nav-items a {
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
  
  }
  
  header .nav .nav-items a:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    margin-bottom: -5px;
  }
  
  header .nav .nav-items a:hover:before {
    width: 100%;
  }
section {
    padding: 0 200px;
}

/* Responsiveness for navbar */

@media (max-width: 1040px) {
    header {
        padding: 12px 20px;
      }
    
      section {
        padding: 0 20px;
      }
    
      .home .media-icons {
        right: 15px;
      }
    
      header .nav {
        display: none;
      }
    
      header .nav.active {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1, 1, 1, 0.5);
      }
    
      header .nav .nav-items a {
        color: #222;
        font-size: 1.2em;
        margin: 20px;
      }
    
      header .nav .nav-items a::before {
        background: #222;
        height: 5px;
      }
    
      header .nav.active .nav-items {
        background: #fff;
        width: 600px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgba(1 1 1 /20%);
      }
    
      .menu-btn {
        background: url(../images/menu.png) no-repeat;
        background-size: 30px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
        -webkit-transition: 0.3s ease;
      }
    
      .menu-btn.active {
        z-index: 999;
        background: url(../images/close.png) no-repeat;
        background-size: 25px;
        background-position: center;
        transition: 0.3s ease;
        -webkit-transition: 0.3s ease;
      }    
}


/* Gallery */
.gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 125px 20px 50px 20px;
    background-color: #111;
}

.gallery-item {
    text-align: left;
    width: 100%;
    max-width: 1200px;
}

.gallery-item h3 {
    margin: 0;
    color: orange;
    font-size: 25px;
    text-transform: lowercase;
    margin-bottom: 5px;
}

.gallery-item .photo {
    background-color: #a87000;
    width: 100%;
    height: 100%; /* Responsive height based on viewport width */
    max-height: 550px; /* Optional maximum height for larger screens */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
}

.gallery-item .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-item .photo {
        width: 100%;
        height: 50vw; /* Adjust height for smaller screens */
    }

    .gallery-item h3 {
    font-size: 18px;
}
}


/* Footer */

footer {
    background-color: #111;
    border-top: 3px slid #d09852;
}

.footerContainer {
    width: 100%;
    padding: 10px 30px 20px;
}

.footer-icons {
    display: flex;
    justify-content: center;
}

.footer-icons a {
    text-decoration: none;
    padding: 10px;
    /* background-color: white; */
    /* color: #fff; */
    margin: 10px;
    border-radius: 50%;
}

.footer-icons a i {
    font-size: 1.6em;
    color: rgb(255, 255, 255);
    opacity: 0, 9;
}

/* Hover affect on social media icon */

.footer-icons a:hover i {
    color: rgb(163, 163, 163);
    transition: 0.5s;
}

.footerNav {
    margin: 30px 0;
}

.footerNav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    align-items: center;
}

.footerNav ul li a {
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}

.footerNav ul li a:hover {
    opacity: 1;
}

.footerBottom {
    background-color: #000;
    padding: 20px;
    text-align: center;
}

.footerBottom p {
    color: white;
}

.designer {
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}

@media (max-width: 700px) {
    .footerNav ul {
        flex-direction: column;
    }

    .footerNav ul li {
        width: 100%;
        text-align: center;
        margin: 10px;
    }

    .footer-icons a {
        padding: 8px;
        margin: 4px;
    }
}