/* 
 * Zgentleflow - Main Stylesheet
 * Version: 1.0
 * Last updated: 2026
 */

/* --------------------------------
 * Table of Contents
 * 1. Base Styles
 * 2. Typography
 * 3. Layout & Grid
 * 4. Navigation
 * 5. Buttons
 * 6. Headers & Heroes
 * 7. Content Sections
 * 8. Cards & Containers
 * 9. Forms
 * 10. Footer
 * 11. Utilities
 * 12. Cookie Consent
 * 13. Animations
 * 14. Media Queries
 * --------------------------------
 */

/* --------------------------------
 * 1. Base Styles
 * --------------------------------
 */
:root {
  
  --peach: #FFCDB2;
  --lavender: #E2D1F9;
  --mint: #B5EAD7;
  
  
  --dark-terracotta: #C17A67;
  --deep-purple: #6B5CA5;
  
  
  --cream: #FFF8E7;
  --light-gray: #F5F5F5;
  
  
  --primary-text: #333333;
  --secondary-text: #666666;
  
  
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--primary-text);
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-light-custom {
  background-color: var(--light-gray);
}

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

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
  position: relative;
  padding-bottom: 1rem;
}

h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--peach), var(--lavender));
  border-radius: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(50%);
}

.text-center h2:after {
  margin: 0 auto;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

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

p.lead {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

a {
  color: var(--deep-purple);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.iti {
  width: 100%;
}

/* --------------------------------
 * 3. Layout & Grid
 * --------------------------------
 */
.container {
  max-width: 1200px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section {
  padding: 5rem 0;
}

.min-vh-75 {
  min-height: 75vh;
}

.row > * {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* --------------------------------
 * 4. Navigation
 * --------------------------------
 */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  margin-right: 2rem;
}

.navbar-brand img {
  transition: transform var(--transition-fast);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  color: var(--primary-text);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.nav-item {
  margin: 0 0.25rem;
}

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1rem !important;
  color: var(--primary-text);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--peach), var(--dark-terracotta));
  left: 1rem;
  bottom: 0.5rem;
  transition: width var(--transition-fast);
  border-radius: 1.5px;
}

.nav-link:hover, .nav-link.active {
  color: var(--dark-terracotta);
}

.nav-link:hover:after, .nav-link.active:after {
  width: calc(100% - 2rem);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-md);
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
  }
  
  .nav-link:after {
    left: 0;
    bottom: 0.25rem;
  }
  
  .nav-link:hover:after, .nav-link.active:after {
    width: 50px;
  }
}

/* --------------------------------
 * 5. Buttons
 * --------------------------------
 */

.blob-button-container {
  display: inline-block;
  position: relative;
  z-index: 1;
}


.blob-button {
  display: inline-block;
  position: relative;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: linear-gradient(45deg, var(--dark-terracotta), var(--deep-purple));
  border: none;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition-fast);
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blob-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--dark-terracotta), var(--deep-purple), var(--peach), var(--lavender));
  background-size: 400% 400%;
  border-radius: 30px;
  z-index: -1;
  transition: opacity var(--transition-fast);
  animation: gradient-shift 8s ease infinite;
  opacity: 0;
}

.blob-button:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blob-button:hover:before {
  opacity: 1;
}

.blob-button:active {
  transform: translateY(0);
}


.blob-button-secondary {
  display: inline-block;
  position: relative;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--primary-text);
  background: linear-gradient(45deg, var(--mint), var(--lavender));
  border: none;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition-fast);
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blob-button-secondary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--mint), var(--lavender), var(--peach), var(--cream));
  background-size: 400% 400%;
  border-radius: 30px;
  z-index: -1;
  transition: opacity var(--transition-fast);
  animation: gradient-shift 8s ease infinite;
  opacity: 0;
}

.blob-button-secondary:hover {
  transform: translateY(-3px);
  color: var(--primary-text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blob-button-secondary:hover:before {
  opacity: 1;
}

.blob-button-secondary:active {
  transform: translateY(0);
}


.blob-button-small {
  display: inline-block;
  position: relative;
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: linear-gradient(45deg, var(--dark-terracotta), var(--deep-purple));
  border: none;
  border-radius: 25px;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition-fast);
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blob-button-small:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--dark-terracotta), var(--deep-purple), var(--peach), var(--lavender));
  background-size: 400% 400%;
  border-radius: 25px;
  z-index: -1;
  transition: opacity var(--transition-fast);
  animation: gradient-shift 8s ease infinite;
  opacity: 0;
}

.blob-button-small:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.blob-button-small:hover:before {
  opacity: 1;
}

.blob-button-small:active {
  transform: translateY(0);
}


