/* 1. Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
}

/* 2. Utility Classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 3. Navbar */
.navbar {
  background-color: #222;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  max-height: 40px;
}
.nav-container ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-container ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}
.nav-container ul li a:hover,
.nav-container ul li a.active {
  background-color: #444;
}

/* 4. Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("https://images.unsplash.com/photo-1629230096493-2b5c29877868?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80")
    no-repeat center center/cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* 5. Buttons */
.btn {
  background-color: #ff6f61;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #e35a50;
}
.btn-secondary {
  background-color: #008080;
}
.btn-secondary:hover {
  background-color: #006666;
}

/* 6. Brand Section */
.brand-section {
  padding: 3rem 0;
}
.brand-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.brand-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}
.brand-card {
  flex: 1 1 calc(33% - 2rem);
  min-width: 250px;
  background: #f8f8f8;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}
.brand-card h3 {
  margin-bottom: 1rem;
}
.brand-card p {
  color: #666;
}

/* 7. Pitch Section */
.pitch-section {
  background: #fafafa;
  padding: 3rem 0;
  text-align: center;
}
.pitch-section h2 {
  margin-bottom: 1rem;
}
.pitch-section p {
  max-width: 800px;
  margin: 0.5rem auto;
  color: #555;
}

/* 8. Contact Section */
.contact-section {
  padding: 3rem 0;
  background: #fff;
  text-align: center;
}
.contact-section h2 {
  margin-bottom: 1rem;
}
.contact-form {
  margin: 2rem auto 0 auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  text-align: left;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* 9. Footer */
footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

/* 10. Responsive Media Queries */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .brand-cards {
    flex-direction: column;
  }
}
