/* General reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
}

/* Header Styles */
header {
  background-image: url('https://imagedelivery.net/8ZT_4LeVt4n626XtMTH2xw/e315a87c-f2bc-4449-2296-186bf0d8c300/public'); /* tartan image*/
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid #28a745;
}

/* Header Text */
header h1 {
  font-size: 6vw;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  padding: 0 10px;
}

/* Navigation Styles */
nav ul {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: color 0.3s ease;
  padding: 5px 10px;
}

nav ul li a:hover {
  color: #28a745;
  background-color: rgba(255, 255, 255, 0.3); /* Add subtle hover effect */
  border-radius: 5px;
}

/* Section Styles */
section {
  padding: 40px 0;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border-radius: 8px;
}

/* Section Heading */
h2 {
  color: #28a745;
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form label {
  font-weight: bold;
  margin-bottom: 8px;
}

form input, form textarea {
  padding: 12px;
  margin-bottom: 15px;
  font-size: 1.1em;
  border: 1px solid #ddd;
  border-radius: 5px;
}

form button {
  padding: 15px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form button:hover {
  background-color: #218838;
}

/* Footer Styles */

/*DELETE*/
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: flex-start; ;
  flex-wrap: wrap;
}

.logo img {
  width: 50px; /* Adjust the size of the logo */
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.footer-text p {
  font-size: 1rem;
  font-weight: 300;
  color: #ddd;
  margin-left: 20px; 
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .footer-text p {
    font-size: 1rem;
  }
}
/*DELETE*/

/* Image Responsiveness */
img {
  width: 95%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Breakpoints */

/* Mobile-first design */
@media (max-width: 768px) {
  header h1 {
    font-size: 8vw;  /* Slightly larger text for mobile */
    padding: 0 10px;
  }

  nav ul {
    text-align: center;
    margin-top: 10px;
  }

  nav ul li {
    display: inline-block;
    margin: 10px;
  }

  section {
    padding: 20px 0;
  }

  h2 {
    font-size: 2rem;  /* Adjust font size for smaller screens */
  }

  form input, form textarea {
    font-size: 1rem;
  }

  form button {
    font-size: 1rem;
  }
}

/* Tablet devices (between 768px and 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  header h1 {
    font-size: 7vw;  /* Adjust for tablets */
  }

  nav ul li {
    margin: 0 20px;
  }

  h2 {
    font-size: 2.2rem;
  }
}

/* Desktop devices (larger than 1024px) */
@media (min-width: 1025px) {
  header h1 {
    font-size: 4rem;  /* Use a fixed size for larger screens */
  }

  section {
    padding: 40px 0;
  }

  h2 {
    font-size: 2.5rem;  /* Larger heading size for desktop */
  }

  form input, form textarea {
    font-size: 1.2rem;
  }

  form button {
    font-size: 1.2rem;
  }
}
