/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background: linear-gradient(135deg, #f5f7fa 0%, #fdf6ed 100%);
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #5C2D0C;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Header Styles */
header {
  background: linear-gradient(135deg, #5C2D0C 0%, #8B4513 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(92, 45, 12, 0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 16px;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4842F 0%, #F4A460 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: #D4842F;
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  width: 80%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #5C2D0C 0%, #8B4513 100%);
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(92, 45, 12, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(92, 45, 12, 0.4);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #5C2D0C 0%, #8B4513 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #ffffff;
  color: #5C2D0C;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #ffffff;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-nav a:hover {
  background: linear-gradient(90deg, #D4842F 0%, #F4A460 100%);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(212, 132, 47, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(92, 45, 12, 0.9) 0%, rgba(139, 69, 19, 0.85) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%238B4513" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(244, 164, 96, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease;
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
}

.season-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4842F 0%, #F4A460 100%);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(212, 132, 47, 0.3);
  animation: fadeInUp 0.6s ease;
}

.subheadline {
  font-size: 20px;
  color: #6a6a6a;
  margin-bottom: 24px;
}

.season-indicator {
  display: inline-block;
  background: linear-gradient(135deg, #2D5016 0%, #4a7c2a 100%);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #D4842F 0%, #F4A460 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 132, 47, 0.4);
  background: linear-gradient(135deg, #F4A460 0%, #D4842F 100%);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #5C2D0C;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #5C2D0C 0%, #8B4513 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card Containers */
.services-wrapper,
.menu-cards,
.offerings-wrapper,
.seasons-grid,
.principles-grid,
.values-grid,
.events-grid,
.packages-grid,
.info-grid,
.contact-grid,
.departments-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

/* Service Cards */
.service-card,
.menu-card,
.offering-card,
.season-card,
.principle,
.value-card,
.event-card,
.package-card,
.info-card,
.contact-card,
.department-card,
.suggestion-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(92, 45, 12, 0.1);
  transition: all 0.3s ease;
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card::before,
.menu-card::before,
.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D4842F 0%, #F4A460 100%);
  border-radius: 16px 16px 0 0;
}

.service-card:hover,
.menu-card:hover,
.offering-card:hover,
.season-card:hover,
.value-card:hover,
.event-card:hover,
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(92, 45, 12, 0.2);
}

.service-card h3,
.menu-card h2,
.menu-card h3,
.offering-card h3,
.season-card h3,
.value-card h3,
.event-card h3,
.package-card h3 {
  color: #5C2D0C;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.menu-card p,
.offering-card p,
.season-card p,
.value-card p,
.event-card p,
.package-card p {
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #D4842F;
  margin-top: 16px;
  text-align: center;
}

.ingredients,
.details {
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #2D5016 0%, #4a7c2a 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.menu-card.active {
  border: 2px solid #D4842F;
  box-shadow: 0 8px 28px rgba(212, 132, 47, 0.25);
}

/* Seasonal Highlight */
.seasonal-highlight {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(244, 164, 96, 0.05) 100%);
  border-radius: 16px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.season-description {
  font-size: 20px;
  color: #5C2D0C;
  font-weight: 600;
  margin-bottom: 16px;
}

.season-ingredients {
  font-size: 16px;
  color: #6a6a6a;
  margin-bottom: 16px;
}

.season-mood {
  font-size: 18px;
  color: #4a4a4a;
  font-style: italic;
  margin-bottom: 32px;
}

/* Philosophy Section */
.philosophy-teaser,
.philosophy-intro,
.story,
.values,
.location-info,
.commitment {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(92, 45, 12, 0.08);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.values-list li {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(244, 164, 96, 0.05) 100%);
  border-radius: 8px;
  border-left: 4px solid #D4842F;
  font-weight: 500;
  color: #4a4a4a;
  transition: all 0.3s ease;
}

.values-list li:hover {
  transform: translateX(8px);
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(244, 164, 96, 0.1) 100%);
}

blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-style: italic;
  color: #5C2D0C;
  text-align: center;
  margin: 40px auto;
  padding: 32px;
  border-left: 4px solid #D4842F;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(244, 164, 96, 0.03) 100%);
  border-radius: 8px;
  max-width: 700px;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(244, 164, 96, 0.03) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 16px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(92, 45, 12, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card p {
  color: #2c2c2c;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card .author {
  color: #5C2D0C;
  font-weight: 600;
  font-style: normal;
  text-align: right;
  font-size: 14px;
}

/* Reservation CTA */
.reservation-cta,
.cta-section,
.contact-cta {
  background: linear-gradient(135deg, #5C2D0C 0%, #8B4513 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 16px;
  margin-bottom: 60px;
}

.reservation-cta h2,
.cta-section h2,
.contact-cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.reservation-cta p,
.cta-section p,
.contact-cta p {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 16px;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(92, 45, 12, 0.08);
}

.legal-content h2 {
  color: #5C2D0C;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h3 {
  color: #8B4513;
  text-align: left;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* Thank You Page */
.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2D5016 0%, #4a7c2a 100%);
  color: #ffffff;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.3);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-message,
.next-steps {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(92, 45, 12, 0.08);
}

/* Transport Info */
.transport-info {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(244, 164, 96, 0.05) 100%);
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.transport-info h3 {
  color: #5C2D0C;
  margin-bottom: 16px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #5C2D0C 0%, #2c1606 100%);
  color: #ffffff;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-section h3 {
  color: #D4842F;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p {
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 14px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #e0e0e0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #D4842F;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #b0b0b0;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #5C2D0C 0%, #2c1606 100%);
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-consent-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #D4842F 0%, #F4A460 100%);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 132, 47, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-btn-reject:hover {
  background: #ffffff;
  color: #5C2D0C;
}

.cookie-btn-settings {
  background: transparent;
  color: #D4842F;
  border: 2px solid #D4842F;
}

.cookie-btn-settings:hover {
  background: #D4842F;
  color: #ffffff;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-settings-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #5C2D0C;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings-close:hover {
  transform: rotate(90deg);
  color: #D4842F;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(244, 164, 96, 0.05) 100%);
  border-radius: 12px;
}

.cookie-category h3 {
  color: #5C2D0C;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  position: relative;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #2D5016 0%, #4a7c2a 100%);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .service-card,
  .menu-card,
  .offering-card,
  .season-card,
  .value-card,
  .event-card,
  .package-card,
  .info-card,
  .contact-card,
  .department-card,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .cookie-settings-content {
    padding: 24px;
  }

  blockquote {
    font-size: 18px;
    padding: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .menu-card,
  .offering-card,
  .season-card,
  .value-card,
  .event-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* Accessibility */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #D4842F;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-settings-modal {
    display: none !important;
  }
}

/* Smooth Scrolling for Internal Links */
html {
  scroll-padding-top: 80px;
}

/* Loading Animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}