:root {
  --primary-color: #28a745; /* green */
  --secondary-color: #eee;
  --text-color: #333;
  --white-color: #fff;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--white-color);
  color: var(--text-color);
}

.landing-header {
  background: rgba(40, 167, 69, 0.9);
  padding: 1rem;
  color: var(--white-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  background: var(--primary-color);
  padding: 1rem;
  color: var(--white-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 50px;
}

nav a {
  margin: 0 15px;
  color: var(--white-color);
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
}

.landing {
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin: 2rem auto;
  max-width: 90%;
  width: fit-content;
}

.landing h2 {
  color: var(--primary-color);
}

.landing .logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.landing h1 {
  margin: 20px 0;
  color: var(--primary-color);
}

.landing p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.btn {
  background-color: white;
  color: var(--primary-color);
  padding: 10px 20px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
  border-radius: 5px;
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 18px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: var(--secondary-color);
}

.landing .btn:hover {
  background: #218838;
}

/* Footer styles */
footer {
  background: var(--primary-color);
  color: var(--white-color);
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

footer a {
  color: var(--white-color);
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

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

/* Specific styles for contact page */
body.contact-page {
  background: url('./images/contact.jpg') no-repeat center center fixed;
  background-size: cover;
}

.contact-page header {
  background: rgba(40, 167, 69, 0.9);
}

.contact-page main {
  max-width: 800px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-page main h2, .contact-page main p {
  text-align: center;
  color: var(--text-color);
}

.contact-page form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 20px;
  border-radius: 8px;
  background: white;
}

.contact-page form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text-color);
}

.contact-page form input[type='text'],
.contact-page form input[type='email'],
.contact-page form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-page form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-page form button[type='submit'] {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-page form button[type='submit']:hover {
  background-color: #218838;
}

.contact-page footer {
  background: rgba(40, 167, 69, 0.9);
  margin-top: 20px;
}

/* Specific styles for supplies page */
.section {
  margin-bottom: 2rem;
}

.section img {
  width: 100%;
  max-height: 420px;
  display: block;
  border-radius: 8px;
  margin-top: 1rem;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* New styles for home page */
body.home-page {
  background: url("./images/bg.webp") no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.home-page main {
  flex-grow: 1;
  padding: 2rem;
}

body.home-page header {
  background: rgba(40, 167, 69, 0.9);
}

ul {
  list-style-type: none; /* Removes bullets */
  padding-left: 0;       /* Removes default left padding */
  margin-left: 0;        /* Removes default left margin */
}

.landing {
  font-weight: bold;
}

.supplies-page h3 {
  color: var(--primary-color);
}

.supplies-page h2 {
  color: var(--primary-color);
}




