@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary-color: #2E8B57;
  --accent-gold: #FFD700;
  --accent-light-blue: #ADD8E6;
  --accent-gray: #A9A9A9;
  --text-dark: #222222;
  --text-light: #666666;
  --bg-light: #FAFAFA;
  --border-light: #EEEEEE;
  --white: #FFFFFF;
}

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

html, body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

button, .btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

button:hover, .btn:hover {
  background-color: #1f5f3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
}

button:active, .btn:active {
  transform: translateY(0);
}

button.btn-secondary {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

button.btn-secondary:hover {
  background-color: #E6C200;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

header .navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .navbar-brand img {
  height: 35px;
  width: auto;
}

header .navbar-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

header .navbar-nav a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

header .navbar-nav a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

main {
  margin-top: 80px;
  padding: 0;
}

section {
  padding: 5rem 1.5rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

section.hero {
  padding: 0;
  margin-top: 80px;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

section.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-lifestyle.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

section.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.7), rgba(46, 139, 87, 0.5));
  z-index: 2;
}

section.hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

section.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

section.hero p {
  color: var(--white);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.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: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

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

.card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(46, 139, 87, 0.15);
  border-color: var(--primary-color);
}

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

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.editorial-panel {
  background-color: var(--bg-light);
  border-left: 5px solid var(--primary-color);
  padding: 3rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.editorial-panel h2 {
  margin-top: 0;
}

.editorial-panel ul {
  list-style: none;
  padding-left: 0;
}

.editorial-panel li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
}

.editorial-panel li:last-child {
  border-bottom: none;
}

.editorial-panel li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.accordion {
  margin: 2rem 0;
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-bottom: none;
  background-color: var(--white);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--border-light);
}

.accordion-header {
  background-color: var(--bg-light);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: #EEEEEE;
}

.accordion-header.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.accordion-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body.active {
  max-height: 1000px;
  padding: 1.5rem;
}

.accordion-body p {
  margin-bottom: 1rem;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

.framed-box {
  border: 2px solid var(--primary-color);
  padding: 2.5rem;
  border-radius: 8px;
  background-color: rgba(46, 139, 87, 0.02);
}

.framed-box h2 {
  margin-top: 0;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: var(--primary-color);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  padding-right: 52%;
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: 52%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
  margin-top: 0;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 1.5rem;
  margin-top: 5rem;
}

footer .footer-content {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

footer .footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

footer .footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

footer .footer-section ul {
  list-style: none;
}

footer .footer-section li {
  margin-bottom: 0.5rem;
}

footer .footer-section a {
  color: #CCCCCC;
  transition: color 0.3s ease;
}

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

footer .footer-contact {
  color: #CCCCCC;
  font-size: 0.95rem;
  line-height: 1.8;
}

footer .footer-disclaimer {
  border-top: 1px solid #444444;
  padding-top: 2rem;
  text-align: center;
  color: #AAAAAA;
  font-size: 0.9rem;
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  max-width: 100%;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

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

.cookie-buttons button {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.cookie-buttons .btn-secondary {
  background-color: var(--accent-light-blue);
  color: var(--text-dark);
}

.cookie-buttons .btn-secondary:hover {
  background-color: #9BC8E0;
}

.cookie-buttons .btn-link {
  background: none;
  color: var(--primary-color);
  padding: 0;
  text-decoration: underline;
}

.cookie-buttons .btn-link:hover {
  color: var(--accent-gold);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

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

.form-disclaimer {
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  border-left: 4px solid var(--primary-color);
}

.working-hours {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 6px;
  margin-top: 2rem;
}

.working-hours h3 {
  margin-top: 0;
}

.working-hours p {
  margin-bottom: 0.5rem;
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
  padding: 3rem 0;
  border-bottom: 2px solid var(--border-light);
}

.page-title h1 {
  margin-bottom: 1rem;
}

.disclaimer-box {
  background-color: rgba(255, 215, 0, 0.05);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-box p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  header .navbar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  header .navbar-nav {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }

  main {
    margin-top: 100px;
  }

  section {
    padding: 3rem 1.5rem;
  }

  section.hero {
    min-height: 400px;
  }

  section.hero h1 {
    font-size: 2rem;
  }

  section.hero p {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .two-column.reverse {
    direction: ltr;
  }

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

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    padding-left: 30px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: -11px;
    transform: translateX(0);
  }

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-buttons button {
    flex: 1;
    min-width: 100px;
  }

  .contact-form {
    max-width: 100%;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  section {
    padding: 2rem 1rem;
  }

  header .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  header .navbar-brand {
    font-size: 1.25rem;
  }

  header .navbar-nav {
    gap: 0.25rem;
  }

  header .navbar-nav a {
    font-size: 0.9rem;
  }

  .card-grid {
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  footer .footer-section h4 {
    font-size: 0.9rem;
  }

  footer .footer-contact {
    font-size: 0.85rem;
  }

  .cookie-buttons {
    gap: 0.5rem;
  }

  .cookie-buttons button {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}
