@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Forum&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sedan+SC&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}




@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  font-family: Poppins, sans-serif;
  background-color: #fafafa;
  overflow-x: hidden;
  animation: fadeInPage 1s ease-in-out;
}

.container {
  width: 100%;
  background-color: #fff;
}

/* ========== NAVIGATION ========== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

.logo h4 {
  font-size: 1rem;
  font-weight: normal;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle::before {
  content: '\2630';
  display: inline-block;
  transition: transform 0.3s ease;
}

.menu-toggle.active::before {
  content: '\2715';
}
.links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.links a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  font-size: 0.95rem;
}

.links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

.links a:hover::after {
  width: 100%;
  left: 0;
}

.social-media-links {
  display: flex;
  gap: 1rem;
}

.social-media-links a i {
  font-size: 1.5rem;
  color: white;
  transition: color 0.3s ease;
}

.social-media-links a i:hover {
  color: #ccc;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opacity-box {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
}

#title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.button-1-cover {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.button-1-hero-picture {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.button-1-hero-picture:hover {
  background: white;
  color: black;
}

/* ========== SECTION STYLES ========== */
.hunting-page,
.shooting-page {
  padding: 4rem 10%;
  text-align: center;
  background: #f6f6f6;
}

.hunting-page h2,
.shooting-page h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.hunting-page p,
.shooting-page p {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.hunting-page img,
.shooting-page img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ========== GALLERY SECTION ========== */
.clothing-gallery {
  padding: 4rem 10%;
  background-color: #f6f6f6;
  text-align: center;
}

.clothing-gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover img {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.item-description {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
  background-color: #2e2e2e;
  color: white;
  padding: 3rem 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 10%;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-logo h1 {
  font-size: 1.8rem;
}

.footer-description,
.footer-links a,
.footer-right p {
  color: #bbb;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-media {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer-social-media .social-icon {
  color: #bbb;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social-media .social-icon:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #bbb;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  #title {
    font-size: 2rem;
  }

  .button-1-hero-picture {
    padding: 10px 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .links,
  .social-media-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background: #000;
    padding: 1rem 0;
    text-align: center;
  }

  .links.active,
  .social-media-links.active {
    display: flex;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    height: auto;
  }

  .image-container {
    height: 70vh;
  }

  #title {
    font-size: 1.6rem;
    padding: 0 15px;
  }

  .button-1-cover {
    top: 75%;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  #title {
    font-size: 1.4rem;
  }

  .button-1-hero-picture {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  .gallery-item img {
    height: 220px;
  }
}


/*pasting code*/

/* === CONTINUATION: IMPROVED MOBILE HERO + FOOTER + HAMBURGER MENU === */

/* --- Mobile Hamburger Menu --- */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .links,
  .social-media-links {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    background: #000;
    padding: 0.8rem 0;
    width: 100%;
    text-align: center;
    animation: dropdown 0.3s ease-in-out;
  }

  .links.active,
  .social-media-links.active {
    display: flex;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }
}

@keyframes dropdown {
  from {
    opacity: 0;
    transform: scaleY(0.95);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* --- Hero Section (Improved for all screens) --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opacity-box {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
}

#title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
  width: 90%;
}

.button-1-cover {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.button-1-hero-picture {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 1rem;
}

.button-1-hero-picture:hover {
  background: white;
  color: black;
}

@media screen and (max-width: 768px) {
  .hero {
    height: auto;
    padding: 2rem 0;
  }

  .image-container {
    height: auto;
    min-height: 60vh;
  }

  #title {
    font-size: 1.6rem;
    top: 40%;
  }

  .button-1-cover {
    top: 65%;
  }

  .button-1-hero-picture {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

@media screen and (max-width: 480px) {
  #title {
    font-size: 1.3rem;
  }

  .button-1-hero-picture {
    font-size: 0.85rem;
    padding: 8px 20px;
  }
}

/* --- Footer Better Mobile Layout --- */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center;
  }

  .footer-logo h1 {
    font-size: 1.5rem;
  }
}

/* === JS for hamburger toggle === */
/* Add this script to your HTML body (end of file):
<script>
  const toggle = document.querySelector('.menu-toggle');
  const links = document.querySelector('.links');
  const socials = document.querySelector('.social-media-links');

  toggle.addEventListener('click', () => {
    links.classList.toggle('active');
    socials.classList.toggle('active');
  });
</script>
*/




@keyframes dropdownOpen {
  0% {
    opacity: 0;
    transform: scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes dropdownClose {
  0% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(0.95);
  }
}
