/* Ventfaventin - Main Stylesheet */

/* CSS Variables */
:root {
  /* Colors */
  --ventfaventin-dark: #2C3639;
  --ventfaventin-medium: #3F4E4F;
  --ventfaventin-accent: #A27B5C;
  --ventfaventin-light: #DCD7C9;
  
  /* Spacing */
  --ventfaventin-space-xs: 0.25rem;
  --ventfaventin-space-sm: 0.5rem;
  --ventfaventin-space-md: 1rem;
  --ventfaventin-space-lg: 2rem;
  --ventfaventin-space-xl: 3rem;
  --ventfaventin-space-xxl: 5rem;
  
  /* Typography */
  --ventfaventin-font-size-xs: 0.75rem;
  --ventfaventin-font-size-sm: 0.875rem;
  --ventfaventin-font-size-md: 1rem;
  --ventfaventin-font-size-lg: 1.25rem;
  --ventfaventin-font-size-xl: 1.5rem;
  --ventfaventin-font-size-xxl: 2.5rem;
  --ventfaventin-font-size-hero: 3.5rem;
  
  /* Border Radius */
  --ventfaventin-radius-sm: 4px;
  --ventfaventin-radius-md: 8px;
  --ventfaventin-radius-lg: 16px;
  --ventfaventin-radius-full: 9999px;
  
  /* Transitions */
  --ventfaventin-transition-fast: 0.2s ease;
  --ventfaventin-transition-normal: 0.3s ease;
  --ventfaventin-transition-slow: 0.5s ease;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--ventfaventin-dark);
  color: var(--ventfaventin-light);
  line-height: 1.6;
  scroll-behavior: smooth;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--ventfaventin-space-md);
  color: var(--ventfaventin-light);
}

h1 {
  font-size: var(--ventfaventin-font-size-hero);
}

h2 {
  font-size: var(--ventfaventin-font-size-xxl);
}

h3 {
  font-size: var(--ventfaventin-font-size-xl);
}

p {
  margin-bottom: var(--ventfaventin-space-md);
}

a {
  color: var(--ventfaventin-accent);
  text-decoration: none;
  transition: color var(--ventfaventin-transition-fast);
}

a:hover {
  color: var(--ventfaventin-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: var(--ventfaventin-space-xl) 0;
}

.ventfaventin-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--ventfaventin-space-md);
}

/* Logo */
.ventfaventin-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: var(--ventfaventin-font-size-xl);
  font-weight: 700;
  color: var(--ventfaventin-light);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.ventfaventin-logo span {
  color: var(--ventfaventin-accent);
}

/* Header */
.ventfaventin-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: var(--ventfaventin-space-md) 0;
  transition: transform var(--ventfaventin-transition-normal), 
              background-color var(--ventfaventin-transition-normal);
}

.ventfaventin-header.scrolled {
  background-color: var(--ventfaventin-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-100%);
}

.ventfaventin-header.visible {
  transform: translateY(0);
}

.ventfaventin-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation */
.ventfaventin-nav {
  display: flex;
  align-items: center;
}

.ventfaventin-nav-links {
  display: flex;
  list-style: none;
  gap: var(--ventfaventin-space-lg);
}

.ventfaventin-nav-link {
  font-size: var(--ventfaventin-font-size-md);
  font-weight: 500;
  position: relative;
  color: var(--ventfaventin-light);
}

.ventfaventin-nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--ventfaventin-accent);
  transition: width var(--ventfaventin-transition-normal);
}

.ventfaventin-nav-link:hover:after,
.ventfaventin-nav-link.active:after {
  width: 100%;
}

/* Mobile Menu */
.ventfaventin-hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 110;
}

.ventfaventin-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ventfaventin-light);
  margin: 5px 0;
  transition: var(--ventfaventin-transition-fast);
}

.ventfaventin-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ventfaventin-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.ventfaventin-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ventfaventin-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--ventfaventin-medium);
  padding: var(--ventfaventin-space-xxl) var(--ventfaventin-space-lg);
  transition: right var(--ventfaventin-transition-normal);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ventfaventin-mobile-nav.active {
  right: 0;
}

