/* -- Global Style -- */
body, html {
  height: 100%;
  margin: 0;
  font-family: 'Arimo', sans-serif;
  background-color: #004958;
}

/* -- Navigation -- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #004958;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 4px;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto; /* remove this if it's pushing buttons too far right */
  margin-right: 2rem; /* adjust this value to pull them left */
}


.nav-buttons a {
  text-decoration: none;
  background-color: white;
  color: #004958;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, color 0.3s;
}

.nav-buttons a:hover {
  background-color: #00d9ff; /* hover color */
  color: white;
}



/* -- Hero Section -- */
.hero-image {
  background-image: linear-gradient(
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3)
  ),
  url("images/istockphoto-1184889001-612x612.jpg");
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  position: relative;
}

.hero-image .hero-text {
  max-width: 800px;
}

.hero-image h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-image p {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero-image .btn,
.tag-button {
  background-color: #ffffff;
  color: #004958;
  border: 1px solid #cccccc;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tag-button:hover {
  background-color: #f0f0f0;
}



/* -- Safeguarding Section -- */
.safeguarding-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background-color:  #004958;
  gap: 2rem;
  font-family: 'Arimo', sans-serif;
}

.text-content {
  flex: 1;
  max-width: 600px;
}

.text-content h2 {
  color: #00b8d9;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.text-content p {
  font-size: 1rem;
  color:white;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  background-color: #1236d6;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #00b8d9;;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* -- Responsive (Mobile) -- */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-image h1 {
    font-size: 2rem;
  }

  .hero-image p {
    font-size: 1rem;
  }

  .hero-image .btn,
  .tag-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .safeguarding-section {
    flex-direction: column;
    text-align: center;
  }

  .image-content img {
    margin-top: 2rem;
  }
}

.signs-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.signs-section h2 {
  font-size: 2.2rem;
  color: #00b8d9;;
  margin-bottom: 2rem;
}

/*card grid section*/
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #00D9FF; 
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  color: #000; 
}

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  text-align: left;
}

.card-content h3 {
  font-size: 1.25rem;
  color: #003e4d; 
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 1rem;
  color: #002a35; 
  margin-bottom: 1rem;
}


.card-content a {
  color: #004958;
  font-weight: 600;
  text-decoration: none;
}


.card-content a:hover {
  text-decoration: underline;
}
.signs-section {
  padding: 3rem 2rem;
  background: #004958;
  font-family: 'Arimo', sans-serif;
  text-align: center;
}

.signs-section h2 {
  color: #00D9FF;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.sign-card {
  background: #00D9FF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.sign-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.card-content h3 {
  margin: 0;
  color: #003e4d;
  font-size: 1.25rem;
}

.card-content p {
  color: #003e4d;
  margin-top: 0.5rem;
}

.sign-details {
  text-align: left;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.sign-details h3 {
  color: #00D9FF;
  margin-bottom: 0.5rem;
}

.sign-details ul {
  padding-left: 1.2rem;
  color: #333;
}

.sign-details ul li {
  margin-bottom: 0.5rem;
}
.action-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Arimo', sans-serif;
  text-align: center;
}

.action-section h2 {
  font-size: 2.2rem;
  color: #004958;
  margin-bottom: 20px;
}

.action-section .intro-text {
  color: #333;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.action-section {
  background-color: #f9f9f9;
  padding: 60px 40px;
  font-family: 'Arimo', sans-serif;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
}

.action-section h2 {
  font-size: 2.5rem;
  color: #004958;
  margin-bottom: 20px;
}

.action-section .intro-text {
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.step-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.step-card {
  background-color: #00D9FF;
  border-radius: 16px;
  padding: 25px 30px;
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-icon {
  font-size: 2rem;
  background-color: #ffffff;
  color: #004958;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.step-info h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  color: #004958;
}

.step-info p {
  margin: 0;
  font-size: 1rem;
  color: #00333d;
}

/* Responsive */
@media (max-width: 768px) {
  .step-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .step-icon {
    margin: 0 0 15px 0;
  }
}

.contact-section {
  padding: 3rem 2rem;
  background-color: #ffffff;
  max-width: 700px;
  margin: 3rem auto;
  border-radius: 12px;
  font-family: 'Arimo', sans-serif;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #004958;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:invalid,
.contact-form textarea:invalid {
  border-color: #00d9ff
}

.contact-form input:valid,
.contact-form textarea:valid {
  border-color: #00d9ff;
}

button.tag-button {
  background-color: #00d9ff;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button.tag-button:hover {
  background-color: #00b6d4;
}

.site-footer {
  background-color: #00A3BF;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-family: 'Arimo', sans-serif;
  font-size: 0.9rem;
}