/* BalanceNatura - Main Styles */

:root {
  --primary-burgundy: #7d2e2e;
  --primary-burgundy-dark: #5c1f1f;
  --primary-burgundy-light: #9d4343;
  --text-dark: #2c2c2c;
  --text-light: #6b6b6b;
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --border-color: #e5e5e5;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-light);
}

/* Navigation */
.navbar {
  padding: 1rem 0;
}

.navbar-brand.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-burgundy) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-burgundy) !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-burgundy);
  border-color: var(--primary-burgundy);
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-burgundy-dark);
  border-color: var(--primary-burgundy-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-burgundy);
  border-color: var(--primary-burgundy);
}

.btn-outline-primary:hover {
  background-color: var(--primary-burgundy);
  border-color: var(--primary-burgundy);
}

.btn-secondary {
  background-color: var(--text-light);
  border-color: var(--text-light);
}

/* Hero Section */
.hero {
  position: relative;
  margin-bottom: 3rem;
}

.hero-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  text-align: center;
}

.hero-content h1,
.hero-content .lead {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Page Header */
.page-header {
  background-color: var(--bg-light);
  padding: 3rem 0;
  margin-bottom: 2rem;
  text-align: center;
}

/* Section Padding */
.section-padding {
  padding: 4rem 0;
}

.section-padding-small {
  padding: 2rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

/* Cards */
.benefit-card,
.tip-card,
.principle-card,
.lifestyle-card,
.antiaging-card,
.audience-card,
.offer-card,
.tip-box,
.info-box {
  padding: 2rem;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.3s ease;
}

.benefit-card:hover,
.tip-card:hover,
.principle-card:hover,
.lifestyle-card:hover,
.antiaging-card:hover,
.tip-box:hover,
.info-box:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

/* Category Cards */
.category-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  height: 100%;
}

.category-card img {
  height: 300px;
  object-fit: cover;
}

.category-content {
  padding: 2rem;
}

/* Product Cards */
.product-card {
  padding: 1.5rem;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-category-card {
  padding: 2rem;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  height: 100%;
}

.product-category-card img {
  height: 250px;
  object-fit: cover;
}

.product-category-card ul {
  list-style: none;
  padding-left: 0;
}

.product-category-card ul li:before {
  content: "✓ ";
  color: var(--primary-burgundy);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Review Cards */
.review-card {
  padding: 2rem;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  height: 100%;
}

.review-author {
  font-weight: 600;
  color: var(--primary-burgundy);
  margin-top: 1rem;
}

/* FAQ */
.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  color: var(--primary-burgundy);
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

.blog-card > div:not(.blog-category) {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background: var(--primary-burgundy);
  color: white;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  margin: 1rem 1.5rem 0;
  border-radius: 20px;
}

.blog-excerpt {
  font-size: 0.95rem;
  margin: 1rem 0;
}

.blog-meta {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Contact */
.contact-info-card {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.contact-info-card:last-child {
  border-bottom: none;
}

.contact-info-card h4 {
  color: var(--primary-burgundy);
  margin-bottom: 0.5rem;
}

.map-placeholder {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.map-placeholder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Forms */
.form-control {
  border-radius: 4px;
  border: 1px solid var(--border-color);
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-burgundy);
  box-shadow: 0 0 0 0.2rem rgba(125, 46, 46, 0.25);
}

.form-check-label a {
  color: var(--primary-burgundy);
  text-decoration: underline;
}

/* Thank You Page */
.thank-you-section {
  padding: 6rem 0;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--primary-burgundy);
  margin-bottom: 2rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-burgundy-dark), var(--primary-burgundy));
  color: white;
  padding: 4rem 0;
}

.cta-section h2,
.cta-section .lead {
  color: white;
}

/* Legal Content */
.legal-content {
  font-size: 0.95rem;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-burgundy);
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

.disclaimer-highlight .alert {
  border-left: 4px solid var(--primary-burgundy);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-dark);
}

.cookie-banner a {
  color: var(--primary-burgundy);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-image {
    height: 400px;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .navbar-nav {
    padding-top: 1rem;
  }

  .cookie-banner .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .hero-image {
    height: 300px;
  }
}
