/* Retro Styles */
:root {
  --retro-primary: #E74C3C;
  --retro-secondary: #3498DB;
  --retro-tertiary: #F1C40F;
  --retro-bg: #F3E9D9;
  --retro-accent: #E55B3C;
  --retro-dark: #2C3E50;
  --retro-light: #F9F3E9;
  --retro-border: #D5C3A7;
  --retro-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  --retro-transition: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Roboto+Slab:wght@300;400;600;700&display=swap');

body {
  background-color: var(--retro-bg);
  font-family: 'Roboto Slab', serif;
  color: var(--retro-dark);
}

/* Typography */
.retro-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--retro-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.retro-subtitle {
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--retro-dark);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.retro-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--retro-dark);
  position: relative;
  display: inline-block;
}

.retro-heading::before {
  content: '';
  position: absolute;
  width: 40%;
  height: 10px;
  background-color: var(--retro-accent);
  bottom: -5px;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}

.retro-divider {
  width: 100px;
  height: 3px;
  background-color: var(--retro-accent);
  margin: 1rem auto 2rem;
}

/* Buttons */
.btn {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--retro-transition);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  transition: var(--retro-transition);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background-color: var(--retro-accent);
  color: white;
  border: 2px solid var(--retro-accent);
}

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

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

.btn-tertiary {
  background-color: var(--retro-light);
  color: var(--retro-dark);
  border: 2px solid var(--retro-border);
}

.btn-tertiary:hover {
  background-color: var(--retro-dark);
  color: var(--retro-light);
  border-color: var(--retro-dark);
}

/* Header */
.site-header {
  background-color: var(--retro-light);
  border-bottom: 3px solid var(--retro-border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--retro-accent);
}

.main-nav a {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  color: var(--retro-dark);
}

.main-nav a::after {
  background-color: var(--retro-accent);
}

.btn-contact {
  background-color: var(--retro-accent);
  border: 2px solid var(--retro-accent);
}

/* Banner */
.banner {
  background-color: var(--retro-light);
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E55B3C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.banner .container {
  position: relative;
  z-index: 1;
}

/* Sections */
section {
  position: relative;
}

section:nth-child(odd) {
  background-color: var(--retro-light);
}

section:nth-child(even) {
  background-color: var(--retro-bg);
}

/* Cards */
.destination-card,
.gastronomy-card,
.activity-card,
.testimonial,
.blog-card,
.related-article {
  background-color: var(--retro-light);
  border: 2px solid var(--retro-border);
  border-radius: 0;
  box-shadow: var(--retro-shadow);
  transition: var(--retro-transition);
}

.destination-card:hover,
.gastronomy-card:hover,
.activity-card:hover,
.blog-card:hover,
.related-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.destination-image,
.blog-image {
  border-bottom: 2px solid var(--retro-border);
}

/* Footer */
.site-footer {
  background-color: var(--retro-dark);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
}

/* Cookie Banner */
.cookie-banner {
  background-color: var(--retro-light);
  border-top: 3px solid var(--retro-border);
}

.cookie-settings-panel {
  background-color: var(--retro-bg);
  border: 2px solid var(--retro-border);
}

/* Article Styling */
.article-featured-image {
  border: 3px solid var(--retro-border);
  box-shadow: var(--retro-shadow);
}

.article-image {
  border: 2px solid var(--retro-border);
  box-shadow: var(--retro-shadow);
}

.article-author-box {
  background-color: var(--retro-light);
  border: 2px solid var(--retro-border);
}

.article-tags a {
  background-color: var(--retro-light);
  border: 1px solid var(--retro-border);
}

.article-share a {
  background-color: var(--retro-light);
  border: 1px solid var(--retro-border);
}

/* Decorative Elements */
.section-header {
  position: relative;
}

.section-header::before {
  content: '✽';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--retro-accent);
  opacity: 0.5;
  font-size: 2rem;
}

.section-header::after {
  content: '✽';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--retro-accent);
  opacity: 0.5;
  font-size: 2rem;
}

/* Legal Pages */
.legal-header h1 {
  font-family: 'Playfair Display', serif;
  position: relative;
  display: inline-block;
}

.legal-header h1::before {
  content: '';
  position: absolute;
  width: 40%;
  height: 10px;
  background-color: var(--retro-accent);
  bottom: -5px;
  left: 30%;
  z-index: -1;
  opacity: 0.5;
}

.legal-section-item h2 {
  font-family: 'Playfair Display', serif;
  color: var(--retro-dark);
  position: relative;
  display: inline-block;
}

.legal-section-item h2::before {
  content: '';
  position: absolute;
  width: 30%;
  height: 8px;
  background-color: var(--retro-accent);
  bottom: -3px;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}

/* Thank You Page */
.thank-you-image img {
  border: 3px solid var(--retro-border);
  box-shadow: var(--retro-shadow);
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  .retro-title {
    font-size: 2.5rem;
  }

  .retro-subtitle {
    font-size: 1.3rem;
  }

  .retro-heading {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .retro-title {
    font-size: 2rem;
  }

  .retro-subtitle {
    font-size: 1.1rem;
  }

  .retro-heading {
    font-size: 1.75rem;
  }

  .section-header::before,
  .section-header::after {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .retro-title {
    font-size: 1.75rem;
  }

  .retro-subtitle {
    font-size: 1rem;
  }

  .retro-heading {
    font-size: 1.5rem;
  }
}
