@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  /* Colors */
  --color-eucalyptus: #A8C3A0;
  --color-cream: #FFF6E8;
  --color-driftwood: #B8A58C;
  --color-ocean: #9EC8D9;
  --color-terracotta: #D9846C;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  font-weight: 600;
  line-height: 1.2;
  color: #333;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-ocean);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Unique Header Styles */
.site-header {
  background-color: var(--color-cream);
  padding: var(--space-md) 0;
  transition: var(--transition-medium);
  position: relative;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-eucalyptus);
}

.logo span {
  color: var(--color-terracotta);
}

.header-minimized {
  transform: translateY(-100%);
}

/* Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-driftwood);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.main-nav a {
  color: var(--color-driftwood);
  font-weight: 500;
  position: relative;
  padding-bottom: var(--space-xs);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-terracotta);
  transition: var(--transition-medium);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background-color: var(--color-eucalyptus);
  color: var(--color-cream);
  text-align: center;
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-terracotta);
  color: white;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--color-ocean);
  transform: translateY(-2px);
  color: white;
}

.btn-secondary {
  background-color: var(--color-ocean);
}

.btn-secondary:hover {
  background-color: var(--color-terracotta);
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
}

.section-heading {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-eucalyptus);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  transition: var(--transition-medium);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  color: var(--color-driftwood);
  margin-bottom: var(--space-md);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-medium);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 200px;
  background-color: var(--color-eucalyptus);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image i {
  font-size: 4rem;
  color: white;
}

.product-details {
  padding: var(--space-lg);
}

.product-price {
  font-size: 1.25rem;
  color: var(--color-terracotta);
  font-weight: bold;
  margin-bottom: var(--space-md);
}

/* Contact Form */
.contact-section {
  background-color: var(--color-eucalyptus);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.contact-form {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  color: #333;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-ocean);
  outline: none;
  box-shadow: 0 0 0 2px rgba(158, 200, 217, 0.3);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input {
  margin-top: 5px;
}

.contact-info {
  color: white;
}

.contact-info h3 {
  color: white;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.contact-detail i {
  margin-right: var(--space-sm);
  font-size: 1.25rem;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: white;
  padding: var(--space-lg) 0;
  font-size: 0.875rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

.footer-links a {
  color: var(--color-cream);
}

.footer-links a:hover {
  color: var(--color-terracotta);
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: var(--space-md);
  z-index: 1000;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

/* Interactive Craft Palette Generator */
.palette-generator {
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.color-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.color-slider {
  display: flex;
  flex-direction: column;
}

.color-slider label {
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.color-preview {
  height: 100px;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
}

.palette-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* 404 Page */
.error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  text-align: center;
}

.error-code {
  font-size: 8rem;
  color: var(--color-terracotta);
  font-weight: bold;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-message {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

/* Thank you page */
.thank-you-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-eucalyptus);
  margin-bottom: var(--space-md);
}

/* FAQ Section */
.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.faq-category {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

.faq-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.faq-category h3 {
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  border-bottom: 2px solid var(--color-cream);
  padding-bottom: var(--space-sm);
}

.faq-item {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-cream);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h4 {
  color: var(--color-driftwood);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  line-height: 1.4;
  font-weight: 600;
}

.faq-item p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.faq-cta p {
  margin-bottom: var(--space-md);
  color: var(--color-driftwood);
  font-size: 1.1rem;
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .color-sliders {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
 
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .faq-container {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .faq-category {
    padding: var(--space-md);
  }
  
  .faq-category h3 {
    font-size: 1.25rem;
  }
  
  .faq-item h4 {
    font-size: 1rem;
  }
  
  .faq-item p {
    font-size: 0.9rem;
  }
}




@media (max-width: 850px) {
  .nav-toggle {
    display: block;
    z-index: 1234;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    background-color: white;
    box-shadow: var(--shadow-lg);
    transition: max-height var(--transition-medium);
    z-index: 1000;
    padding: 0 var(--space-md);
  }
  
  .main-nav.active {
    max-height: 300px;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: var(--space-md);
  }
}