*{
    padding: 0;
    margin: 0;
    overflow-x: hidden;
  }


body{
    width: 100%;
    background: linear-gradient(
      to bottom,
      #faf9f7 0%,
      #faf9f7 20%,
      #f4f0ed 20%,
      #f4f0ed 67%,
      #faf9f7 67%, 
      #faf9f7 100%
    );
  }

ul{
    padding-top: 40px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.container {
  display: none;
}

li.nav-links {
  padding: 0 20px;
  border: 1px transparent solid;
  border-radius: 40px; /* Flat top/bottom, rounded left/right */
  background-color: rgba(244, 240, 237, 0.8);
  display: inline-block; /* Ensures the shape respects padding */
  margin: 5px 0; /* Adds some vertical spacing */
  font-size: 1.3rem;
  margin-left: 2%;
  font-family: 'Italiana', serif;
}

li.nav-links:hover{
  background-color: rgba(255, 255, 255, 1);
  border: 1px black solid;
}

a {
  text-decoration: none;
  color: whitesmoke;
}

h2{
    font-size: 3rem;
}

h1, h2 {
    color: #453734;
    font-family: 'Italiana', serif;
}

#column1fb {
  margin-top: 15px;
  background-color: 453734;
  color: white;
}

li {
  list-style: none;
}


.images {
  border-radius: 20px;
}

.columnholder{
    display: flex;
    width: 100%;
}

.column{
    margin: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 33%;
    object-fit: contain;
    justify-content: center;
}

#column3 {
  justify-content: center;
}

p {
  font-size: 1.6vw;
  text-align: left;
  align-self: flex-start;
}

#emailaddress {
  margin-top: 10px;
}

#location {
  margin-bottom: 10px;
}

#bigtitle {
  font-size: 3vw;
}

img{
    margin: 3%;
    max-height: 80vh;
    max-width: 30vw;
    width: auto;
    height: auto;
}

.column1paragraph{
    padding-left: 2%;
    padding-right: 2%;
}

.btn {
  background-color: #453734; /* Blue background */
  border: none; /* Remove borders */
  border-radius: 20px;
  color: white; /* White text */
  padding: 18.5px 30px; /* Some padding */
  font-size: 16px; /* Set a font size */
  cursor: pointer; /* Mouse pointer on hover */
  margin-right: 10px;
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: rgb(196, 164, 132);
}
i {
  font-size: 30px;
}

/* Style all font awesome icons */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
  }
  
  /* Add a hover effect if you want */
  .fa:hover {
    opacity: 0.7;
  }
  
  /* Set a specific color for each brand */
  
  /* Facebook */
  .fa-facebook {
    background: #453734;
    color: white;
    border-radius: 20%;
    margin-right: 10px;
  }
  
  /* Twitter */
  .fa-instagram {
    background: #453734;
    color: white;
    border-radius: 20%;
  }

  /* off-screen-menu */
.off-screen-menu {
  background-color:  rgba(91, 75, 63, 0.5);
  height: 100vh;
  width: 100%;
  max-width: 300px;
  position: fixed;
  top: 0;
  right: -300px;
  display: flex;
  flex-direction: column;
  align-items: center;    
  justify-content: flex-start;
  text-align: center;
  font-size: 3rem;
  transition: .3s ease;
  z-index: 1000;
}
.off-screen-menu.active {
  right: 0;
}

/* nav */
nav {
  padding: 1rem;
  display: none;
}

/* ham menu */
.ham-menu {
  top: 30px; /* Adjust as needed for spacing */
  right: 40px; /* Adjust as needed for spacing */
  height: 50px;
  width: 40px;
  position: absolute;
  z-index: 1000000;
  display: none;  
}
.ham-menu span {
  height: 5px;
  width: 100%;
  background-color: #453734;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease;
  display: none;
}
.ham-menu span:nth-child(1) {
  top: 25%;
}
.ham-menu span:nth-child(3) {
  top: 75%;
}
.ham-menu.active span {
  background-color: white;
}
.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
  opacity: 0;
}
.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

li.ham-links {
  color:#e8e5df;
  list-style-type: none;
  padding: 30px 10px 10px 10px;
  
}

ul.ham-bar {
  margin-top: 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* 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: rgb(196, 164, 132);
  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: rgb(196, 164, 132);
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  padding: 20px;
}

.popup-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f4f0ed;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000000;
  width: 80%;
  max-width: 400px;
  display: none;
}

.popup-form .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}

#contact-form label {
  font-size: 1rem;
  color: #453734;
}

#smalltitle {
  display: none;
}

.contactus {
  display: none;
}

#contact-form input, #contact-form textarea {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
}

#socialsemail {
  display: none;
}

#contact-form input[type=submit] {
  background-color: #453734;
  color: white;
  border: none;
  cursor: pointer;
}

#contact-form input[type=submit]:hover {
  background-color: rgb(196, 164, 132);
}

@media (max-width: 1200px) {
  .ham-menu {
    display: block;
  }
  .ham-menu span {
    display: block;
  }

  .navbar {
    display: none;
  }

  #column1 {
    display: none;
  }

  .columnholder {
    justify-content: space-between;
  }

  /* Adjust column sizes */
  #column2 {
    flex-grow: 8; /* Make this column take most of the space */
    flex-basis: 65%; /* Set its base width to 80% */
    max-width: 65%; /* Ensure it doesn't exceed 80% */
    justify-content: center;
    margin-top: 16%;
  }

  div#column3 {
    flex-grow: 2; /* Shrink this column */
    flex-basis:35%; /* Set its base width to 20% */
    max-width: 35%; /* Ensure it doesn't exceed 20% */
    margin-top: 12%;
    justify-content: center;
  }

  #show-form-btn {
    display: none;
  }

  #bigtitle {
    display: none;
  }

  nav {
    display: flex;
  }

  /* Adjust image inside #column2 */
  #column2 img,
  #column2 .images,
  #column2 #contact3 {
    width: 100%; /* Fill the width of the column */
    height: 100%; /* Maintain aspect ratio */
    max-width: none;
    max-height: none;
    object-fit: cover; /* Prevent distortion */
  }

  #contact3 {
    display: none; /* If you want it hidden at this size */
  }

  #smalltitle {
    display: block;
    font-size: 5vw;
  }

  #socials {
    display: none;
  }

  img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  #socialsemail {
    display: block;
    border-radius: 20%;
    width: 90%;
  }

  .smallicons {
    padding: 20px;
    font-size: 5vw;
    width: 50px;
    text-align: center;
    text-decoration: none;
  }


  p {
    align-self: flex-start;
    font-size: 3vw;
  }

  .contactus {
    margin-top: 10px;
  }

  #location {
    margin-bottom: 10px;
  }
  .btn {
    padding: 0;
    font-size: 3vw;
  }

  .contactus {
    display: block;
  }

  ul {
    display: flex;
    flex-direction: column;
  }

  .maincontent {
    display: none;
  }
}