.blob-button-small.outline {
  background: transparent;
  color: var(--primary-text);
  border: 2px solid var(--secondary-text);
  box-shadow: none;
}

.blob-button-small.outline:before {
  background: linear-gradient(45deg, var(--light-gray), var(--cream));
}

.blob-button-small.outline:hover {
  color: var(--primary-text);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}


.cookie-settings-button {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  color: var(--secondary-text);
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.cookie-settings-button:hover {
  color: var(--dark-terracotta);
}


@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* --------------------------------
 * 6. Headers & Heroes
 * --------------------------------
 */
.jarallax {
  position: relative;
  z-index: 0;
}

.jarallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}


.hero-section {
  position: relative;
  padding: 10rem 0 6rem;
  background-color: var(--light-gray);
  overflow: hidden;
}

.hero-section .jarallax-img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}

.hero-content {
  color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}


.boutique-hero,
.marches-hero {
  padding: 10rem 0 4rem;
}

.contact-hero {
  background: linear-gradient(135deg, var(--peach), var(--lavender), var(--mint));
  padding: 10rem 0 4rem;
}

.contact-hero .hero-content {
  background-color: transparent;
  backdrop-filter: none;
}

.contact-hero .hero-content h1,
.contact-hero .hero-content p {
  color: var(--primary-text);
}

/* --------------------------------
 * 7. Content Sections
 * --------------------------------
 */

.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
  position: relative;
  z-index: 1;
}


.gallery-section {
  position: relative;
}

.gallery-item {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}


.techniques-section {
  position: relative;
  background-color: var(--light-gray);
}

.technique-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.technique-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.technique-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(45deg, var(--lavender), var(--peach));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.technique-icon i {
  font-size: 1.75rem;
  color: var(--primary-text);
}


.workshops-section {
  position: relative;
  overflow: hidden;
}

.workshops-image {
  position: relative;
  z-index: 1;
}

.workshops-schedule {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
}

.workshops-schedule h4 {
  margin-bottom: 1rem;
}

.workshops-schedule ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.workshops-schedule li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.workshops-schedule li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--dark-terracotta);
  border-radius: 50%;
}


.contact-form-section {
  position: relative;
}

.contact-form-container {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}


.collection-highlight,
.past-events-section {
  position: relative;
  padding: 6rem 0;
  color: #fff;
}

.highlight-content {
  padding: 2.5rem;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
}

.highlight-content h2,
.highlight-content p {
  color: #fff;
}


.collection-intro,
.calendar-intro {
  padding-bottom: 2rem;
}


.products-section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.product-card {
  background-color: #fff;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  transition: transform var(--transition-medium);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-details {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.product-card.horizontal {
  display: flex;
  flex-direction: column;
}


.commissions-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.commissions-image {
  position: relative;
  z-index: 1;
}


.testimonials-section {
  position: relative;
  padding: 5rem 0;
}

.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
}

.testimonial-card:before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 5rem;
  color: var(--peach);
  opacity: 0.3;
}

.testimonial-content p {
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}

.testimonial-author h5 {
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  margin-bottom: 0;
  color: var(--secondary-text);
  font-size: 0.875rem;
}


.events-section {
  position: relative;
  padding: 5rem 0;
}

.event-card {
  background-color: #fff;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.event-date {
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-terracotta), var(--deep-purple));
  color: #fff;
}

.event-date .month {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.25rem 0;
}

.event-date .year {
  font-size: 0.875rem;
}

.event-info {
  padding: 1.5rem;
  flex-grow: 1;
}

.event-location {
  color: var(--secondary-text);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.event-location i {
  color: var(--dark-terracotta);
  margin-right: 0.5rem;
}

.event-details {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  font-size: 0.9375rem;
}

.event-details li {
  margin-bottom: 0.5rem;
}


.event-card.horizontal {
  flex-direction: row;
}

.event-date-horizontal {
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-terracotta), var(--deep-purple));
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.success-stories-section {
  position: relative;
  padding: 5rem 0;
}

.story-card {
  background-color: #fff;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.story-image {
  position: relative;
  overflow: hidden;
}

.story-content {
  padding: 1.5rem;
}


.newsletter-section {
  position: relative;
  padding: 5rem 0;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}


.contact-info-section {
  padding: 5rem 0 3rem;
}

.contact-info-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(45deg, var(--lavender), var(--peach));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 1.75rem;
  color: var(--primary-text);
}

.hours-list, .contact-info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.hours-list li, .contact-info-card ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.hours-list li:before, .contact-info-card ul li:before {
  content: '\f111';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.25rem;
  font-size: 0.5rem;
  color: var(--dark-terracotta);
}

.contact-note {
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 1.5rem;
}


.map-section {
  padding: 5rem 0;
}

