*{box-sizing:border-box;margin:0;padding:0}

body, html{
height: 100vh;
width: 100%;
margin: 0;
font-size: 1em;
font-weight: 300;
font-family: 'Lato',  sans-serif;
color:white;
/* background-color:rgb(48, 48, 48); */
background-color: #9dae11;
line-height: 2em;
}

h2{
font-size: 1.8vw;
line-height: 1.8vh;
font-weight: 500;
color: rgb(48, 48, 48);
}
h3 {
font-size: 1.6em;
font-weight: 500;
color:rgb(48, 48, 48);

}
h4{
font-size: 1.6em;
font-weight: 500;
color: rgb(48, 48, 48);
}
h5{
font-size: 2.5vh;
line-height: 3vh;
font-weight: 500;
color: rgb(48, 48, 48);
}
p{
font-size: 1em;
}
a {
color: white;
}
img{
  width: 100%;
  height:auto;
}
.wrapper{
display: grid;
grid-template-columns:repeat(auto-fit,minmax(100px,1fr));
grid-template-areas:
/* STACKED **/ 
"header"
"canvas"
"info-1"
"faq"
"gallery"
;
}
/*MOBILE END */



/*LARGER SCREENS ONLY*/
@media  only screen and (min-width: 1281px){
.wrapper{
display: grid;
grid-template-columns:repeat(auto-fit,minmax(100px,1fr));
grid-template-areas:
" header     header           header        header "
"  canvas   canvas   canvas    canvas  "
"  .      info-1   info-1   . "
" . faq  faq  . "
" gallery  gallery   gallery  gallery "
;
}
}



.canvas{
grid-area: canvas;
background-image: url(/images/new/dullstroom-fishing.webp);
background-repeat: no-repeat;
background-position: center center;
background-size:cover; 
min-height: 600px;
}

.canvas h1 {
font-size: 2vw;
font-weight: 700;
line-height: 1.2;
margin-top: 10%;
text-align: center;
}
.canvas h2{
color: #fff;
line-height: 1.6em;
font-size: 1.4em;
font-weight: 700;
line-height: 1.2;
margin-top: 5%;
text-align: center;
}
.canvas h3{
  color: white;
  font-size: 1.4em;
}
.canvas li{
    color: white;
  font-size: 1.4em;
  padding-top: 20px;
}
.canvas ul{
  padding-left: 40px;
}


.info-1{
grid-area: info-1;
margin-top: 60px;

}
.btn {
display: inline-block;
padding: 1em 2em; /* scales with font size */
font-size: 1rem; /* base size, will scale */
font-weight: 600;
text-align: center;
background-color:rgb(76, 79, 75);
color:  white;
font-size: 1em;
text-decoration: none;
cursor: pointer;
border-radius: 8px;
margin: 10px;
cursor: pointer;
transition: all 0.3s ease;
width: auto; /* adapts to content */
max-width: 90%; /* keeps button from overflowing */

&:hover {
box-shadow: 0 0 30px grey;
padding: 10px 30px;
font-size: 1.1em;
}

}

/* MID GALLERY */
.image-gallery2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center images, optional */
  gap: 16px; /* Space between images */
  padding: 10px;
}

.image-gallery2 img {
  width: 100%;
  max-width: 250px; /* Control individual image size */
  height: auto;
  object-fit: cover;
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.image-gallery2 img:hover {
  transform: scale(3.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* FLASSHING BUTTON */
.center-container {
  text-align: center;
  margin: 40px 0;
}

.flash-button {
  background-color: #0073e6;
  color: white;
  font-size: 1.2em;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 rgba(0, 115, 230, 0.7);
  transition: all 0.3s ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 115, 230, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 115, 230, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 115, 230, 0);
  }
}

.flash-button:hover {
  background-color: #005bb5;
}



/* ENDS */
/* WHATSAPP */
.whatsapp{
position: fixed;
width: 40px;
bottom: 20px;
right: 20px;
z-index: 999;
cursor: pointer;
transition: all 0.3s ease;
border-radius: 50%;
}
.whatsapp-float:hover {
transform: scale(1.1);
}


/* ENDS */

.gallery{
 grid-area: gallery;
}

.logo{
 width: 300px;
 height: auto;
 margin-left: 300px;
}

.img-g{
  width: 500px;
  height: auto;
}

/* GALLERY CODE */
.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 1rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.image-container {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: scale(1.03);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* PRICING CARD */

    .pricing-container {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .pricing-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.05);
      padding: 30px;
      width: 400px;
      max-width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }

    .pricing-card h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: #111827;
    }

    .pricing-card .price {
      font-size: 32px;
      font-weight: bold;
      color: #1475d5;
      margin: 10px 0;
    }

    .pricing-card ul {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      color: #6b7280;
    }

    .pricing-card ul li {
      margin-bottom: 10px;
    }

    .pricing-card button {
      background-color: #10b981;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .pricing-card button:hover {
      background-color: #059669;
    }

    @media (max-width: 700px) {
      .pricing-container {
        flex-direction: column;
        align-items: center;
      }
    }
    /* ENDS */