.ventfaventin-mobile-nav-links {
  list-style: none;
}

.ventfaventin-mobile-nav-links li {
  margin-bottom: var(--ventfaventin-space-lg);
}

.ventfaventin-mobile-nav-link {
  font-size: var(--ventfaventin-font-size-lg);
  font-weight: 600;
  color: var(--ventfaventin-light);
  transition: color var(--ventfaventin-transition-fast);
}

.ventfaventin-mobile-nav-link:hover {
  color: var(--ventfaventin-accent);
}

.ventfaventin-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ventfaventin-transition-normal),
              visibility var(--ventfaventin-transition-normal);
}

.ventfaventin-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.ventfaventin-hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--ventfaventin-dark);
}

.ventfaventin-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(162, 123, 92, 0.3) 0%, rgba(44, 54, 57, 0.6) 100%);
  z-index: 1;
}

.ventfaventin-hero-content {
  position: relative;
  z-index: 2;
}

.ventfaventin-hero-title {
  font-size: var(--ventfaventin-font-size-hero);
  margin-bottom: var(--ventfaventin-space-md);
  max-width: 800px;
}

.ventfaventin-hero-subtitle {
  font-size: var(--ventfaventin-font-size-xl);
  margin-bottom: var(--ventfaventin-space-lg);
  max-width: 600px;
}

.ventfaventin-hero-text {
  font-size: var(--ventfaventin-font-size-lg);
  margin-bottom: var(--ventfaventin-space-xl);
  max-width: 500px;
}

/* Buttons */
.ventfaventin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--ventfaventin-space-sm) var(--ventfaventin-space-lg);
  background-color: var(--ventfaventin-accent);
  color: var(--ventfaventin-light);
  border: none;
  border-radius: var(--ventfaventin-radius-md);
  font-weight: 500;
  font-size: var(--ventfaventin-font-size-md);
  cursor: pointer;
  transition: background-color var(--ventfaventin-transition-fast),
              transform var(--ventfaventin-transition-fast);
  text-decoration: none;
}

.ventfaventin-btn:hover {
  background-color: #b48c6d;
  transform: translateY(-2px);
  color: var(--ventfaventin-light);
}

.ventfaventin-btn-secondary {
  background-color: transparent;
  border: 2px solid var(--ventfaventin-accent);
}

.ventfaventin-btn-secondary:hover {
  background-color: var(--ventfaventin-accent);
}

.ventfaventin-btn i {
  margin-right: var(--ventfaventin-space-sm);
}

/* Section Titles */
.ventfaventin-section-title {
  position: relative;
  margin-bottom: var(--ventfaventin-space-xl);
  display: inline-block;
}

.ventfaventin-section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--ventfaventin-accent);
}

/* Products */
.ventfaventin-products {
  background-color: var(--ventfaventin-medium);
  padding: var(--ventfaventin-space-xxl) 0;
}

.ventfaventin-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--ventfaventin-space-lg);
}

.ventfaventin-product {
  background-color: var(--ventfaventin-dark);
  border-radius: var(--ventfaventin-radius-md);
  overflow: hidden;
  transition: transform var(--ventfaventin-transition-normal);
}

.ventfaventin-product:hover {
  transform: translateY(-5px);
}

