html,
body {
  margin: 0;
  padding: 0;
}

/* General Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Font Styles */
h1 {
  font-family: "Montserrat";
}

/* Apply Montserrat to h2 tags */
h2 {
  font-family: "Montserrat";
}

/* Apply Quicksand to paragraphs */
p {
  font-family: "Montserrat";
}

/* Apply Roboto as the default font for the body */
body {
  font-family: "Montserrat";
}
footer {
  font-family: "Montserrat";
}

.rectangle {
  width: 90%; /* Adjust width as needed */
  height: 10px; /* Adjust height as needed */
  background-color: #000000; /* Change color */
  margin: 20px auto; /* Centers it horizontally */
}
/* Navigation Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  float: right;
  background-color: white;
  width: 100%; /* Full viewport width */
  box-sizing: border-box; /* Prevents padding from adding extra width */
}

.homepage {
  font-size: 20px;
  margin: 0px 0px 0px 30px;
  color: black;
  text-decoration: none;
}

nav p {
  font-size: 20px;
  margin: 0px 0px 0px 30px;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 20px 45px;
}

.nav-links a {
  text-decoration: none;
  color: black;
}

.contact {
  font-weight: bold;
}

/* Introduction */

.introduction {
  text-align: center;
  padding-top: 120px; /* Adds space below the header */
  padding-bottom: 40px;
}
.introduction h1 {
  font-size: 40px;
}

.introduction p {
  font-size: 30px;
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

/* form */
input[type="text"],
input[type="email"], /* Added email input */
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #000000;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type="submit"] {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: 2px solid #000000;
  padding: 12px 20px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #f0f0f0;
}

.container {
  border-radius: 5px;
  background-color: #ffffff;
  padding: 40px;
  margin: 0 auto;
  width: 80%;
  max-width: 900px;
}

/*Footer*/
footer {
  background-color: #ffffff;
  text-align: center;
  padding: 20px 0;
  margin: 0px;
}

.social-links {
  margin-top: 20px; /* Add space between social links and footer links */
}
.email {
  text-decoration: none;
  color: black;
}

.footer-links a,
.social-links a {
  color: #000000;
  margin: 0 10px;
  text-decoration: none;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center; /* Vertically aligns the content */
  gap: 10px;
}

.social-links img {
  width: 30px; /* Adjusts the width of the actual icons */
  height: auto; /* Keeps aspect ratio */
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Media Queries */
/* Mobile Portrait (up to 480px) */
@media screen and (max-width: 480px) {
  nav {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center align items */
    padding: 15px 20px;
    background-color: white;
    width: 100%;
    box-sizing: border-box;
  }

  nav p {
    font-weight: bold;
    font-size: 20px;
    margin: 0px 0px 0px 30px;
  }

  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-links li {
    margin: 30px 25px;
  }

  .nav-links a {
    text-decoration: none;
    color: black;
  }
}

/* Mobile Landscape (481px to 767px) */
@media screen and (min-width: 481px) and (max-width: 767px) {
  nav {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center align items */
    padding: 15px 20px;
    background-color: white;
    width: 100%;
    box-sizing: border-box;
  }

  nav p {
    font-weight: bold;
    font-size: 20px;
    margin: 0px 0px 0px 30px;
  }

  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-links li {
    margin: 30px 45px;
  }

  .nav-links a {
    text-decoration: none;
    color: black;
  }

  /* More Info */
}

/* Tablet (768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
}

/* Laptop and Small Desktop (1025px to 1200px) */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
}

/* Large Desktop (1201px and up) */
@media screen and (min-width: 1201px) {
}
