* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
font-family: Arial, Helvetica, sans-serif;
background-color:#9d9885;
color: black;
line-height: 1.6;

}
/*Fixed Navbar*/
.navbar  {
position: fixed;
top: 0;
width: 100%;
background-color:#edd693;
color: Pink;
padding: 15px 0; /*Adds 15 px of padding to the top and bottom, 0 to the sides*/
z-index: 1000; /*Makes the ekement stay on top of others by giving it a high z value*/
}

.nav-container {
    width: 85%; /*sets the elements width to 85% of its parent container*/
    margin: auto; /*Horizontally centres the elements to its parent*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 65px;
    font-size: 25px;
    color: yellow;
    text-decoration: none;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    }

.nav-links li a {
          text-decoration: underline;
}

main {
height: auto;
 width: 85%;
 margin: 90px auto 50px auto;
 background-color: antiquewhite;
    }

    .hero {
      position: relative;
      height: 500px;
      overflow: hidden;
    }
       
    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
       
    .hero-text {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      background-color: rgba(237, 214, 147, 0.9);
      padding: 20px 30px;
      border-radius: 12px;
      max-width: 600px;
     
    }
       
    .hero-text h1 {
      margin: 0 0 10px;
      font-size: 2em;
      text-align: center;
    }
       
    .hero-text p {
      margin: 0;
      font-size: 1em;
      line-height: 1.4;
      text-align: left;
    }

    .button {
      background-color: #5d4037;
      color: white;
      margin-top: 10px;
      padding: 12px 25px;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      text-decoration: none;
      transition: background-color 0.3s ease;
  }
  
  .button:hover {
      background-color: #5d4037;
  }

div.gallery {
    border: 1px solid #ccc;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
  }

  .clearfix::after {
    content: "";
    display: table;
    clear: both;
  }

  .shop-collection {
    padding: 40px; /* Adds space around the whole section */
  }
  
  .shop-collection h2 {
    margin-bottom: 30px; /* Adds space below the heading */
    text-align: center;  /* Optional: centers the heading */
  }

  body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
  }
  
  html {
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  .column {
    float: left;
    width: 33.3%;
    margin-bottom: 16px;
    padding: 0 8px;
  }
  
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 8px;
  }
  
  .about-section {
    padding: 50px;
    text-align: center;
    background-color: #474e5d;
    color: white;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .container::after, .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .title {
    color: grey;
  }
  
  .button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
  }
  
  .button:hover {
    background-color: #555;
  }
  
  @media screen and (max-width: 650px) {
    .column {
      width: 100%;
      display: block;
    }
  }

  /* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

  .footer {
    background-color: rgba(75, 67, 52, 0.374);
    color: black;
    padding: 30px 0;
    /* margin-top: 50px; ← Remove or change this */
    font-size: 14px;
  }

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 85%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-contact,
.footer-socials {
    flex: 1 1 200px;
    margin: 10px;
}

.footer a {
    color: black;
    text-decoration: none;
    margin: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}