/* Heart and Hustle — Navy & Coral Athletic Theme */

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --navy: #1a2e4a;
  --coral: #ff6b6b;
  --light: #f7f9fc;
  --white: #ffffff;
  --gray: #6a6a6a;
  --light-gray: #e8ecf1;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  margin: 0;
  padding: 0;
  color: #1a1a1a;
  background: var(--white);
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255,107,107,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero .logo {
  width: 180px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.hero .tagline {
  font-size: 1.4rem;
  color: var(--coral);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Products Section */
.products {
  padding: 80px 20px;
  background: var(--light);
}

.products h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--navy);
  margin: 0 0 48px;
  font-weight: 700;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,46,74,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,46,74,0.15);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--coral);
}

.product-image .placeholder-text {
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--white);
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 8px;
  font-weight: 700;
}

.product-info p {
  color: var(--gray);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* About Section */
.about {
  padding: 100px 20px;
  background: var(--white);
  text-align: center;
}

.about h2 {
  font-size: 2.4rem;
  color: var(--navy);
  margin: 0 0 24px;
  font-weight: 700;
}

.about-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.15rem;
  color: var(--gray);
  margin: 0 0 20px;
  line-height: 1.8;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.coral-text {
  color: var(--coral);
  font-weight: 600;
}

/* CTA Section */
.cta {
  background: var(--navy);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2.2rem;
  margin: 0 0 16px;
  font-weight: 700;
}

.cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}

.cta-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta-form input[type="email"] {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.cta-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}

.cta-form input[type="email"]:focus {
  border-color: var(--coral);
  background: rgba(255,255,255,0.15);
}

.cta-form button {
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-form button:hover {
  background: #ff5252;
  transform: scale(1.02);
}

.cta-form button:active {
  transform: scale(0.98);
}

/* Footer */
.footer {
  background: var(--light);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--light-gray);
}

.footer p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.footer .brand {
  font-weight: 700;
  color: var(--navy);
}

/* Responsive */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero .tagline {
    font-size: 1.1rem;
  }

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

  .about h2 {
    font-size: 1.8rem;
  }

  .cta h2 {
    font-size: 1.8rem;
  }
}
