
/* Basic styling for layout and responsiveness */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #2d3748;
}

/* Tailwind-like utility classes for navigation */
.bg-gray-800 {
  background-color: #2d3748;
}

.text-white {
  color: white;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}
/* Navigation link styling */
.bg-gray-800 a,
.bg-gray-800 a:visited {
  color: white;
  text-decoration: none;
}

.bg-gray-800 a:hover {
  color: #63b3ed;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  position: relative;
  height: 500px;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons a {
  background-color: #2b6cb0;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.cta-buttons a:hover {
  background-color: #2c5282;
}

.section {
  padding: 2rem 0;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2b6cb0;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  background-color: #ffffff;
  transition: box-shadow 0.3s;
  /* Prevent image overflow so rounded corners apply */
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Image styling for cards */
.card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  margin-bottom: 0.5rem;
}
footer {
  background-color: #2d3748;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
