/* Global styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f8fb;
  color: #333;
  line-height: 1.6;
}

.header {
  background-color: #36495a;
  color: white;
  text-align: center;
  padding: 1rem 1rem;
}

.header h1 {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 300;
}

.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.about-text {
  font-size: 1.1rem;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 120%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-image figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.footer {
  background-color: #1e88e5;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

/* 👇 Added for social media section */
.contact-footer {
  background-color: #1d1f21;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

.contact-footer h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.social-links a {
  margin: 0 12px;
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #ffd700;
  transform: scale(1.1);
}
/* 👆 End of added styles */

/* Responsive adjustments */
@media (min-width: 768px) {
  .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .header h1 {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.4rem;
  }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
  .header h1 {
    font-size: 2rem; /* Smaller font on mobile */
  }

  .tagline {
    font-size: 1.1rem; /* Smaller tagline on mobile */
  }

  .container {
    padding: 0 1rem; /* Less padding on mobile */
    grid-template-columns: 1fr; /* Single column on mobile */
  }

  .about-image img {
    max-width: 100%; /* Ensure image takes full width on small screens */
  }

  .contact-footer {
    padding: 1rem 0.5rem; /* Reduce padding for small screens */
  }

  .contact-footer h3 {
    font-size: 1.2rem; /* Slightly smaller h3 on mobile */
  }

  .social-links a {
    font-size: 20px; /* Smaller icon size on mobile */
    margin: 0 8px; /* Reduce margin between social icons */
  }
}
