@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

:root {
  --bs-primary: #052506;
  --bs-primary-rgb: 5, 37, 6;
  --bs-secondary: #3b9f1b;
  --bs-secondary-rgb: 59, 159, 27;
}

body {
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  height: 100vh;
}

a {
  color: #00B7FF;
}

.wrapper-container {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: flex-start;
  height: auto;
  min-height: 100vh; 

  text-align: center;
  position: relative;

  font-family: 'Montserrat', sans-serif;
}

.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
  /* max-width: 600px; */
  text-align: center;
  margin: 0 auto;
  color: #f0f0f0;
}

.text-color-white {
  color: #f0f0f0;
}

h1 {
  font-size: 64px;
  font-weight: 700;
  margin: 0;
}

h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 10px 0 0;
}

p {
  font-size: 24px;
  font-weight: 400;
  margin: 10px 0 0;
}

form {
  display: flex;
  flex-direction: column;
  align-items: left; 
  justify-content: space-between;

  max-width: 500px;
}

label {
  display: block;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  margin: 8px 0px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border 0.3s ease-in-out;
  box-sizing: border-box;
  margin-bottom: 10px;
}

input:focus, select:focus, textarea:focus {
  border-color: #28700a;
}

textarea {
  resize: vertical;
}

select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1); /* Darker background */
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border 0.3s ease-in-out;
  appearance: none; /* Removes default arrow (optional) */
  cursor: pointer;
  margin-bottom: 10px;
}

input:focus, textarea:focus, select:focus {
  border-color: #014e01;
  outline: none;
  box-shadow: 0px 0px 5px rgba(1, 78, 1, 0.3);
}

.email-explanation {
  margin-bottom: 4px;
}

button {
  background-color: #3b9f1b;
  color: #f0f0f0; 
  font-size: 21px;
  padding: 10px 20px;
  border: none; 
  border-radius: 5px;
  cursor: pointer; 
  transition: background-color 0.3s ease; 
  margin-top: 1.5rem;
}

button:hover {
  background-color: #2f7d14; 
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container svg {
  fill: #F5F5DC;
  width: 50px;
  height: auto;
}

.brand-name {
  color: #F5F5DC; 
  font-size: 2.5rem; 
  font-weight: bold;
  margin-left: 1rem; 
  text-transform: uppercase; 

  position: relative;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #052506; 
  color: #F5F5DC; 
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.cookie-banner p {
  font-size: 14px;
}

.cookie-banner p {
  margin: 0;
  padding: 0 10px;
}

.cookie-banner button {
  background: #F5F5DC;
  color: #014e01;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 0;
  margin-right: 2rem;
}


@media (max-width: 820px) {
  h1, h2 {
    margin-left: 10px;
    margin-right: 10px;
  }

  form {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.hero-image {
  width: 100%;
  max-width: 500px;
}

.center-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
} 

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-body {
  background-image: url("/images/bg_1.jpg");
  background-position: center;
}

.thank-you-body {
  background-image: url("/images/bg_3.jpg");
  background-position: center;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #052506;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.logo {
  color: #f0f0f0;
  font-size: 24px;
  font-weight: bold;
  margin: 0.5rem 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin-right: 4rem;
}

.nav-links a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 24px;
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background-color: green;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 2rem;
}
.hamburger div {
  width: 30px;
  height: 3px;
  background-color: #f0f0f0;
  margin: 5px 0;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    width: 150px;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
  }

  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}

.error-page, .cookie-page {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  min-height: 80vh; /* Keeps content centered */
  padding: 20px 0;
  background-color: #f9f9f9; /* Light background for readability */
  width: 100%;
}

.about, .qa-form-page {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  /* align-items: center; */
  min-height: 80vh; /* Keeps content centered */
  padding: 20px 0;
  background-color: #f9f9f9; /* Light background for readability */
  width: 100%;
}

.container {
  max-width: 800px;
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 10px;
  
  h1 {
    font-size: 2rem;
    color: #014e01; /* Dark green heading */
    margin-bottom: 10px;
  }
  
  h2 {
    font-size: 1.5rem;
    color: #014e01;
    margin-top: 20px;
  }
  
  p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
  }
}

.survey-link {
  display: inline-block;
  background: #3b9f1b; 
  color: #fff;
  padding: 10px 20px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: 0.3s ease-in-out;
}

.survey-link:hover {
  background: #2f7d14; 
}

.blog-container {
  flex-grow: 1;
  max-width: 1000px;
  margin: 80px auto 40px;
  padding: 20px;
}

.blog-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  padding: 10px;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-content {
  padding: 15px 20px;
  flex: 1;
}

.blog-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  text-align: left;
}

.read-more {
  text-decoration: none;
  color: green;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  text-align: left;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-card img {
    width: 100%;
    height: auto;
  }

  .blog-content {
    padding: 15px;
  }
}

.blog-details {
  flex-grow: 1;
  max-width: 800px;
  margin: 80px auto 40px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;

  p {
    font-size: 20px;
  }
}

.blog-header {
    text-align: center;
    margin-bottom: 20px;
}

.blog-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 14px;
    color: #555;
}

.blog-banner {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.blog-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.blog-content h2 {
    font-size: 26px;
    margin-top: 20px;
}

.blog-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.blog-content blockquote {
  font-size: 20px;
  font-style: italic;
  margin: 20px 0;
  padding: 15px;
  border-left: 5px solid green;
  background: #f5f5f5;
}

.blog-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.back-to-articles {
    text-decoration: none;
    font-weight: bold;
    color: green;
}

.back-to-articles:hover {
    text-decoration: underline;
}

.share-thoughts p {
    font-size: 16px;
}

.share-thoughts a {
    color: green;
    font-weight: bold;
    text-decoration: none;
}

.share-thoughts a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-details {
        padding: 15px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-content {
        font-size: 16px;
    }

    .blog-navigation {
        flex-direction: column;
        gap: 10px;
    }
}