.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.directions-info {
  max-width: 800px;
  margin: 0 auto;
}


.faq-section {
  padding: 5rem 0;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  background-color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--dark-terracotta);
  background-color: var(--light-gray);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--light-gray);
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--light-gray);
}


.thanks-section {
  padding: 10rem 0 6rem;
}

.thanks-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.thanks-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: var(--dark-terracotta);
}


.legal-section {
  padding: 10rem 0 5rem;
}

.legal-content {
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.legal-section-content {
  margin-bottom: 3rem;
}

.legal-section-content:last-child {
  margin-bottom: 0;
}

.legal-section-content h2 {
  font-size: 1.75rem;
  margin-top: 1.5rem;
}

.legal-section-content h2:after {
  margin-left: 0;
  margin-right: auto;
  width: 60px;
}

.legal-section-content h3 {
  font-size: 1.375rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}


.related-content-section {
  padding: 5rem 0;
}

.related-card {
  background-color: #fff;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.related-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.related-image {
  position: relative;
  overflow: hidden;
}

.related-image img {
  transition: transform var(--transition-medium);
}

.related-card:hover .related-image img {
  transform: scale(1.05);
}

.related-info {
  padding: 1.5rem;
}

/* --------------------------------
 * 8. Cards & Containers
 * --------------------------------
 */

.rounded-blob {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  transition: border-radius var(--transition-medium);
}

img.rounded-blob:hover {
  border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
}

/* --------------------------------
 * 9. Forms
 * --------------------------------
 */
.form-control, .form-select {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  transition: all var(--transition-fast);
  box-shadow: none;
}

.form-control:focus, .form-select:focus {
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(226, 209, 249, 0.25);
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  border: 1px solid var(--light-gray);
  transition: all var(--transition-fast);
}

.form-check-input:checked {
  background-color: var(--dark-terracotta);
  border-color: var(--dark-terracotta);
}

.form-check-input:focus {
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(226, 209, 249, 0.25);
}

.form-switch .form-check-input {
  width: 2.5rem;
}

.form-check-label {
  font-size: 0.9375rem;
}

/* --------------------------------
 * 10. Footer
 * --------------------------------
 */
footer {
  background-color: var(--light-gray);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

footer h4:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--peach), var(--lavender));
  bottom: 0;
  left: 0;
  border-radius: 1.5px;
}

footer p {
  font-size: 0.9375rem;
}

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

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

.footer-links a {
  color: var(--secondary-text);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

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

/* --------------------------------
 * 11. Utilities
 * --------------------------------
 */
.object-fit-cover {
  object-fit: cover;
}

/* --------------------------------
 * 12. Cookie Consent
 * --------------------------------
 */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  padding: 1.5rem 0;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-buttons {
  display: flex;
  flex-shrink: 0;
  gap: 0.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

@media (max-width: 767.98px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
  }
}

/* --------------------------------
 * 13. Animations
 * --------------------------------
 */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* --------------------------------
 * 14. Media Queries
 * --------------------------------
 */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-section {
    padding: 8rem 0 5rem;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 3.5rem 0;
  }
  
  .hero-section {
    padding: 7rem 0 4rem;
  }
  
  .technique-card,
  .product-card,
  .contact-info-card,
  .testimonial-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  p.lead {
    font-size: 1.125rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    padding: 6rem 0 3rem;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .highlight-content {
    padding: 1.5rem;
  }
  
  .blob-button,
  .blob-button-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .event-card.horizontal {
    flex-direction: column;
  }
  
  .event-date-horizontal {
    padding: 1rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .hero-section {
    padding: 5rem 0 2.5rem;
  }
  
  .technique-card,
  .product-card,
  .contact-info-card {
    padding: 1.5rem;
  }
  
  .testimonial-card,
  .event-card .event-info,
  .story-content,
  .related-info {
    padding: 1.25rem;
  }
  
  .product-info {
    padding: 1.25rem;
  }
  
  .event-date {
    padding: 1rem;
  }
  
  .event-date .day {
    font-size: 1.75rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .col-md-6.text-md-end {
    text-align: center !important;
    margin-top: 1rem;
  }
}

/* --------------------------------
 * Mobile Bottom Navigation
 * --------------------------------
 */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0.75rem 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.mobile-nav-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  text-align: center;
}

.mobile-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--secondary-text);
  font-size: 0.75rem;
  transition: color var(--transition-fast);
}

.mobile-nav-link i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--dark-terracotta);
}

@media (max-width: 767.98px) {
  .mobile-nav {
    display: block;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  footer {
    padding-bottom: 5rem;
  }
  
  .cookie-consent {
    border-radius: 15px 15px 0 0;
    bottom: 70px;
  }
}


.modal {
  z-index: 1060;
}