/* ========================================
   CSS Variables - Palette H: Wildflower Calm
   ======================================== */
:root {
  --color-pale-petal: #FFF8F3;
  --color-sun-yellow: #ECDDB8;
  --color-dusty-green: #AEBDA6;
  --color-blue-thistle: #8499A7;
  --color-walnut: #4B433C;
  
  --color-primary: var(--color-walnut);
  --color-secondary: var(--color-pale-petal);
  --color-accent: var(--color-dusty-green);
  --color-text: var(--color-walnut);
  --color-text-light: #6B6360;
  
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  
  --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-xl: 20px;
  --radius-full: 50%;
  
  --shadow-sm: 0 2px 4px rgba(75, 67, 60, 0.1);
  --shadow-md: 0 4px 8px rgba(75, 67, 60, 0.15);
  --shadow-lg: 0 8px 16px rgba(75, 67, 60, 0.2);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --header-height: 80px;
  --footer-height: 150px;
}

/* ========================================
   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-pale-petal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

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);
}

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

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-dusty-green), var(--color-blue-thistle));
  border-radius: var(--radius-full);
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.section-alt {
  background-color: var(--color-sun-yellow);
  background-image: linear-gradient(135deg, var(--color-sun-yellow) 0%, var(--color-pale-petal) 100%);
}

/* ========================================
   Header
   ======================================== */
.site-header {
  background: rgba(255, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform var(--transition-normal);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.site-header.hidden {
  transform: translateY(-100%);
}

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

.brand-name {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-walnut);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: var(--space-sm) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-dusty-green);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  justify-content: center;
  cursor: pointer;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: var(--color-walnut);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.footer-bottom p{
    color: white;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   Mobile Navigation
   ======================================== */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--color-pale-petal);
  box-shadow: var(--shadow-md);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  gap: var(--space-md);
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-md);
  border-bottom: 1px solid rgba(75, 67, 60, 0.1);
  display: block;
}

/* ========================================
   Main Content
   ======================================== */
.main-content {
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

/* ========================================
   Hero Banner
   ======================================== */
.hero-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-sun-yellow) 0%, var(--color-pale-petal) 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.7) 0%, rgba(236, 221, 184, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-walnut);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-dusty-green);
  color: var(--color-walnut);
}

.btn-primary:hover {
  background-color: var(--color-blue-thistle);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-walnut);
  border-color: var(--color-dusty-green);
}

.btn-secondary:hover {
  background-color: var(--color-dusty-green);
  color: var(--color-walnut);
}

.btn-link {
  color: var(--color-blue-thistle);
  font-weight: 600;
  padding: 0;
  border-bottom: 2px solid var(--color-blue-thistle);
  border-radius: 0;
}

.btn-link:hover {
  color: var(--color-dusty-green);
  border-color: var(--color-dusty-green);
}

/* ========================================
   Grid Layouts
   ======================================== */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--color-pale-petal);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  overflow: hidden;
}

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

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

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-walnut);
}

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

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dusty-green);
  margin-bottom: var(--space-md);
}

/* ========================================
   Forms
   ======================================== */
.form-group {
  margin-bottom: var(--space-lg);
}

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--color-sun-yellow);
  border-radius: var(--radius-md);
  background-color: var(--color-pale-petal);
  color: var(--color-text);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-dusty-green);
  box-shadow: 0 0 0 3px rgba(174, 189, 166, 0.2);
}

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

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

.form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-dusty-green);
}

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

.form-error {
  color: #d32f2f;
  font-size: 0.875rem;
  margin-top: var(--space-xs);
  display: none;
}

.form-error.active {
  display: block;
}

/* ========================================
   Tables
   ======================================== */
.table-container {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-pale-petal);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table th,
.data-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-sun-yellow);
}

.data-table th {
  background-color: var(--color-dusty-green);
  color: var(--color-walnut);
  font-weight: 600;
}

.data-table tr:hover {
  background-color: rgba(236, 221, 184, 0.3);
}

.data-table tr:last-child td {
  border-bottom: none;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background-color: var(--color-walnut);
  color: var(--color-pale-petal);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-xxl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-section h4 {
  color: var(--color-sun-yellow);
  margin-bottom: var(--space-md);
}
.footer-section p {
  color: white;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  color: var(--color-pale-petal);
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.footer-link:hover {
  opacity: 1;
  color: var(--color-sun-yellow);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 248, 243, 0.2);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ========================================
   Privacy Popup
   ======================================== */
.privacy-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--color-walnut);
  color: var(--color-pale-petal);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transition: bottom var(--transition-slow);
}

.privacy-popup.active {
  bottom: 0;
}

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

.privacy-text {
  flex: 1;
  min-width: 250px;
}

.privacy-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-close {
  background: transparent;
  color: var(--color-pale-petal);
  border: 2px solid var(--color-pale-petal);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.privacy-close:hover {
  background: var(--color-pale-petal);
  color: var(--color-walnut);
}

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

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

/* ========================================
   Special Sections
   ======================================== */
.intro-section {
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.feature-item {
  text-align: center;
  padding: var(--space-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  color: var(--color-dusty-green);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.comparison-table {
  width: 100%;
  margin: var(--space-xl) 0;
}

.icon-watercolor {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-sun-yellow), var(--color-pale-petal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
}

.botanical-diagram {
  max-width: 100%;
  height: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
}

/* ========================================
   Thank You Page
   ======================================== */
.thank-you-section {
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-dusty-green);
  line-height: 1;
  margin-bottom: var(--space-md);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --space-xl: 2rem;
    --space-xxl: 3rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-banner {
    min-height: 400px;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .privacy-popup-content {
    flex-direction: column;
    text-align: center;
  }
  
  .privacy-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.5rem;
    --space-xxl: 2rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero-banner {
    min-height: 350px;
  }
  
  .card {
    padding: var(--space-md);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
  }
  
  .error-code {
    font-size: 5rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  .hero-banner {
    min-height: 300px;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-walnut);
  color: var(--color-pale-petal);
  padding: var(--space-sm) var(--space-md);
  z-index: 10001;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