.ventfaventin-product-image {
  height: 200px;
  background-color: var(--ventfaventin-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ventfaventin-product-content {
  padding: var(--ventfaventin-space-lg);
}

.ventfaventin-product-title {
  font-size: var(--ventfaventin-font-size-lg);
  margin-bottom: var(--ventfaventin-space-sm);
}

.ventfaventin-product-description {
  font-size: var(--ventfaventin-font-size-md);
  margin-bottom: var(--ventfaventin-space-md);
  color: var(--ventfaventin-light);
  opacity: 0.9;
}

.ventfaventin-product-price {
  font-size: var(--ventfaventin-font-size-lg);
  font-weight: 700;
  color: var(--ventfaventin-accent);
  margin-bottom: var(--ventfaventin-space-md);
}

.ventfaventin-product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Events Calendar */
.ventfaventin-events {
  background-color: var(--ventfaventin-dark);
  padding: var(--ventfaventin-space-xxl) 0;
}

.ventfaventin-calendar {
  background-color: var(--ventfaventin-medium);
  border-radius: var(--ventfaventin-radius-md);
  overflow: hidden;
  margin-bottom: var(--ventfaventin-space-xl);
}

.ventfaventin-calendar-header {
  background-color: var(--ventfaventin-accent);
  color: var(--ventfaventin-light);
  padding: var(--ventfaventin-space-md) var(--ventfaventin-space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ventfaventin-calendar-month {
  font-size: var(--ventfaventin-font-size-lg);
  font-weight: 600;
}

.ventfaventin-calendar-controls {
  display: flex;
  gap: var(--ventfaventin-space-sm);
}

.ventfaventin-calendar-btn {
  background: none;
  border: none;
  color: var(--ventfaventin-light);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ventfaventin-radius-sm);
  transition: background-color var(--ventfaventin-transition-fast);
}

.ventfaventin-calendar-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.ventfaventin-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.ventfaventin-calendar-weekday {
  text-align: center;
  padding: var(--ventfaventin-space-sm);
  font-weight: 600;
  border-bottom: 1px solid rgba(220, 215, 201, 0.1);
}

.ventfaventin-calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  padding: var(--ventfaventin-space-sm);
  border-right: 1px solid rgba(220, 215, 201, 0.1);
  border-bottom: 1px solid rgba(220, 215, 201, 0.1);
  position: relative;
}

.ventfaventin-calendar-day:nth-child(7n) {
  border-right: none;
}

.ventfaventin-calendar-date {
  font-size: var(--ventfaventin-font-size-sm);
  margin-bottom: var(--ventfaventin-space-sm);
}

.ventfaventin-calendar-event {
  font-size: var(--ventfaventin-font-size-xs);
  background-color: var(--ventfaventin-accent);
  color: var(--ventfaventin-light);
  padding: 2px var(--ventfaventin-space-xs);
  border-radius: var(--ventfaventin-radius-sm);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ventfaventin-calendar-day.has-event {
  background-color: rgba(162, 123, 92, 0.1);
}

.ventfaventin-calendar-day.current {
  background-color: rgba(162, 123, 92, 0.2);
}

.ventfaventin-events-list {
  margin-top: var(--ventfaventin-space-xl);
}

.ventfaventin-event {
  display: flex;
  margin-bottom: var(--ventfaventin-space-lg);
  background-color: var(--ventfaventin-medium);
  border-radius: var(--ventfaventin-radius-md);
  overflow: hidden;
}

.ventfaventin-event-date {
  min-width: 80px;
  background-color: var(--ventfaventin-accent);
  color: var(--ventfaventin-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--ventfaventin-space-md);
}

.ventfaventin-event-day {
  font-size: var(--ventfaventin-font-size-xl);
  font-weight: 700;
}

.ventfaventin-event-month {
  font-size: var(--ventfaventin-font-size-sm);
  text-transform: uppercase;
}

.ventfaventin-event-content {
  padding: var(--ventfaventin-space-lg);
  flex-grow: 1;
}

.ventfaventin-event-title {
  font-size: var(--ventfaventin-font-size-lg);
  margin-bottom: var(--ventfaventin-space-sm);
}

.ventfaventin-event-details {
  display: flex;
  gap: var(--ventfaventin-space-md);
  margin-bottom: var(--ventfaventin-space-md);
  color: var(--ventfaventin-light);
  opacity: 0.9;
}

.ventfaventin-event-time,
.ventfaventin-event-location {
  display: flex;
  align-items: center;
  font-size: var(--ventfaventin-font-size-sm);
}

.ventfaventin-event-time i,
.ventfaventin-event-location i {
  margin-right: var(--ventfaventin-space-xs);
  color: var(--ventfaventin-accent);
}

.ventfaventin-event-description {
  font-size: var(--ventfaventin-font-size-md);
  margin-bottom: var(--ventfaventin-space-md);
  color: var(--ventfaventin-light);
  opacity: 0.9;
}

/* FAQs */
.ventfaventin-faqs {
  background-color: var(--ventfaventin-medium);
  padding: var(--ventfaventin-space-xxl) 0;
}

.ventfaventin-faq-item {
  margin-bottom: var(--ventfaventin-space-md);
  background-color: var(--ventfaventin-dark);
  border-radius: var(--ventfaventin-radius-md);
  overflow: hidden;
}

.ventfaventin-faq-question {
  padding: var(--ventfaventin-space-md) var(--ventfaventin-space-lg);
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.ventfaventin-faq-question:after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: transform var(--ventfaventin-transition-fast);
}

.ventfaventin-faq-item.active .ventfaventin-faq-question:after {
  transform: rotate(180deg);
}

.ventfaventin-faq-answer {
  padding: 0 var(--ventfaventin-space-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ventfaventin-transition-normal),
              padding var(--ventfaventin-transition-normal);
}

.ventfaventin-faq-item.active .ventfaventin-faq-answer {
  padding: 0 var(--ventfaventin-space-lg) var(--ventfaventin-space-lg);
  max-height: 1000px;
}

/* Shop */
.ventfaventin-shop {
  background-color: var(--ventfaventin-dark);
  padding: var(--ventfaventin-space-xxl) 0;
}

.ventfaventin-shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ventfaventin-space-md);
  margin-bottom: var(--ventfaventin-space-xl);
}

.ventfaventin-shop-filter {
  padding: var(--ventfaventin-space-sm) var(--ventfaventin-space-md);
  background-color: var(--ventfaventin-medium);
  border-radius: var(--ventfaventin-radius-full);
  font-size: var(--ventfaventin-font-size-sm);
  cursor: pointer;
  transition: background-color var(--ventfaventin-transition-fast);
}

.ventfaventin-shop-filter.active {
  background-color: var(--ventfaventin-accent);
}

.ventfaventin-shop-filter:hover {
  background-color: var(--ventfaventin-accent);
}

/* Contact */
.ventfaventin-contact {
  background-color: var(--ventfaventin-medium);
  padding: var(--ventfaventin-space-xxl) 0;
}

.ventfaventin-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ventfaventin-space-xl);
}

