/* General Reset and Body Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%; /* Make sure the body takes up the full height of the viewport */
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

.website {
  color: white; /* Changes link color to white */
  text-decoration: underline; /* Removes the underline (optional) */
}

.website:hover {
  color: lightgray; /* Optional: Change color on hover */
}

h4 {
  color: #966919;
  font-size: 18px;
}

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #966919;
  color: white;
  position: sticky;
  top: 0%;
  z-index: 1000;
}

.logo img {
  width: 275px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu li {
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
}

.container {
  display: flex; /* Makes the textboxes side by side */
  flex-wrap: nowrap; /* Prevents wrapping on smaller screens */
  gap: 20px; /* Adds space between the textboxes */
}

.textbox {
  flex: 1; /* Makes each textbox equally wide */
}

/* Main Section Styling */
main {
  flex-grow: 1; /* This ensures the main content takes up all available space */
  padding: 20px;
  max-width: 850px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content Text Styling */
.content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #966919;
}

.content h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

.content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #966919;
}

.content p {
  font-size: 1.2rem;
  margin-top: 0;
}

img {
  float: left; /* Align image to the left */
  margin-right: 50px; /* Add some space between image and text */
  width: 200px; /* Set the width */
  height: auto; /* Maintain aspect ratio */
}

/* Email Button Styling */
.email-button {
  background-color: #03256c;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

/* Add a hover effect */
.email-button:hover {
  background-color: #818181;
}

/* Footer Styling */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

footer p {
  font-size: 1rem;
}

@media (max-width: 667px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0px;
    background-color: #966919;
    padding: 10px;
    width: 200px;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .menu li {
    padding: 10px 0;
    text-align: center;
  }

  .menu a {
    font-size: 18px;
  }

  .container {
    flex-direction: column; /* Stack textboxes on top of each other on smaller screens */
  }

  .textbox {
    flex: 1 1 100%; /* Textboxes take full width on small screens */
  }
}
