/* Van Gogh Museum France - Complete Styles */
/* Inspired by brewery design with sage green, cream, and rose colors */

/* ============================================
   RESET AND BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  overflow-x: hidden;
  background-color: #f5f1e8;
}

/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
  --sage: #6b7f6e;
  --sage-dark: #5a6b5d;
  --sage-light: #8a9d8d;
  --cream: #f5f1e8;
  --cream-dark: #e8e0d0;
  --rose: #e8a5b5;
  --rose-dark: #d88fa3;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #6b7280;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--rose);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rose-dark);
}

/* ============================================
   HEADER STYLES
   ============================================ */
.header-main {
  background-color: var(--sage);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.logo-link {
  text-decoration: none;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--rose);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose);
}

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

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--cream);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  background-color: var(--sage-dark);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-link {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.mobile-link:hover {
  background-color: var(--sage);
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-section {
  background-color: var(--sage);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-section-alt {
  background-color: var(--sage);
  padding: 6rem 0 4rem;
  text-align: center;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-title-large {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--cream-dark);
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--cream-dark);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-image {
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-title-large {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-image {
    max-width: 100%;
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding {
  padding: 5rem 0;
}

.bg-cream {
  background-color: var(--cream);
}

.bg-sage {
  background-color: var(--sage);
}

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--sage-dark);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-title-light {
  font-size: 3rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-description {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.section-description-light {
  font-size: 1.25rem;
  color: var(--cream-dark);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title,
  .section-title-light {
    font-size: 2rem;
  }

  .section-description,
  .section-description-light {
    font-size: 1rem;
  }
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn-primary {
  display: inline-block;
  background-color: var(--rose);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 165, 181, 0.3);
}

.btn-primary:hover {
  background-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 165, 181, 0.4);
}

.btn-primary-full {
  display: block;
  width: 100%;
  background-color: var(--rose);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.btn-primary-full:hover {
  background-color: var(--rose-dark);
  transform: translateY(-2px);
}

.btn-primary-large {
  display: inline-block;
  background-color: var(--rose);
  color: var(--white);
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232, 165, 181, 0.4);
}

.btn-primary-large:hover {
  background-color: var(--rose-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 165, 181, 0.5);
}

/* ============================================
   CALCULATOR STYLES
   ============================================ */
.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.calculator-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group-calc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-label {
  font-weight: 600;
  color: var(--sage-dark);
  font-size: 1rem;
}

.calc-input-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.calc-btn-minus,
.calc-btn-plus {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  background-color: var(--white);
  color: var(--sage-dark);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calc-btn-minus:hover,
.calc-btn-plus:hover {
  background-color: var(--sage);
  color: var(--white);
}

.calc-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 15px;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 600;
  color: var(--sage-dark);
  transition: border-color 0.3s ease;
}

.calc-input:focus {
  outline: none;
  border-color: var(--rose);
}

.calc-select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 15px;
  font-size: 1rem;
  color: var(--sage-dark);
  background-color: var(--white);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.calc-select:focus {
  outline: none;
  border-color: var(--rose);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.checkbox-label:hover {
  background-color: var(--cream);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--rose);
}

.calc-result-card {
  background-color: var(--cream);
  padding: 1.5rem;
  border-radius: 20px;
  margin-top: 1rem;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.calc-result-label {
  color: var(--gray);
  font-size: 1rem;
}

.calc-result-value {
  font-weight: 600;
  color: var(--sage-dark);
  font-size: 1.125rem;
}

.calc-result-divider {
  height: 1px;
  background-color: var(--sage);
  margin: 1rem 0;
}

.calc-result-row-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}

.calc-result-label-total {
  font-weight: 700;
  color: var(--sage-dark);
  font-size: 1.25rem;
}

.calc-result-value-total {
  font-weight: 800;
  color: var(--rose);
  font-size: 2rem;
}

.calc-result-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  text-align: center;
  color: var(--gray);
}

.calculator-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card-calc {
  background-color: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.info-image-calc {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.info-content-calc {
  padding: 1.5rem;
}

.info-title-calc {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

.info-text-calc {
  color: var(--gray);
  line-height: 1.6;
}

.pricing-info-card {
  background-color: var(--sage);
  padding: 2rem;
  border-radius: 30px;
  color: var(--cream);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cream);
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sage-light);
  color: var(--cream-dark);
}

.hours-info-card {
  background-color: var(--rose);
  padding: 2rem;
  border-radius: 30px;
  color: var(--white);
}

.hours-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TIPS GRID
   ============================================ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tip-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tip-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

.tip-text {
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CONTACT STYLES
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.contact-info-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

.contact-info-text {
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-subtext {
  color: var(--gray);
  font-size: 0.875rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

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

.contact-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-check {
  width: 30px;
  height: 30px;
  background-color: var(--rose);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-title {
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.feature-text {
  color: var(--cream-dark);
  font-size: 0.875rem;
}

.contact-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-label {
  font-weight: 600;
  color: var(--sage-dark);
  font-size: 1rem;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 15px;
  font-size: 1rem;
  color: var(--sage-dark);
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--rose);
}

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
}

.checkbox-container {
  display: flex;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-text {
  color: var(--gray);
  font-size: 0.875rem;
}

.link-inline {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}

.link-inline:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.map-container {
  margin: 3rem 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.directions-card {
  background-color: var(--cream);
  padding: 3rem;
  border-radius: 30px;
  margin-top: 3rem;
}

.directions-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage-dark);
  text-align: center;
  margin-bottom: 2rem;
}

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

.direction-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.direction-item strong {
  color: var(--sage-dark);
  font-size: 1.125rem;
}

.direction-item p {
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .directions-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FAQ STYLES
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GALLERY STYLES
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.gallery-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-image {
    height: 300px;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background-color: var(--rose);
  padding: 5rem 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

/* ============================================
   POLICY PAGES STYLES
   ============================================ */
.policy-section {
  padding: 5rem 0;
  background-color: var(--cream);
  min-height: 100vh;
}

.container-policy {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.policy-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--sage-dark);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.policy-updated {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.policy-content {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.policy-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-text {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.policy-list {
  list-style-position: inside;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 1.5rem;
  margin-left: 1rem;
}

.policy-list li {
  margin-bottom: 0.5rem;
}

.contact-box {
  background-color: var(--cream);
  padding: 2rem;
  border-radius: 20px;
  margin: 2rem 0;
  border-left: 4px solid var(--rose);
}

.contact-box p {
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.contact-box strong {
  color: var(--sage-dark);
  font-weight: 700;
}

.policy-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .policy-title {
    font-size: 2.5rem;
  }

  .policy-content {
    padding: 2rem;
  }

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

/* ============================================
   FOOTER STYLES
   ============================================ */
.footer-main {
  background-color: var(--sage-dark);
  padding: 4rem 0 2rem;
  color: var(--cream);
}

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

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--cream-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-link:hover {
  color: var(--rose);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  color: var(--cream-dark);
  font-size: 0.9375rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--sage);
  color: var(--cream-dark);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   COOKIE NOTICE
   ============================================ */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--sage-dark);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 60;
  display: none;
}

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

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

.cookie-text {
  color: var(--cream);
  flex: 1;
}

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

.cookie-link {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-accept {
  background-color: var(--rose);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-accept:hover {
  background-color: var(--rose-dark);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-accept {
    width: 100%;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   SELECTION STYLES
   ============================================ */
::selection {
  background-color: var(--rose);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--rose);
  color: var(--white);
}

/* ============================================
   FOCUS STYLES
   ============================================ */
*:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* End of Styles */