.ventfaventin-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--ventfaventin-space-lg);
}

.ventfaventin-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--ventfaventin-space-md);
}

.ventfaventin-contact-icon {
  min-width: 40px;
  height: 40px;
  background-color: var(--ventfaventin-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ventfaventin-light);
}

.ventfaventin-contact-text h4 {
  font-size: var(--ventfaventin-font-size-md);
  margin-bottom: var(--ventfaventin-space-xs);
}

.ventfaventin-contact-text p {
  font-size: var(--ventfaventin-font-size-md);
  color: var(--ventfaventin-light);
  opacity: 0.9;
}

.ventfaventin-contact-map {
  height: 100%;
  min-height: 300px;
  border-radius: var(--ventfaventin-radius-md);
  overflow: hidden;
}

.ventfaventin-contact-form {
  margin-top: var(--ventfaventin-space-xl);
}

.ventfaventin-form-group {
  margin-bottom: var(--ventfaventin-space-md);
}

.ventfaventin-form-label {
  display: block;
  margin-bottom: var(--ventfaventin-space-xs);
  font-size: var(--ventfaventin-font-size-sm);
}

.ventfaventin-form-input,
.ventfaventin-form-textarea {
  width: 100%;
  padding: var(--ventfaventin-space-md);
  background-color: var(--ventfaventin-dark);
  border: 1px solid rgba(220, 215, 201, 0.2);
  border-radius: var(--ventfaventin-radius-sm);
  color: var(--ventfaventin-light);
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--ventfaventin-font-size-md);
  transition: border-color var(--ventfaventin-transition-fast);
}

