/* styles.css */
/* Color placeholders (replace with brand palette) */
:root {
  --primary-color: #1e1e1e;  
  --secondary-color: #121212;   
  --text-color: #f3f4f6;      
  --bg-color: #1e1e1e;
  --btn-color: #2a2a2a;
  --btn-text-color: #ffffff;
}

/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
}
h1, h2, h3 {
  margin: 0;
  color: var(--text-color);
}
p {
  line-height: 1.6;
}
a { text-decoration: none; }

/* Loader Overlay */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.loader-logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(1.0); }
}

/* Hero Section */
#hero {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  justify-content: center;
  padding: 60px 5%;
  background: var(--secondary-color);
  flex-direction: column;
}
.hero-content {
  max-width: 50%;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-content .subheading {
  margin-bottom: 20px;
  color: var(--text-color);
}
.hero-content .btn {
  /* display: inline-block; */
  display: flex;
  width: fit-content;
  padding: 12px 24px;
  background: var(--btn-color);
  color: var(--btn-text-color);
  font-size: 1rem;
  border-radius: 100px;
}
/* .hero-image img {
  max-width: 100%;
  height: auto;
} */

/* Features Section */
#features {
  padding: 60px 5% 0 5%;
  text-align: center;
}
#features h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.feature-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-item {
  flex: 1 1 250px;
  max-width: 300px;
  margin: 10px;
}
.feature-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
.feature-item h3 {
  margin: 10px 0 5px;
}
.feature-item p {
  font-size: 0.95rem;
}

/* How It Works Section */
#how-it-works {
  background: var(--secondary-color);
  padding: 60px 5%;
  text-align: center;
}
#how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.step {
  flex: 1 1 200px;
  max-width: 250px;
  margin: 10px;
}
.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  margin-bottom: 10px;
}

/* Call-to-Action Section */
#cta {
  padding: 60px 5%;
  background: var(--primary-color);
  text-align: center;
  color: #fff;
}
#cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
#cta p {
  margin-bottom: 20px;
}
#cta .btn {
  background: #fff;
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 4px;
}

/* Footer */
footer {
  background: #333;
  color: #bbb;
  padding: 20px 5%;
  text-align: center;
}
.footer-content {
  max-width: 800px;
  margin: 0 auto;
}
.footer-nav a {
  color: #bbb;
  margin: 0 5px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  #hero {
    /* flex-direction: column-reverse; */
    text-align: center;
    padding-top: 0;
  }
  .hero-content { max-width: 100%; }
  #features .feature-list,
  #how-it-works .steps {
    flex-direction: column;
    align-items: center;
  }
  .feature-item {
    flex: 1 1 25px;
    max-width: 300px;
    margin: 10px;
  }
}

/* Navigation */
#top-nav {
  background: #ffffff;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.logo {
  font-weight: bold;
  font-size: 1.2rem;
}
.nav-links a {
  color: #2F69E0;
  text-decoration: none;
  font-weight: 500;
}

/* Waitlist Section */
#waitlist {
  padding: 60px 5%;
  /* background: var(--secondary-color); */
  background-color: var(--secondary-color);
  text-align: center;
}
.waitlist-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.waitlist-form input[type="email"] {
  padding: 12px;
  font-size: 1rem;
  width: 300px;
  max-width: 100%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.waitlist-form .btn {
  padding: 12px 24px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
/* Waitlist Section Buttons */
.waitlist-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.waitlist-buttons .btn {
  padding: 12px 24px;
  /* background: var(--primary-color); */
  background-color: #FF8C42;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}
.waitlist-buttons .btn.secondary {
  /* background: #ccc; */
  background-color: white;
  color: #FF8C42;
  /* font-weight: 500; */
  /* border: 1px solid #FF8C42; */
}

.iconText {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-contact-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.footer-contact-btn:hover {
  background: #1e4fb3; /* Slightly darker on hover */
}

.logo {
  max-width: 200px;
  /* width: 100 */
  height: auto;
  margin: 0 auto;
  display: block;
  padding-top: 20px;
  transition: transform 0.3s ease;
  width: 100px;
  height: 100px;
}

.logo:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
  }

  .logo {
    max-width: 100px;
    padding-top: 0;
    width: 100px;
    height: 100px;
    /* margin: 0, 0, 5px, 0; */
    padding-top: 10px;
    padding-bottom: 6px;
  }
}

.feature-list {
  display: flex;
  flex-wrap: wrap; /* optional: wraps on small screens */
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0;
}

.feature-item {
  flex: 1 1 200px; /* responsive blocks */
  max-width: 250px;
  text-align: center;
}

.iconText {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.iconText i {
  font-size: 2rem;
  color: #FF8C42;
}
#plans {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--bg-color);
  color: var(--text-color);
}

#plans h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#plans p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.plan-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.plan-item {
  background-color: var(--secondary-color);
  border: 1px solid #2e2e2e;
  border-radius: 1rem;
  padding: 2rem;
  width: 280px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.plan-item h3 {
  font-size: 1.4rem;
  color: #FF8C42;
  margin-bottom: 0.5rem;
}

.plan-item p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #bbb;
}

.plan-item ul {
  list-style: none;
  padding-left: 0;
}

.plan-item ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #2e2e2e;
  font-size: 0.9rem;
}

.plan-item.highlight {
  border: 2px solid #FF8C42;
}

.plan-item .badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FF8C42;
  color: white;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 1;
}
.plan-item {
  position: relative;
  border: 2px solid #FF8C42;
  border-radius: 10px;
  padding: 1.5rem;
  background-color: #1e1e1e;
  color: #f3f4f6;
}

.plan-item.highlight {
  border-color: #FF8C42;
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.4);
}

.plan-item ul {
  list-style: none;
  padding-left: 0;
}

.plan-item ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #f3f4f6;
}

.plan-item ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #00c853; /* Bright green */
  font-weight: bold;
}

/* Layout for top header area */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

/* Logo text style */
.logo-text {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  color: #FF8C42;
  letter-spacing: 1px;
  z-index: 1000;
  -webkit-text-stroke: 0.5px white;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: center;
  }
  .logo-text {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}

#idee-business {
  padding: 2rem;
  background-color: var(--primary-color);
  text-align: center;
}

.business-columns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.business-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.business-columns li {
  background-color: var(--bg-color);
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  border-left: 4px solid #FF8C42;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo-text picture img {
  height: 55px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.business-columns li i {
  margin-right: 0.5rem;
  color: #FF8C42;
  margin-left: 8px;
}

.idea-icon {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  vertical-align: middle;
  /* color: #FF8C42; */
  filter: invert(53%) sepia(94%) saturate(875%) hue-rotate(340deg) brightness(103%) contrast(101%);
}
.idea-icon2 {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  vertical-align: middle;
  padding-bottom: 10px;
  /* color: #FF8C42; */
  filter: invert(53%) sepia(94%) saturate(875%) hue-rotate(340deg) brightness(103%) contrast(101%);
}