html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}
footer {
  flex-shrink: 0;
}


body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #222;
}

header {
  background-color: #1f1f1f;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header img {
  height: 50px;
}

.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  display: none;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: '';
  height: 2px;
  width: 0;
  background: #ff9800;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  height: 50vh;
  background: url('IMG_8838.jpeg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  padding: 0 20px;
  animation: slideDown 1s ease-out;
}

main {
  padding: 40px 20px;
}

section {
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

h2::after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  background: #ff9800;
  margin: 10px auto 0;
  border-radius: 3px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  animation: fadeInUp 1s ease-out;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.95rem;
  color: #444;
}

footer {
  background-color: #1f1f1f;
  color: #ccc;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
}

footer a {
  color: #ff9800;
  text-decoration: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    flex-direction: column;
    display: none;
    width: 100%;
    background: #1f1f1f;
    padding: 10px 0;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    padding: 10px 20px;
  }
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero.hero-full {
  margin-top: 0;
  height: 60vh;
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}
footer {
  flex-shrink: 0;
}


.hero-img-container {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.35);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.hero-overlay h1 {
  font-size: 2.5rem;
  padding: 0 20px;
}