.ventfaventin-form-input:focus,
.ventfaventin-form-textarea:focus {
  outline: none;
  border-color: var(--ventfaventin-accent);
}

.ventfaventin-form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Private Coaching */
.ventfaventin-coaching {
  background-color: var(--ventfaventin-dark);
  padding: var(--ventfaventin-space-xxl) 0;
}

.ventfaventin-coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ventfaventin-space-xl);
}

.ventfaventin-coaching-image {
  height: 100%;
  min-height: 400px;
  background-color: var(--ventfaventin-medium);
  border-radius: var(--ventfaventin-radius-md);
  overflow: hidden;
  position: relative;
}

.ventfaventin-coaching-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ventfaventin-coaching-tagline {
  font-size: var(--ventfaventin-font-size-md);
  color: var(--ventfaventin-accent);
  margin-bottom: var(--ventfaventin-space-md);
}

.ventfaventin-coaching-title {
  font-size: var(--ventfaventin-font-size-xxl);
  margin-bottom: var(--ventfaventin-space-lg);
}

.ventfaventin-coaching-text {
  margin-bottom: var(--ventfaventin-space-lg);
}

.ventfaventin-coaching-benefits {
  margin-bottom: var(--ventfaventin-space-lg);
}

.ventfaventin-benefit {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--ventfaventin-space-md);
}

.ventfaventin-benefit-icon {
  min-width: 24px;
  margin-right: var(--ventfaventin-space-md);
  color: var(--ventfaventin-accent);
}

/* Privacy Policy */
.ventfaventin-privacy {
  padding: var(--ventfaventin-space-xxl) 0;
}

.ventfaventin-privacy-section {
  margin-bottom: var(--ventfaventin-space-xl);
}

.ventfaventin-privacy-title {
  font-size: var(--ventfaventin-font-size-lg);
  margin-bottom: var(--ventfaventin-space-md);
}

/* Footer */
.ventfaventin-footer {
  background-color: var(--ventfaventin-dark);
  padding: var(--ventfaventin-space-xl) 0;
  border-top: 1px solid rgba(220, 215, 201, 0.1);
}

.ventfaventin-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--ventfaventin-space-xl);
}

.ventfaventin-footer-logo {
  margin-bottom: var(--ventfaventin-space-md);
}

.ventfaventin-footer-text {
  font-size: var(--ventfaventin-font-size-sm);
  color: var(--ventfaventin-light);
  opacity: 0.8;
  margin-bottom: var(--ventfaventin-space-lg);
}

.ventfaventin-footer-social {
  display: flex;
  gap: var(--ventfaventin-space-md);
}

.ventfaventin-social-link {
  width: 40px;
  height: 40px;
  background-color: var(--ventfaventin-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ventfaventin-light);
  transition: background-color var(--ventfaventin-transition-fast);
}

.ventfaventin-social-link:hover {
  background-color: var(--ventfaventin-accent);
}

.ventfaventin-footer-title {
  font-size: var(--ventfaventin-font-size-md);
  margin-bottom: var(--ventfaventin-space-md);
}

.ventfaventin-footer-links {
  list-style: none;
}

.ventfaventin-footer-link {
  margin-bottom: var(--ventfaventin-space-sm);
}

.ventfaventin-footer-link a {
  font-size: var(--ventfaventin-font-size-sm);
  color: var(--ventfaventin-light);
  opacity: 0.8;
  transition: opacity var(--ventfaventin-transition-fast),
              color var(--ventfaventin-transition-fast);
}

.ventfaventin-footer-link a:hover {
  opacity: 1;
  color: var(--ventfaventin-accent);
}

.ventfaventin-footer-bottom {
  margin-top: var(--ventfaventin-space-xl);
  padding-top: var(--ventfaventin-space-md);
  border-top: 1px solid rgba(220, 215, 201, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ventfaventin-space-md);
}

