* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  body{
    background-color: #d4eeff;
  }

  .border {
    border: 1px solid black;
  }

  html, body {
    overflow-x: hidden;
  }
  

  nav {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    background-color: #a6cfdd;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
  }
  .nav_logo {
    width: auto;
    height: auto;
  }
  .nav_logo a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 5px;
    padding-top: 8px;
  }
  .nav_logo a img {
    width: 120%;
    height: 120%;
    object-fit: fill;
    object-position: center center;
  }
  .nav_items {
    width: 25%;
  }
  .nav_items ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .nav_items ul li {
    list-style-type: none;
  }
  .nav_items ul li a {
    display: block;
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
  }

  .landing_page_container {
    width: 100%;
    height: 100vh;
    padding-top: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .landing_hero {
    width: 100%;
    height: 100%;
    background-image: url("Media/Mangawhai_pics/background.jpg");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 2px black solid;
    
  }
  .landing_hero img {
    width: 55%;
    height: auto;
    object-fit: contain;
    margin-bottom: 180px;
  }

  .home_text_container {
    width: 100%;
    height: auto;
    padding: 70px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .text_block {
    width: 70%;
    padding-bottom: 70px;
  }
  .text_block h2 {
    font-size: 30px;
  }

  .home_info_container{
    width: 100%;
    height: 25vh;
    padding: 100px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .text_info {
    width: 70%;
  }
  .text_info h2 {
    font-size: 24px;
  }
  
  .testimonials-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 800px;
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 100px auto; /* Centers the container vertically and horizontally */
  }
  
  .arrow {
    background-color: transparent;
    color: #007BFF;
    border: none;
    cursor: pointer;
    font-size: 36px;
    font-weight: bold;
  }
  
  .arrow:hover {
    color: #0056b3;
  }
  
  .testimonial-box {
    text-align: center;
    flex-grow: 1;
  }
  
  #testimonial-text {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
  }
  
  #testimonial-author {
    font-size: 18px;
    font-style: italic;
    color: #555;
  }
 
/* General button container styles */
.button_container {
  display: flex; /* Flexbox for layout */
  flex-direction: row; /* Default: Buttons side by side */
  justify-content: center; /* Center the buttons */
  align-items: center; /* Align buttons vertically */
  gap: 20px; /* Add spacing between buttons */
  margin: 20px 0; /* Add vertical spacing */
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Individual button styles */
.button {
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: white;
  background-color: #007BFF;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  flex: 1; /* Make buttons flexible in size */
  max-width: 300px; /* Limit the button's maximum width */
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 100px;
}

.button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}
  
  

  footer {
    background-color:  #4e4e4e;
    color: #ffffff;
    font-family: 'Pridi', serif;
    padding: 30px 0;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-info p {
    margin-bottom: 20px;
    font-size: 19px;
  }

  .footer-info h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  .footer-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
  }
  
  .footer-logos img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
  }
  
  .footer-logos img:hover {
    transform: scale(1.1);
  }
  
  .footer-links p {
    margin: 10px 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
  }
  
  .footer-links a {
    color: #4db8ff; /* Light blue for links */
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }   
  

/*About Page*/

