/* RECURVE - Prosthetic Breasts for African Women - Styles */

/* === Reset and Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* RECURVE Brand Colors */
  --color-pink: #ff7bac;
  --color-pink-light: #ffd6ea;
  --color-pink-dark: #e55b8f;
  --color-purple: #400096;
  --color-purple-light: #ece6f7;
  --color-purple-dark: #230861;
  --color-gold: #B8860B;
  --color-gold-light: #DAA520;
  --color-gold-dark: #8B6914;
  --color-neutral: #8B7355;
  --color-neutral-light: #A68B6B;
  --color-neutral-dark: #6B5B44;
  --color-cream: #FFF8F3;
  --color-charcoal: #2C2825;
  --color-white: #ffffff;
  --color-gray-light: #f9fafb;
  --color-gray: #6b7280;
  --color-gray-dark: #374151;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--color-gray-dark);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* === Layout === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--color-pink);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-pink-dark);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 123, 172, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.05);
}

.btn-green {
  background-color: #10b981;
  color: var(--color-white);
}

.btn-green:hover {
  background-color: #059669;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--color-gray-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 20px;
  border-top: 1px solid #e5e7eb;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--color-gray-dark);
}

/* === Hero Section === */
.hero {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-pink-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-text .highlight-pink {
  color: var(--color-pink);
}

.hero-text .highlight-gold {
  color: var(--color-gold);
}

.hero-text .subtitle {
  font-size: 20px;
  color: var(--color-gray-dark);
  margin-bottom: 16px;
}

.hero-text .description {
  font-family: 'Dancing Script', cursive;
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: 32px;
  min-height: 48px;
}

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

.trust-indicators {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--color-gray);
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-indicator::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: 500px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Section Headers === */
.section {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--color-charcoal);
}

.section-header p {
  font-size: 18px;
  color: var(--color-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* === Products Section === */
.products {
  background-color: var(--color-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.product-image {
  height: 300px;
  background-color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-content {
  padding: 32px;
}

.product-title {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--color-purple);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.product-subtitle {
  font-weight: 600;
  color: var(--color-gray-dark);
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-bottom: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--color-gray-dark);
}

.feature-list li::before {
  content: '•';
  color: var(--color-pink);
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
}

.product-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-box {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-pink-light) 100%);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

.cta-box h3 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--color-purple);
}

.cta-box p {
  font-size: 18px;
  color: var(--color-gray-dark);
  margin-bottom: 32px;
}

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

/* === Footer === */
.footer {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 80px 20px 0;
}

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

.footer-brand p {
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-brand .delivery-info {
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 24px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-whatsapp { background-color: #10b981; }
.social-email { background-color: #3b82f6; }
.social-phone { background-color: #ec4899; }

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--color-white);
}

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

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

.footer-links a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

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

.trust-badges {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #9ca3af;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #9ca3af;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a:hover {
  color: var(--color-pink);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-text h1 {
    font-size: 36px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons,
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

.blog-title {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.blog-excerpt {
    color: #666666;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

.blog-link:hover {
    text-decoration: underline;
}

/* Consultation Section */
.consultation {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.consultation .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.consultation-description {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.consultation-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.consultation-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    color: #4ade80;
    font-weight: bold;
}

.consultation .btn-primary {
    background-color: white;
    color: #1a1a1a;
}

.consultation .btn-primary:hover {
    background-color: #f0f0f0;
}

.consultation-image img {
    border-radius: 1rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.brand-description {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer .btn-outline {
    color: white;
    border-color: #444444;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.footer .btn-outline:hover {
    background-color: #333333;
    border-color: #666666;
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-badge {
    color: #4ade80;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #888888;
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.875rem;
}

.legal-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content,
    .about-content,
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-stats {
        justify-content: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .products,
    .about,
    .testimonials,
    .blog,
    .consultation {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .products-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}