/*
Theme Name: Baby Boom Landing
Theme URI: https://boomapp.gr
Author: BoomApp
Author URI: https://boomapp.gr
Description: Landing page theme for the Baby Boom pregnancy companion app.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: babyboom-landing
*/

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

:root {
  --pink: #ff736a;
  --pink-light: #ffa99c;
  --pink-dark: #fb6763;
  --green: #9eebce;
  --green-dark: #7edab5;
  --dark: #333333;
  --gray: #666666;
  --light-gray: #f8f8f8;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--pink-dark);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== Header / Navbar ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--pink);
}

.site-logo img {
  width: 36px;
  height: 36px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--pink);
}

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600 !important;
  transition:
    background 0.3s ease,
    transform 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--pink-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: 0.3s;
}

/* ========== Hero Section ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  padding-top: 70px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 540px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: var(--dark);
}

.store-button svg {
  width: 28px;
  height: 28px;
}

.store-button .store-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  display: block;
  line-height: 1;
}

.store-button .store-name {
  font-size: 16px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.hero-image {
  flex: 1;
  max-width: 420px;
  text-align: center;
}

.hero-image .phone-mockup {
  max-width: 300px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ========== Features Section ========== */
.features {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid #f0f0f0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.feature-icon.pink {
  background: rgba(255, 115, 106, 0.12);
}
.feature-icon.green {
  background: rgba(158, 235, 206, 0.3);
}
.feature-icon.blue {
  background: rgba(100, 181, 246, 0.15);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ========== How It Works Section ========== */
.how-it-works {
  padding: 100px 0;
  background: var(--light-gray);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.step-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ========== Testimonial / Quote ========== */
.quote-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  text-align: center;
}

.quote-section blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
}

.quote-section cite {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  font-weight: 600;
}

/* ========== CTA / Download Section ========== */
.download-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.download-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.download-section p {
  font-size: 17px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .site-logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--white);
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 280px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .site-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 16px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .download-section h2 {
    font-size: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
