/* 
* VitaLemon - Main Stylesheet
* Theme: Lemon Drinks for Male Energy
* Version: 1.0
*/

/* Base Styles & Variables */
:root {
  --primary-color: #f2c94c; /* Lemon yellow */
  --primary-dark: #e0b93d;
  --secondary-color: #27ae60; /* Fresh green */
  --secondary-dark: #219653;
  --tertiary-color: #2d9cdb; /* Blue for accent */
  --dark-color: #333333;
  --gray-dark: #4f4f4f;
  --gray: #828282;
  --gray-light: #e0e0e0;
  --light-color: #f9f9f9;
  --white: #ffffff;
  --black: #000000;
  --success: #6fcf97;
  --warning: #f2994a;
  --danger: #eb5757;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-main: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-heading: 'Montserrat', 'Open Sans', sans-serif;
}

/* Reset & Base Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.6rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-dark);
  text-decoration: none;
}

ul, ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-color: var(--primary-color);
}

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

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--dark-color);
  border-color: var(--gray-light);
}

.btn-tertiary:hover {
  background-color: var(--gray-light);
  color: var(--dark-color);
}

.btn-sm {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  font-weight: 700;
  font-size: 2.4rem;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 1rem;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--secondary-color);
}

nav ul li a.active {
  background-color: rgba(39, 174, 96, 0.1);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 2.4rem;
}

/* Hero Section */
.hero {
  padding: 8rem 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/pattern.svg');
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

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

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

.hero-content h1 {
  font-size: 4.8rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: var(--gray-dark);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-left: 2rem;
}

.hero-image img {
  max-width: 100%;
  max-height: 500px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
}

/* Features Section */
.features {
  padding: 8rem 0;
  background-color: var(--white);
}

.features h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.feature-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 6rem;
  height: 6rem;
  stroke: var(--secondary-color);
}

.feature-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonial-slider {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  max-width: 500px;
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  border: 3px solid var(--primary-color);
}

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

.testimonial-content {
  text-align: center;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-content h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--primary-color);
  margin-top: 1rem;
}

/* Newsletter */
.newsletter {
  padding: 6rem 0;
  background-color: var(--secondary-color);
  color: var(--white);
}

.newsletter-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.newsletter-content p {
  margin-bottom: 3rem;
  font-size: 1.8rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.8rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.6rem;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 6rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-logo h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 2rem;
}

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

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

.footer-links ul li a {
  color: var(--gray-light);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-contact h4 {
  color: var(--white);
  margin-bottom: 2rem;
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 1rem;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Banner */
.page-banner {
  background-color: var(--light-color);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/pattern.svg');
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.page-banner p {
  font-size: 1.8rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Recipes Section */
.recipes-section {
  padding: 6rem 0;
}

.recipe-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.filter-btn {
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  color: var(--gray-dark);
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-color: var(--primary-color);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 4rem;
}

.recipe-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.recipe-image {
  position: relative;
}

.recipe-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.recipe-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--primary-color);
  color: var(--dark-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
}

.recipe-content {
  padding: 2.5rem;
}

.recipe-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-size: 1.4rem;
}

.recipe-meta span {
  display: flex;
  align-items: center;
}

.recipe-meta span i {
  margin-right: 0.5rem;
}

.recipe-ingredients,
.recipe-instructions,
.recipe-benefits {
  margin-top: 2.5rem;
}

.recipe-ingredients h4,
.recipe-instructions h4,
.recipe-benefits h4 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.recipe-instructions ol {
  padding-left: 2rem;
}

.recipe-instructions ol li {
  margin-bottom: 1rem;
}

/* Nutrition Info */
.nutrition-info {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.nutrition-info h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.nutrition-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.nutrition-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.nutrition-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nutrition-icon svg {
  width: 5rem;
  height: 5rem;
  stroke: var(--secondary-color);
}

.nutrition-item h3 {
  margin-bottom: 1rem;
}

/* Video Section */
.video-categories {
  padding: 4rem 0 2rem;
}

.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.featured-video {
  padding: 4rem 0;
}

.video-wrapper {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.video-player {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-description {
  padding: 2.5rem;
}

.video-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-size: 1.4rem;
  flex-wrap: wrap;
}

.video-meta span {
  display: flex;
  align-items: center;
}

.video-meta span i {
  margin-right: 0.5rem;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.video-tags span {
  background-color: var(--light-color);
  color: var(--gray-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 1.4rem;
}

.video-grid-section {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.video-grid-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.video-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
}

.video-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.play-button svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary-color);
}

.video-thumbnail:hover .play-button {
  background-color: var(--primary-color);
}

.video-thumbnail:hover .play-button svg {
  stroke: var(--dark-color);
}

.video-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 1.2rem;
}

.video-content {
  padding: 2rem;
}

.video-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.video-content p {
  margin-bottom: 1.5rem;
  color: var(--gray-dark);
}

.video-link {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  transition: var(--transition);
}

.video-link:hover {
  color: var(--secondary-dark);
}

/* Video Modal */
.video-modal .modal-content {
  width: 90%;
  max-width: 900px;
}

.modal-video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.modal-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Blog Section */
.blog-filter {
  padding: 4rem 0 2rem;
}

.filter-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.search-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  overflow: hidden;
}

.search-form input {
  flex: 1;
  border: none;
  padding: 1.2rem 1.8rem;
  font-size: 1.6rem;
}

.search-form button {
  background-color: var(--primary-color);
  border: none;
  padding: 0 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form button svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--dark-color);
}

.blog-posts {
  padding: 4rem 0 6rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 4rem;
}

.post-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.post-image {
  position: relative;
  display: block;
}

.post-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-category {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--primary-color);
  color: var(--dark-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
}

.post-content {
  padding: 2.5rem;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-size: 1.4rem;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
}

.post-meta span i {
  margin-right: 0.5rem;
}

.post-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.post-content h2 a {
  color: var(--dark-color);
  transition: var(--transition);
}

.post-content h2 a:hover {
  color: var(--secondary-color);
}

.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 1.5rem;
}

