/* CSS Variables */
:root {
  --color-primary: #A0B79F;
  --color-secondary: #D9A7A7;
  --color-accent: #E8AF5D;
  --color-neutral: #F7F3EB;
  --color-text: #3A3A3A;
  --color-text-light: #6B6B6B;
  --color-white: #FFFFFF;
  --font-primary: 'Poppins', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50%;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-neutral);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-script);
  color: var(--color-primary);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-script);
  color: var(--color-primary);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

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

a:hover {
  color: var(--color-accent);
}

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

/* Header */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  z-index: 1000;
  transition: transform var(--transition-fast);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.brand-name {
  font-family: var(--font-script);
  font-size: clamp(1rem, 2vw, 2.5rem);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  font-size: clamp(0.9rem, 2vw, 1rem);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.nav-menu li a:hover {
  background-color: var(--color-neutral);
}

.footer-section p{
    color: white;
}

.footer-bottom p{
    color: white;
}

.burger-btn {
    z-index: 10001;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  font-size: 1.5rem;
  color: var(--color-primary);
  order: 999;
}

.burger-btn:hover {
  color: var(--color-accent);
}

/* Mobile Menu */
@media (max-width: 1023px) {
  .burger-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-fast);
    z-index: 999;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-neutral);
  }
}

/* Main Content */
main {
  min-height: calc(100vh - 200px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
  background: linear-gradient(135deg, rgba(247, 243, 235, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: var(--space-xxl);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247, 243, 235, 0.85) 0%, rgba(255, 255, 255, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-lg) auto;
  object-fit: cover;
}

/* Banner Images */
.banner-image {
  width: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-lg) 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-xl);
  display: flex;
  align-items: center;
}

.banner-image .text-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  max-width: 100%;
}

.banner-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(247, 243, 235, 0.2) 0%, rgba(255, 255, 255, 0.3) 100%);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.card-title {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.card-text {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  text-align: center;
    margin-top: 10px;
}

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

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

.btn-secondary:hover {
    color: black;
  background-color: var(--color-primary);
}

/* Forms */
.form-container {
  max-width: 600px;
  margin: var(--space-xl) auto;
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--color-neutral);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

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

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Google Maps */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: var(--space-xl) var(--space-lg);
  margin-top: var(--space-xxl);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

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

.footer-menu li {
  margin-bottom: var(--space-sm);
}

.footer-menu a {
  color: var(--color-neutral);
  transition: color var(--transition-fast);
}

.footer-menu a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-neutral);
  font-size: 0.9rem;
}

/* Privacy Popup */
.privacy-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.privacy-popup.active {
  display: flex;
}

.popup-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.popup-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
  padding: var(--space-sm);
}

.popup-close:hover {
  color: var(--color-accent);
}

/* Recipe Cards */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.recipe-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.recipe-title {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.dropper-graphic {
  display: flex;
  align-items: flex-end;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
  padding: var(--space-md);
  background: var(--color-neutral);
  border-radius: var(--radius-md);
}

.dropper-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.dropper-icon {
  width: 40px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 0 0 20px 20px;
  position: relative;
}

.dropper-icon::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.dropper-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-align: center;
}

.safety-checklist {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-neutral);
  border-radius: var(--radius-md);
}

.safety-checklist h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.safety-checklist ul {
  list-style: none;
  padding-left: var(--space-md);
}

.safety-checklist li {
  padding: var(--space-xs) 0;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.safety-checklist li::before {
  content: '✓ ';
  color: var(--color-primary);
  font-weight: bold;
  margin-right: var(--space-sm);
}

/* Content Sections */
.content-section {
  margin-bottom: var(--space-xl);
}

.content-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-lg) auto;
  display: block;
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Thank You Page */
.thank-you-container {
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

/* 404 Page */
.error-container {
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.error-message {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

/* Responsive Design */
@media (max-width: 1023px) {
  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .recipe-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: var(--space-lg);
  }

  .hero-section {
    min-height: 50vh;
    padding: var(--space-lg);
  }
}

/* Background Images for Hero Sections */
body.index-page .hero-section {
  background-image: url('../pictures/freepik__35mm-film-photography-bottles-of-essential-oils-on__83269.webp');
}

body.blending-page .hero-section {
  background-image: url('../pictures/freepik__35mm-film-photography-open-glass-jars-with-blended__83275.webp');
}

body.sourcing-page .hero-section {
  background-image: url('../pictures/freepik__the-style-is-candid-image-photography-with-natural__83271.webp');
}

body.diffuser-page .hero-section {
  background-image: url('../pictures/freepik__the-style-is-candid-image-photography-with-natural__83273.webp');
}

body.products-page .hero-section {
  background-image: url('../pictures/freepik__the-style-is-candid-image-photography-with-natural__83277.webp');
}

body.contact-page .hero-section {
  background-image: url('../pictures/freepik__the-style-is-candid-image-photography-with-natural__83270.webp');
}

/* Background Images for Banner Images */
body.index-page .banner-image:nth-of-type(1) {
  background-image: url('../pictures/freepik__35mm-film-photography-open-glass-jars-with-blended__83268.webp');
}

body.index-page .banner-image:nth-of-type(2) {
  background-image: url('../pictures/freepik__the-style-is-candid-image-photography-with-natural__83270.webp');
}

body.blending-page .banner-image {
  background-image: url('../pictures/freepik__35mm-film-photography-open-glass-jars-with-blended__83275.webp');
}

body.sourcing-page .banner-image:nth-of-type(1) {
  background-image: url('../pictures/freepik__the-style-is-candid-image-photography-with-natural__83271.webp');
}

body.sourcing-page .banner-image:nth-of-type(2) {
  background-image: url('../pictures/freepik__the-style-is-candid-image-photography-with-natural__83272.webp');
}

body.diffuser-page .banner-image:nth-of-type(1) {
  background-image: url('../pictures/freepik__the-style-is-candid-image-photography-with-natural__83273.webp');
}

body.diffuser-page .banner-image:nth-of-type(2) {
  background-image: url('../pictures/freepik__the-style-is-candid-image-photography-with-natural__83274.webp');
}

body.diffuser-page .banner-image:nth-of-type(3) {
  background-image: url('../pictures/freepik__the-style-is-candid-image-photography-with-natural__83276.webp');
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .header-container {
    padding: var(--space-sm);
  }

  .site-header {
    padding: var(--space-sm) var(--space-md);
  }

  .popup-content {
    padding: var(--space-lg);
    max-width: 95%;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .burger-btn,
  .privacy-popup {
    display: none;
  }

  body {
    background: white;
  }
}