.ventfaventin-copyright {
  font-size: var(--ventfaventin-font-size-sm);
  color: var(--ventfaventin-light);
  opacity: 0.8;
}

.ventfaventin-bottom-links {
  display: flex;
  gap: var(--ventfaventin-space-md);
}

.ventfaventin-bottom-link {
  font-size: var(--ventfaventin-font-size-sm);
  color: var(--ventfaventin-light);
  opacity: 0.8;
}

/* Privacy Popup */
.ventfaventin-privacy-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--ventfaventin-medium);
  padding: var(--ventfaventin-space-md);
  z-index: 1000;
  transition: bottom var(--ventfaventin-transition-normal);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.ventfaventin-privacy-popup.active {
  bottom: 0;
}

.ventfaventin-privacy-popup-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ventfaventin-space-md);
}

.ventfaventin-privacy-popup-text {
  flex: 1;
  font-size: var(--ventfaventin-font-size-sm);
}

.ventfaventin-privacy-popup-actions {
  display: flex;
  gap: var(--ventfaventin-space-md);
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --ventfaventin-font-size-hero: 2.8rem;
    --ventfaventin-font-size-xxl: 2rem;
    --ventfaventin-font-size-xl: 1.3rem;
  }
  
  .ventfaventin-coaching-grid,
  .ventfaventin-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .ventfaventin-coaching-image {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --ventfaventin-font-size-hero: 2.2rem;
    --ventfaventin-font-size-xxl: 1.8rem;
    --ventfaventin-font-size-xl: 1.2rem;
    --ventfaventin-font-size-lg: 1.1rem;
    --ventfaventin-space-xxl: 3.5rem;
    --ventfaventin-space-xl: 2.5rem;
    --ventfaventin-space-lg: 1.5rem;
  }
  
  .ventfaventin-nav-links {
    display: none;
  }
  
  .ventfaventin-hamburger {
    display: block;
  }
  
  .ventfaventin-hero {
    min-height: 500px;
  }
  
  .ventfaventin-event {
    flex-direction: column;
  }
  
  .ventfaventin-event-date {
    min-width: auto;
    padding: var(--ventfaventin-space-sm);
    flex-direction: row;
    justify-content: flex-start;
    gap: var(--ventfaventin-space-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --ventfaventin-font-size-hero: 1.8rem;
    --ventfaventin-font-size-xxl: 1.5rem;
    --ventfaventin-font-size-xl: 1.1rem;
    --ventfaventin-font-size-lg: 1rem;
    --ventfaventin-font-size-md: 0.9rem;
    --ventfaventin-space-xxl: 2.5rem;
    --ventfaventin-space-xl: 2rem;
    --ventfaventin-space-lg: 1.2rem;
    --ventfaventin-space-md: 0.8rem;
  }
  
  .ventfaventin-hero {
    min-height: 400px;
  }
  
  .ventfaventin-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .ventfaventin-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Down to 320px */
@media (max-width: 360px) {
  :root {
    --ventfaventin-font-size-hero: 1.6rem;
    --ventfaventin-font-size-xxl: 1.3rem;
    --ventfaventin-font-size-xl: 1rem;
    --ventfaventin-font-size-lg: 0.9rem;
    --ventfaventin-font-size-md: 0.85rem;
    --ventfaventin-space-xxl: 2rem;
    --ventfaventin-space-xl: 1.5rem;
    --ventfaventin-space-lg: 1rem;
    --ventfaventin-space-md: 0.6rem;
  }
  
  .ventfaventin-container {
    width: 95%;
    padding: 0 var(--ventfaventin-space-sm);
  }
  
  .ventfaventin-hero {
    min-height: 350px;
  }
  
  .ventfaventin-btn {
    padding: var(--ventfaventin-space-xs) var(--ventfaventin-space-md);
    font-size: var(--ventfaventin-font-size-sm);
  }
  
  .ventfaventin-products-grid {
    grid-template-columns: 1fr;
  }
}