.about_page_container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
}
.about_block_content,
.about_block_image{
    width: 50%;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.about_content_header{
    padding-bottom  : 20px;
    padding-top  : 40px;
}
.about_content_header h1{
    font-size: 60px;
    width: 100%;
    text-transform: uppercase;
}
.about_content_text p{
    font-size: 19px;
}
.about_block_image img{
    width: 90%;
    height: 90%;
    object-fit: cover;
    object-position: center center;
    border-radius: 4%;
    margin-top: 50px;
    border: black solid 3px;
}

/*About Page End*/


 /*Contact Page*/

 .contact_page_container{
  width: 100%;
  height: 100vh;
  padding: 90px 20px 20px 20px;
}

.contact_page_header{
  width: 100%;
  height: auto;
}

.ctp_header_text{
  width: 100%;
  border-bottom: 2px black solid ;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctp_header_text h2{
  font-size: 42px;
  text-transform: capitalize;
}

.ctp_header_text p{
  font-size: 32px;
}

.contact_page_logo{
  height: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact_page_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.contact_page_content{
  height: 80%;
  display: flex;
  flex-direction: column;
  padding-top: 10px;

}

.contact_page_info{
  height: 30%;
}

.page_info_name,
.page_info_number,
.page_info_location,
.page_info_email{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 0 15px 0;
}

.page_info_name h2,
.page_info_number h2,
.page_info_location h2,
.page_info_email h2{
  font-size: 30px;
}

.page_info_name p,
.page_info_number p,
.page_info_location p,
.page_info_email p{
  font-size: 20px;
}

.page_info_email a {
  text-decoration: none;
  color: inherit;
  font-size: 20px; 
}

.page_info_email a:hover {
  text-decoration: underline;
}

 /*Contact Page End*/

 /*Gallery Page Start*/


 .product_page_container{
  padding-top: 60px;
  width: 100%;
  height: auto;
}

.product_page_header,
.product_page_shop{
  width: 100%;
  padding: 8px;
}

.product_page_header{
  padding-top: 35px;
  height: 15%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.product_page_header h1 {
  font-size: 40px;
}

.product_page_shop {
  height: 85%;
}

.shop_items_container{
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  padding: 0px 20px 20px 20px;
}

.shop_item_image{
  width: 100%;
  height: 400px;
}

.shop_item{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: skyblue ;
  border-radius: 20px;
  padding: 10px;
}

.shop_item_header h2{
  font-size: 25px;
  text-align: center;
  ;
}

.shop_item_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  padding: 20px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  /* Navigation */
  nav {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .nav_logo a img {
    width: 100%;
    height: auto;
  }
  .nav_items ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .nav_items ul li a {
    font-size: 16px;
    padding: 5px 10px;
  }

  /* Landing Page */
  .landing_hero img {
    width: 95%;
    margin-bottom: 100px;
    padding-top: 100px;
    
  }
  .landing_hero {
    padding: 10px;
    text-align: center;
  }

  /* Text Containers */
  .text_block, .text_info {
    width: 90%;
    text-align: center;
  }
  .home_info_container{
  padding-bottom: 170px;
  margin-top: 140px;
  }
  /* Testimonials */
  .testimonials-container {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }
  .arrow {
    font-size: 24px;
    margin: 10px 0;
  }

  /* Buttons */

  .button-container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    align-items: center; /* Center buttons */
    gap: 20px; /* Add spacing between buttons */
    width: 90%; /* Adjust width for smaller screens */
    margin: 0px auto;
  }

  .button {
    max-width: 100%; /* Allow buttons to stretch fully */
    margin: 10px 0; /* Remove horizontal margins */
    padding: 15px 20px; /* Adjust padding for smaller buttons */
    font-size: 20px; /* Reduce font size */
  }

  /* About Page */
  .about_page_container {
    flex-direction: column;
    padding: 160px 20px 20px 20px;
    height: auto;
  }
  .about_block_content, .about_block_image {
    width: 100%;
    padding: 10px 10px 10px 0px;
  }
  .about_block_image {
    width: 100%;
    padding: 0px 10px 10px 10px;
  }
  .about_content_header h1 {
    font-size: 32px;
    text-align: center;
  }
  .about_content_text p {
    font-size: 16px;
  }
  .about_block_image img {
    width: 100%;
    height: auto;
  }

  /* Contact Page */
  .contact_page_container {
    padding-top: 210px;
    margin-bottom: 40px;
  }
  .ctp_header_text h2 {
    font-size: 28px;
    text-align: center;
  }
  .page_info_name h2, 
  .page_info_number h2,
  .page_info_location h2,
  .page_info_email h2 {
    font-size: 20px;
  }
  .page_info_name p, 
  .page_info_number p,
  .page_info_location p,
  .page_info_email p {
    font-size: 16px;
  }

  /* Product Gallery */
  .shop_items_container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .shop_item {
    padding: 10px;
  }
  .shop_item_header h2 {
    font-size: 20px;
  }
  .shop_item_image img {
    padding: 10px;
    width: 100%;
    height: auto;
  }

  /* Footer */
  .footer-container {
    padding: 20px;
    text-align: center;
  }
  .footer-info p, .footer-info h2 {
    font-size: 16px;
  } 
    
  .footer-logos {
      flex-wrap: wrap; /* Logos will wrap to fit smaller screens */
      gap: 15px;
    }

  .footer-logos img {
      max-height: 80px; /* Reduce size for smaller screens */
      max-width: 120px;
      height: 50px;
      width: auto;
    }
  
  
}