header{
  grid-area: header;
  min-height: 90px;
}


.faq{
  grid-area: faq;
  margin-bottom: 60px;
}


.faq-section {
  padding: 40px 20px;
  background-color: #f8f9fa;
  border-radius: 12px;
  margin: 40px 0;
}

.faq-section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 1.2em;
  color: #2c3e50;
}

.faq-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
}
/*NAVIGATION*/


/* Base styles */
.navbar {
  background-color: #303030;
  color: white;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  z-index: 999;
  max-height: 90px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
}

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px 0;
  transition: 0.4s;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 15px;
}

/* Mobile styles */
#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #303030;
    width: 100%;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  #menu-toggle:checked ~ .nav-links {
    max-height: 1000px;
  }
  .nav-links li {
    padding: 15px;
    text-align: center;
  }

  .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 12px 16px;
  display: block; /* especially important on mobile */
}


}






/* ENDS */


.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: rgb(76, 79, 75); /* Your button color */
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.5em;
  cursor: pointer;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
  transform: scale(1.1);
  background-color: rgb(96, 99, 95); /* Slight hover effect */
}


/* MEDIA QUEIES */

/* Extra Small Devices (phones, 0px – 479px) */
@media only screen and (max-width: 479px) {

  .canvas{
grid-area: canvas;
background-image: url(../mobile-load-dullstroom.webp);
background-repeat: no-repeat;
background-position: center center;
background-size:cover; 
min-height: 600px;
}
.canvas h1 {
font-size: 6vw !important;
font-weight: 700;
line-height: 1.2;
margin-top: 40%;
text-align: center;
}
.canvas h2{
color: #fff;
line-height: 1.6em;
font-size: 1.4em;
font-weight: 700;
line-height: 1.7;
margin-top: 5%;
text-align: center;
}

  body {
    font-size: 0.9em;
  }
  h2, h3, h4, h5 {
    font-size: 1.6em;
    line-height: 1.2em;
  }

  .logo {
    width: 180px;
    margin-left: 20px;
  }
  .image-row {
    grid-template-columns: 1fr;
  }
  .info-1{
    padding: 40px;
  }
  .nav {
  background-color: rgb(48, 48, 48); /* dark grey */
}
   /* Optional: Adjust font size for smaller screens */
    @media (max-width: 600px) {
      .btn {
        font-size: 0.9rem;
        padding: 0.8em 1.5em;
      }
    }

    @media (min-width: 1200px) {
      .btn {
        font-size: 1.2rem;
        padding: 1.2em 2.5em;
      }
    }

}

/* Small Devices (portrait phones, 480px – 767px) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  body {
    font-size: 1em;
  }
  .canvas h1 {
    font-size: 5vw;
  }
  .logo {
    width: 220px;
    margin-left: 20px;
  }
  .image-row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
   .info-1{
    padding: 40px;
  }
    .nav {
  background-color: rgb(48, 48, 48); /* dark grey */
}
}

/* Medium Devices (tablets, 768px – 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .canvas h1 {
    font-size: 4vw;
  }
  .logo {
    width: 250px;
    margin-left: 40px;
  }
  .image-row {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .btn {
    font-size: 1em;
  }
   .info-1{
    padding: 40px;
  }
    .nav {
  background-color: rgb(48, 48, 48); /* dark grey */
}
}




/* Large Devices (laptops/desktops, 1025px – 1280px) */
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  .canvas h1 {
    font-size: 3.2vw;
  }
  .logo {
    width: 280px;
    margin-left: 60px;
  }
   .info-1{
    padding: 40px;
  }
    .nav {
  background-color: rgb(48, 48, 48); /* dark grey */
}
}

/* Extra Large Devices (desktops >1280px) */
@media only screen and (min-width: 1281px) {
  .canvas h1 {
    font-size: 3vw;
  }
  .logo {
    width: 300px;
    margin-left: 100px;
  }
   .info-1{
    padding: 40px;
  }
}







