/* General Styles */
:root {
  --primary-color: #DB504A;      /* Terracotta Red */
  --secondary-color: #254441;    /* Deep Teal */
  --accent-color: #FFC857;       /* Mustard Yellow */
  --accent-green: #43AA8B;       /* Sage Green */
  --light-color: #E5DBCF;        /* Cream */
  --dark-color: #1A1A1A;         /* Almost Black */
  --neutral-color: #8D7B68;      /* Warm Brown */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img, svg {
  max-width: 100%;
  height: auto;
}

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

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

.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

.retro-headline {
  font-family: 'Permanent Marker', cursive;
  font-size: 3rem;
  color: var(--secondary-color);
  text-shadow: 2px 2px 0px var(--accent-color);
  margin-bottom: 0.5em;
}

.highlight {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 0 var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--secondary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0 4px 0 var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--primary-color);
}

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

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

/* Header */
.header {
  background-color: var(--light-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  font-family: 'Permanent Marker', cursive;
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

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

.nav-links li:not(:last-child) {
  margin-right: 20px;
}

.nav-links a {
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
}

.nav-links a.active, 
.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a.btn {
  color: white;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: 3px;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--secondary-color);
  color: white;
  overflow: hidden;
  padding: 80px 0 0;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.hero-text {
  flex: 1;
  padding-right: 50px;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-text .lead {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider img {
  width: 100%;
  display: block;
}

.inverted {
  transform: rotate(180deg);
}

/* Destinations Section */
.destinations {
  background-color: var(--light-color);
}

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

.destination-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.destination-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

.read-more:after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover:after {
  margin-left: 10px;
}

/* Experiences Section */
.experiences {
  background-color: var(--secondary-color);
  color: white;
  position: relative;
}

.experiences-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.experience {
  background-color: white;
  color: var(--dark-color);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.experience:hover {
  transform: translateY(-10px);
}

.experience-icon {
  margin-bottom: 20px;
}

.experiences-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.experiences-nav button {
  background-color: transparent;
  border: 2px solid var(--light-color);
  color: var(--light-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.experiences-nav button:hover {
  background-color: var(--light-color);
  color: var(--secondary-color);
}

/* Wildlife Section */
.wildlife {
  background-color: var(--light-color);
  position: relative;
}

.wildlife-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.wildlife-item {
  transition: var(--transition);
}

.wildlife-item:hover {
  transform: translateY(-10px);
}

.wildlife-item img,
.wildlife-item svg {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}

.wildlife-item h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* About Section */
.about {
  background-color: var(--secondary-color);
  color: white;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.about-text {
  grid-column: span 5;
}

.about-text p {
  margin-bottom: 20px;
}

.about-map {
  grid-column: span 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-facts {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fact {
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.fact h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

/* Contact Section */
.contact {
  background-color: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item-icon {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  transition: var(--transition);
}

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

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 2;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-links {
  flex: 3;
  display: flex;
  justify-content: space-between;
}

.footer-column h4 {
  margin-bottom: 20px;
  color: var(--accent-color);
}

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

.footer-column li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--light-color);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  color: white;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content h3 {
  margin-bottom: 10px;
}

.cookie-content p {
  margin-bottom: 20px;
  max-width: 800px;
}

.cookie-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-color);
}

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

.cookie-option {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.cookie-option input {
  margin-right: 10px;
}

.cookie-description {
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}

/* Blog Styles */
.blog-hero {
  background-color: var(--secondary-color);
  color: white;
  padding: 100px 0 0;
  position: relative;
}

.blog-hero-content {
  text-align: center;
  padding-bottom: 80px;
}

.featured-post {
  background-color: white;
}

.featured-post-content {
  position: relative;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 1;
}

.featured-post-image {
  height: 300px;
}

.featured-post-image svg,
.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post-text {
  padding: 30px;
}

.date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: inline-block;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-post {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-10px);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img,
.post-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-post:hover .post-image img,
.blog-post:hover .post-image svg {
  transform: scale(1.05);
}

.post-content {
  padding: 20px;
}

.post-content h3 {
  margin: 10px 0;
}

.blog-subscribe {
  background-color: var(--secondary-color);
  color: white;
  position: relative;
}

.subscribe-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.subscribe-text {
  flex: 1;
}

.subscribe-form {
  flex: 1;
}

.subscribe-form .form-group {
  display: flex;
}

.subscribe-form input {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: none;
}

.subscribe-form button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-disclaimer {
  font-size: 0.8rem;
  margin-top: 10px;
  opacity: 0.8;
}

.form-disclaimer a {
  color: var(--accent-color);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.category-card {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-10px);
  background-color: var(--secondary-color);
  color: white;
}

.category-icon {
  margin-bottom: 15px;
}

/* Article Styles */
.article-hero {
  background-color: var(--secondary-color);
  color: white;
  padding: 100px 0 0;
  position: relative;
}

.article-meta {
  margin-bottom: 20px;
}

.category {
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 15px;
}

.article-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 3rem;
  margin-bottom: 20px;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.article-hero-image {
  margin-top: 30px;
  height: 400px;
}

.article-hero-image svg,
.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-intro {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.article-image {
  margin: 30px 0;
}

.image-caption {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
}

.article-body h2 {
  color: var(--secondary-color);
  font-size: 2rem;
  margin: 40px 0 20px;
}

.article-body h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 30px 0 15px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul, 
.article-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 10px;
}

/* Legal Pages */
.legal-content {
  padding: 100px 0;
}

.legal-header {
  text-align: center;
  margin-bottom: 50px;
}

.legal-last-updated {
  color: #666;
  font-size: 0.9rem;
}

.legal-body {
  max-width: 900px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--light-color);
  padding-bottom: 10px;
}

.legal-section h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin: 25px 0 15px;
}

.legal-section p, 
.legal-section ul, 
.legal-section ol {
  margin-bottom: 15px;
}

.legal-section li {
  margin-bottom: 8px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.cookie-table th, 
.cookie-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.cookie-table th {
  background-color: var(--light-color);
}

/* Thanks Page */
.thanks-section {
  padding: 100px 0;
}

.thanks-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.thanks-icon {
  margin-bottom: 20px;
}

.thanks-message {
  margin: 30px 0;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.thanks-illustration {
  margin-top: 50px;
}

.recommendation-section {
  background-color: var(--secondary-color);
  color: white;
  position: relative;
}

.article-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-text, .about-map, .about-facts {
    grid-column: span 12;
  }
  
  .about-map {
    order: -1;
    margin-bottom: 30px;
  }
  
  .about-facts {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .fact {
    flex: 1;
    min-width: 200px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo {
    margin-bottom: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .subscribe-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    margin: 10px 0;
    width: 100%;
  }
  
  .nav-links li:last-child {
    margin-top: 20px;
  }
  
  .nav-links a.btn {
    display: block;
    text-align: center;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .retro-headline {
    font-size: 2.5rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .experiences-slider {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}