.read-more i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 5rem;
}

.pagination-btn {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.pagination-btn:hover,
.pagination-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.pagination-btn.next {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.pagination-btn.next svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--white);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  align-items: start;
}

.contact-info h2,
.contact-form-container h2 {
  margin-bottom: 2.5rem;
}

.info-items {
  margin-top: 3rem;
}

.info-item {
  display: flex;
  margin-bottom: 3rem;
}

.info-icon {
  width: 5rem;
  height: 5rem;
  background-color: rgba(39, 174, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
}

.info-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--secondary-color);
}

.info-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.info-content p {
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
}

.social-connect {
  margin-top: 3rem;
}

.social-connect h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.checkbox-group label {
  font-weight: normal;
  color: var(--gray);
  font-size: 1.4rem;
}

.map-section {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background-color: var(--white);
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.8rem;
}

.faq-toggle {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 2rem 2rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* About Us Page */
.story-section {
  padding: 6rem 0;
}

.story-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  align-items: center;
}

.story-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-section {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
}

.mission-box,
.values-box {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.values-box ul {
  list-style-type: none;
  padding: 0;
}

.values-box ul li {
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
}

.values-box ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.team-section {
  padding: 6rem 0;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.team-member {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  margin: 2rem 0 0.5rem;
  font-size: 2rem;
}

.team-member p {
  color: var(--gray-dark);
  padding: 0 2rem;
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--dark-color);
  transition: var(--transition);
}

.member-social a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.approach-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.approach-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.approach-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  align-items: center;
}

.approach-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonials-section {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1.5rem;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1.8rem;
}

.testimonial-author p {
  margin: 0;
  color: var(--gray);
  font-size: 1.4rem;
}

.cta-section {
  padding: 8rem 0;
  background-color: var(--secondary-color);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-content p {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background-color: var(--white);
  color: var(--secondary-color);
  border-color: var(--white);
}

.cta-buttons .btn-primary:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
  background-color: var(--white);
  color: var(--secondary-color);
  border-color: var(--white);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-more {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--gray);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--dark-color);
}

.modal h3 {
  margin-bottom: 1.5rem;
}

.modal p {
  margin-bottom: 2.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  html {
    font-size: 58%;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .hero-image {
    justify-content: center;
    margin-left: 0;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .recipe-card,
  .video-card,
  .post-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    margin-bottom: 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .filter-btn {
    font-size: 1.4rem;
    padding: 0.6rem 1.2rem;
  }
}
