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

:root {
  --primary-dark: #1a1a1a;
  --primary-light: #f5f1ed;
  --accent-warm: #c9a679;
  --accent-gold: #d4af37;
  --text-dark: #2d2d2d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --gray-subtle: #f9f7f4;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Header & Navigation */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo a {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.logo a:hover {
  color: var(--accent-warm);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

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

.nav-menu a:hover {
  color: var(--accent-warm);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.2) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 1s ease-in-out;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: var(--accent-warm);
  color: var(--white);
  padding: 15px 50px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  border: 2px solid var(--accent-warm);
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--accent-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 166, 121, 0.3);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Headers */
.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Featured Destinations */
.featured-destinations {
  background-color: var(--gray-subtle);
  padding: 120px 40px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.destination-card {
  background-color: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  animation: fadeUp 0.8s ease-in;
  display: flex;
  flex-direction: column;
}

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

.card-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background-color: #e0e0e0;
}

.card-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0);
  transition: background 0.4s ease;
}

.destination-card:hover .card-overlay {
  background: rgba(26, 26, 26, 0.2);
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.7;
}

.card-link {
  color: var(--accent-warm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.card-link:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* Blog Preview */
.blog-preview {
  padding: 120px 40px;
  background-color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.blog-preview-card {
  background-color: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  animation: fadeUp 0.8s ease-in;
  display: flex;
  flex-direction: column;
}

.blog-preview-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%;
  overflow: hidden;
  background-color: #e0e0e0;
}

.blog-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-preview-card:hover .blog-image-wrapper img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.date,
.category {
  font-size: 0.8rem;
  color: var(--accent-warm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category {
  padding: 0.3rem 0.8rem;
  background-color: var(--gray-subtle);
  border-radius: 2px;
  color: var(--text-dark);
}

.blog-preview-card h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.blog-preview-card h3 a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-preview-card h3 a:hover {
  color: var(--accent-warm);
}

.blog-preview-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.7;
}

.read-more {
  color: var(--accent-warm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: inline-block;
  align-self: flex-start;
}

.read-more:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

.cta-section {
  text-align: center;
  padding: 2rem 0;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.3) 100%);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M0 0h50v50H0z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
  z-index: 1;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  font-weight: 300;
}

/* Destinations Detailed */
.destinations-detailed {
  padding: 80px 0;
}

.destination-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
  animation: fadeUp 0.8s ease-in;
}

.destination-full:nth-child(even) {
  direction: rtl;
}

.destination-full:nth-child(even) > * {
  direction: ltr;
}

.destination-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.destination-content h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.destination-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 1rem;
}

.destination-content h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.destination-content ul {
  list-style: none;
  padding-left: 0;
}

.destination-content li {
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.destination-content li:before {
  content: "▪";
  position: absolute;
  left: 0;
  color: var(--accent-warm);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Blog Full */
.blog-full {
  padding: 80px 0;
}

.blog-card-full {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  background-color: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  animation: fadeUp 0.8s ease-in;
  align-items: stretch;
}

.blog-card-full:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card-full:hover img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-content .blog-date {
  font-size: 0.8rem;
  color: var(--accent-warm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.blog-card-content h2 {
  font-size: 1.7rem;
  color: var(--primary-dark);
  margin: 0.5rem 0 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.blog-card-content h2 a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-content h2 a:hover {
  color: var(--accent-warm);
}

.blog-card-content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Blog Article */
.blog-article {
  padding: 60px 0;
}

.article-header {
  margin-bottom: 3rem;
  text-align: center;
}

.article-header h1 {
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.article-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.article-meta span {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-featured-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 3rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.9;
  padding: 0 40px;
}

.article-content h2 {
  font-size: 1.9rem;
  color: var(--primary-dark);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.article-content h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.article-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.article-content img {
  width: 100%;
  height: auto;
  border-radius: 0;
  margin: 2.5rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.article-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.article-content li {
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.article-content li:before {
  content: "▪";
  position: absolute;
  left: 0;
  color: var(--accent-warm);
  font-weight: bold;
  font-size: 1.2rem;
}

/* About Content */
.about-content {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.about-content article {
  animation: fadeUp 0.8s ease-in;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 1rem;
}

.about-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.about-content li {
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
}

.about-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-warm);
  font-weight: bold;
}

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 80px 0;
  animation: fadeUp 0.8s ease-in;
}

.contact-form-wrapper {
  background-color: var(--gray-subtle);
  padding: 3rem;
  border-radius: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 3px rgba(201, 166, 121, 0.1);
}

.form-message {
  padding: 1.2rem;
  border-radius: 0;
  margin-top: 1rem;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  display: block;
}

.contact-info {
  padding: 0;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.info-item {
  margin-bottom: 2.5rem;
}

.info-item h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.info-item p {
  color: var(--text-light);
  line-height: 1.7;
}

.info-item a {
  color: var(--accent-warm);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--primary-dark);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 80px 40px 30px;
  margin-top: 120px;
}

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

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--accent-warm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.85;
}

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

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

.footer-section a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  opacity: 0.85;
}

.footer-section a:hover {
  color: var(--accent-warm);
  opacity: 1;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    padding: 0 30px;
  }

  .navbar {
    padding: 0 30px;
  }

  .featured-destinations,
  .blog-preview {
    padding: 80px 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--white);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu li {
    padding: 1.2rem;
    border-bottom: 1px solid var(--gray-subtle);
  }

  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .destinations-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .destination-full,
  .blog-card-full,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .destination-full:nth-child(even) {
    direction: ltr;
  }

  .section-header h2,
  .page-header h1 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .container,
  .navbar {
    padding: 0 20px;
  }

  .featured-destinations,
  .blog-preview {
    padding: 60px 20px;
  }

  .destination-full {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .blog-card-full {
    gap: 2rem;
  }

  .article-content {
    padding: 0 20px;
  }
}

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

  .hero p {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 0.85rem;
  }

  .section-header h2,
  .page-header h1 {
    font-size: 1.6rem;
  }

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

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .logo a {
    font-size: 1.2rem;
  }

  .nav-menu {
    gap: 0;
  }
}

/* Cookie consent banner */
#cookieConsentBanner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: rgba(26, 26, 26, 0.96);
  color: var(--white);
  padding: 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
  font-size: 0.9rem;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cookie-banner-text {
  flex: 1 1 260px;
}

.cookie-banner-text p {
  margin: 0.25rem 0;
  color: #e5e5e5;
}

.cookie-banner-text a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.cookie-banner-actions button {
  border: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

#cookieOnlyNecessary {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

#cookieAcceptAll {
  background-color: var(--accent-gold);
  color: #1a1a1a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

#cookieOnlyNecessary:hover,
#cookieAcceptAll:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  #cookieConsentBanner {
    font-size: 0.85rem;
  }

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