/* PremiumNatur - Main Stylesheet */
:root {
  --primary-bg: #FAFDFC;
  --accent-dark: #35695F;
  --accent-teal: #6FAE9F;
  --accent-gold: #E0B836;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --border-light: #E8E8E8;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 17px;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-dark);
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(250, 253, 252, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: box-shadow 0.4s ease;
  padding: 1rem 0;
}

header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 32px;
  height: 32px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

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

/* Main Content */
main {
  margin-top: 80px;
}

section {
  padding: 150px 2rem;
  max-width: 1360px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Hero Section */
#hero {
  padding: 200px 2rem 150px;
  background: linear-gradient(135deg, rgba(53, 105, 95, 0.15) 0%, rgba(111, 174, 159, 0.1) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-image.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

#hero h1 {
  color: var(--accent-dark);
  max-width: 800px;
  margin-bottom: 1.5rem;
}

#hero p {
  max-width: 600px;
  font-size: 1.2rem;
  color: var(--text-light);
  margin: 0 auto;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-teal);
  opacity: 0.95;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.card h3 {
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--accent-dark);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn:hover {
  background-color: var(--accent-teal);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

.btn-secondary:hover {
  background-color: var(--accent-dark);
  color: white;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}

th {
  background-color: var(--accent-dark);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-light);
}

tr:hover {
  background-color: rgba(111, 174, 159, 0.05);
}

/* FAQ */
.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-teal);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  color: var(--text-light);
  padding-top: 1rem;
}

.faq-answer.active {
  display: block;
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

/* Form */
.form-container {
  max-width: 500px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(53, 105, 95, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: rgba(111, 174, 159, 0.05);
  border-left: 3px solid var(--accent-teal);
  border-radius: 4px;
}

/* Footer */
footer {
  background-color: var(--accent-dark);
  color: white;
  padding: 3rem 2rem;
  margin-top: 150px;
}

.footer-container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

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

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  border: none;
  background: none;
  transition: color 0.3s ease;
}

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

.modal h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  z-index: 1500;
  display: none;
  flex-direction: column;
  gap: 1rem;
  border-top: 3px solid var(--accent-dark);
}

.cookie-banner.active {
  display: flex;
}

.cookie-text {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-buttons button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--accent-dark);
  color: white;
}

.cookie-accept:hover {
  background-color: var(--accent-teal);
}

.cookie-reject {
  background-color: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

.cookie-reject:hover {
  background-color: var(--accent-dark);
  color: white;
}

.cookie-learn {
  background-color: transparent;
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  nav ul {
    gap: 1rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
  }

  section {
    padding: 80px 1.5rem;
  }

  #hero {
    padding: 120px 1.5rem 80px;
    min-height: auto;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  body {
    font-size: 16px;
  }

  nav ul {
    display: none;
  }

  section {
    padding: 60px 1rem;
  }
}
