/* CSS Variables for Consistency and Performance */
:root {
  --primary: #ccf60e; /* A fresh conversion-focused green */
  --primary-dark: #0e3322;
  --secondary: #0e3322;
  --text-main: #334155;
  --text-heading: #0f172a;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* Core Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: var(--primary-dark);
  background-color: var(--primary);
  overflow-x: hidden;
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

h1,
h2,
h3 {
  color: var(--text-heading);
  font-weight: 800;
  line-height: 1.2;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 184, 148, 0.3);
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem;
  height: 80px;
  display: none;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  text-decoration: none;
  width: 150px;
}

main {
  min-height: calc(100vh - 80px);
}
.comming-soon-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 80vh;
}

.comming-soon-section h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 65px;
  text-align: center;
  color: var(--secondary);
}
/* Footer */
footer {
  background: var(--secondary);
  color: var(--white);
  padding: 1rem;
  display: flex;
  justify-content: end;
  height: 80px;
}

.footer-logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  width: 150px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  nav {
    display: block;
  }
  footer {
    display: none;
  }
  .comming-soon-section h1 {
    font-size: 55px;
  }
  section {
    padding: 3rem 0;
  }
}
