/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* === Reusable Classes === */
.section {
  padding: 3rem 1rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #005fa3;
}

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.logo {
  width: 200px !important;
  height: auto !important;
  max-width: none !important;
  display: block;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.85); /* light semi-transparent */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.logo:hover {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Optional: Placeholder for nav */
.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* === Hero Section === */
.hero {
  background: url('images/hero-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* === Gallery === */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* === Footer === */
.footer {
  background-color: #f5f5f5;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}

/* === Call to Action (if added) === */
.cta {
  background-color: #0077cc;
  color: white;
  padding: 3rem 1rem;
}

.cta input[type="email"] {
  padding: 0.75rem;
  width: 250px;
  max-width: 100%;
  margin-right: 1rem;
  border: none;
  border-radius: 30px;
}

.cta button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  background-color: white;
  color: #0077cc;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta button:hover {
  background-color: #e6e6e6;
}

/* === Media Queries for Responsiveness === */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .site-header {
    flex-direction: column;
    align-items: center;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }

  .cta input[type="email"] {
    margin-bottom: 1rem;
    width: 90%;
  }

  .cta button {
    width: 90%;
  }
}
