/* === Base === */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #5C4033;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* === Links === */
a {
  text-decoration: none;
  color: inherit;
}

main {
  flex: 1 0 auto; /* this makes main grow and push footer down */
}

/* === Header === */
.header {
  height: 80px;          /* fixed height! */
  padding: 0 60px;       /* remove vertical padding! */
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 240, 224, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
}

nav a {
  margin-left: 20px;
  font-weight: bold;
  color: #8B5E3C;
}

nav a:hover {
  color: #FF7C7C;
}

/* === Hero === */
.hero {
  flex: 1 0 auto; /* Grow to fill remaining space */
  background: url('../images/hero-bg-2.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero .overlay {
  background: rgba(255, 248, 242, 0.8);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
}

.cta-buttons .btn {
  display: inline-block;
  background: #FF7C7C;
  color: white;
  padding: 15px 30px;
  margin: 0 10px;
  border-radius: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 124, 124, 0.4);
}

/* === Footer === */
footer {
  flex-shrink: 0; /* Footer stays at bottom, never shrinks */
  text-align: center;
  padding: 40px 20px;
  background: #FFF0E0;
}


.about,
.partners {
  max-width: 800px;
  padding: 80px 20px 60px; /* top padding matches header height */
  margin: 0 auto;
  text-align: left;
}

.about h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  text-align: center;
  margin-bottom: 50px;
  color: #5C4033;
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #5C4033;
}

@media (max-width: 768px) {
  .about h1 {
    font-size: 36px;
  }
  .about p {
    font-size: 17px;
  }
}

.coming-soon {
  flex: 1 0 auto; /* make it grow in flex layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

.coming-soon h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  margin-bottom: 20px;
}

.coming-soon p {
  font-size: 24px;
  color: #5C4033;
}

.partners {
  flex: 1 0 auto;
  max-width: 800px;
  padding: 80px 20px 80px 20px; /* top = header height, bottom = space above footer */
  text-align: left;
}

.partners h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  text-align: center;
  margin-bottom: 30px;
}

.partners p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #5C4033;
}

.partner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  margin-bottom: 5px;
}

.partner a {
  color: #8B5E3C;
  font-weight: bold;
}

.partner a:hover {
  color: #FF7C7C;
}

.partner p {
  margin-bottom: 40px;
}