/*
 * Helios Voyage Budapest - Retro-Futuristic Landing Page Styles
 * Mobile-first responsive design
 * Space-age aesthetic with Googie architecture influence
 */

/* ============================================
   CSS VARIABLES & THEMING
   ============================================ */

:root {
  /* Color Palette - Light Theme */
  --background: #faf8f5;
  --foreground: #1a1512;
  --card: #ffffff;
  --card-foreground: #1a1512;
  --popover: #ffffff;
  --popover-foreground: #1a1512;
  --primary: #717c30;
  --primary-foreground: #ffffff;
  --secondary: #9aa754;
  --secondary-foreground: #1a1512;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #22d3ee;
  --accent-foreground: #0f172a;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e2e8f0;
  --input: #f8fafc;
  --ring: #22d3ee;

  /* Typography */
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

  /* Retro-Futuristic Specific */
  --glow-primary: 0 0 20px rgba(255, 107, 53, 0.3);
  --glow-accent: 0 0 20px rgba(34, 211, 238, 0.3);
  --chrome-gradient: linear-gradient(
    135deg,
    #e8eaed 0%,
    #ffffff 50%,
    #e8eaed 100%
  );
}

[data-theme="dark"] {
  --background: #0f1419;
  --foreground: #f8fafc;
  --card: #1a1f26;
  --card-foreground: #f8fafc;
  --popover: #1a1f26;
  --popover-foreground: #f8fafc;
  --primary: #ff6b35;
  --primary-foreground: #ffffff;
  --secondary: #1e2530;
  --secondary-foreground: #f8fafc;
  --muted: #2a3340;
  --muted-foreground: #94a3b8;
  --accent: #164e63;
  --accent-foreground: #f0f9ff;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #2a3340;
  --input: #1e2530;
  --ring: #22d3ee;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
}

/* ============================================
   OVERFLOW PREVENTION & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video,
iframe,
embed,
object,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

[class*="grid"] > *,
[class*="flex"] > * {
  min-width: 0;
}

pre,
code,
.code-block {
  max-width: 100%;
  overflow-x: auto;
}

.table-wrapper {
  max-width: 100%;
  overflow-x: auto;
}

p,
li,
td,
th {
  overflow-wrap: break-word;
}

input,
textarea,
select,
button {
  max-width: 100%;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--foreground);
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
}

strong {
  font-weight: 600;
  color: var(--foreground);
}

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

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-light {
  color: var(--background);
}

.section-header-light h2,
.section-header-light .section-lead {
  color: var(--background);
}

.section-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  color: var(--primary);
  animation: float 3s ease-in-out infinite;
}

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

.section-lead {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--muted-foreground);
  margin-top: var(--space-md);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-3xl);
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  min-height: 44px;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}

.btn-primary:hover {
  background-color: #ff5722;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--muted);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.btn-outline:hover {
  background-color: var(--card);
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
  min-height: 36px;
}

.btn-block {
  width: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition-base);
}

[data-theme="dark"] .site-header {
  background-color: rgba(15, 20, 25, 0.95);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
  gap: var(--space-lg);
  max-width: 100%;
  box-sizing: border-box;
}

.logo-wrapper {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--foreground);
  transition: opacity var(--transition-fast);
}

.logo-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: none;
}

@media (min-width: 768px) {
  .logo-text {
    display: block;
  }
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: block;
    flex: 1;
    min-width: 0;
    max-width: 100%;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.nav-menu li {
  min-width: 0;
  box-sizing: border-box;
}

.nav-menu a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
  box-sizing: border-box;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.nav-menu a:hover {
  color: var(--primary);
  text-decoration: none;
}

.nav-menu a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.btn-header {
  display: none;
}

@media (min-width: 768px) {
  .btn-header {
    display: inline-flex;
  }
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--chrome-gradient);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--foreground);
  box-shadow: var(--shadow-sm);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--foreground);
}

.theme-toggle:hover {
  background-color: var(--muted);
  transform: rotate(15deg);
}

.theme-toggle .moon-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--foreground);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: fixed;
  top: 77px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  background-color: var(--background);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
  overflow-x: hidden;
  padding: var(--space-xl);
  z-index: 999;
  box-sizing: border-box;
}

.mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.mobile-nav-menu li {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.mobile-nav-menu a {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
}

.mobile-nav-menu a:hover {
  background-color: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}

.mobile-menu-cta {
  margin-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.age-badge-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--chrome-gradient);
  border: 3px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  box-shadow: var(--shadow-md);
}

/* ============================================
   MODALS & POPUPS
   ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--transition-base);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.age-verification-modal {
  text-align: center;
}

.age-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  color: var(--primary);
}

.age-verification-modal h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.age-verification-modal p {
  color: var(--muted-foreground);
  margin-bottom: var(--space-lg);
}

.age-disclaimer {
  font-size: 0.875rem;
  padding: var(--space-md);
  background-color: var(--muted);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.age-buttons {
  display: flex;
  gap: var(--space-md);
  flex-direction: column;
}

@media (min-width: 480px) {
  .age-buttons {
    flex-direction: row;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-icon {
  flex-shrink: 0;
  color: var(--primary);
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.15),
    rgba(34, 211, 238, 0.15)
  );
}

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

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-title-line {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  color: var(--muted-foreground);
  margin-bottom: var(--space-2xl);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-3xl);
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--foreground);
}

.hero-feature svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.hero-feature span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted-foreground);
  animation: bounce 2s infinite;
}

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

.scroll-dot {
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ============================================
   CASINO SECTION
   ============================================ */

.casino-section {
  padding: var(--space-4xl) 0;
  background-color: var(--background);
}

.casino-intro {
  max-width: 900px;
  margin: 0 auto var(--space-3xl);
  font-size: 1.125rem;
  line-height: 1.8;
}

.casino-features {
  margin-bottom: var(--space-3xl);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card-highlight {
  border: 2px solid var(--primary);
  position: relative;
}

.feature-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background-color: var(--muted);
}

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

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

.feature-content {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.feature-content h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.feature-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.casino-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .casino-info {
    grid-template-columns: 2fr 1fr;
  }
}

.info-card {
  background-color: var(--card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.info-card-trust {
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.1),
    rgba(255, 107, 53, 0.1)
  );
  border: 2px solid var(--accent);
  text-align: center;
}

.trust-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin: 0 auto var(--space-md);
}

/* ============================================
   RESTAURANT SECTION
   ============================================ */

.restaurant-section {
  padding: var(--space-4xl) 0;
  background-color: var(--secondary);
}

.restaurant-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 1024px) {
  .restaurant-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.restaurant-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.content-intro h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.content-intro p {
  font-size: 1.125rem;
  line-height: 1.8;
}

.cuisine-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cuisine-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--card);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.cuisine-feature:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.cuisine-feature svg {
  flex-shrink: 0;
  color: var(--accent);
}

.cuisine-feature h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.125rem;
}

.cuisine-feature p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.restaurant-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .restaurant-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  background-color: var(--muted);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-item-large {
  grid-column: 1 / -1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-highlights {
  margin-bottom: var(--space-3xl);
}

.menu-highlights h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-2xl);
  font-size: 2rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.highlight-card {
  background-color: var(--card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.highlight-icon {
  margin-bottom: var(--space-md);
}

.highlight-card h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.highlight-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.restaurant-experience {
  max-width: 900px;
  margin: 0 auto var(--space-3xl);
}

.restaurant-experience h3 {
  color: var(--primary);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.restaurant-experience p {
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ============================================
   ATMOSPHERE SECTION
   ============================================ */

.atmosphere-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.atmosphere-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.atmosphere-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atmosphere-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

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

.experience-zones {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .experience-zones {
    grid-template-columns: repeat(2, 1fr);
  }
}

.zone-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--background);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.zone-icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.zone-card h3 {
  color: var(--background);
  margin-bottom: var(--space-md);
}

.zone-card p {
  color: rgba(250, 248, 245, 0.9);
  line-height: 1.7;
}

.testimonials-slider {
  margin-bottom: var(--space-3xl);
}

.testimonials-slider h3 {
  text-align: center;
  color: var(--background);
  margin-bottom: var(--space-2xl);
  font-size: 2rem;
}

.testimonials-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .testimonials-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--primary);
}

.testimonial-info h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.125rem;
}

.testimonial-rating {
  display: flex;
  gap: var(--space-xs);
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0;
}

.atmosphere-callout {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.2),
    rgba(34, 211, 238, 0.2)
  );
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-3xl);
}

.atmosphere-callout h3 {
  color: var(--background);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.atmosphere-callout p {
  color: var(--background);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.atmosphere-gallery {
  margin-bottom: var(--space-3xl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.gallery-grid-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  background-color: rgba(255, 255, 255, 0.1);
}

.gallery-grid-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.gallery-grid-item-wide {
  grid-column: span 2;
}

@media (max-width: 767px) {
  .gallery-grid-item-wide {
    grid-column: span 1;
  }
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: var(--space-4xl) 0;
  background-color: var(--background);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.info-block h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.info-block address {
  font-style: normal;
  line-height: 1.8;
  color: var(--foreground);
}

.location-description {
  margin-top: var(--space-md);
  font-size: 0.95rem;
  color: var(--muted-foreground);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table td {
  padding: var(--space-md) 0;
}

.hours-table td:first-child {
  color: var(--muted-foreground);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.hours-note {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-list svg {
  flex-shrink: 0;
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  color: var(--foreground);
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.social-link svg {
  color: currentColor;
}

.contact-form-wrapper {
  background-color: var(--card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background-color: var(--input);
  color: var(--foreground);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-checkbox label {
  flex: 1;
  font-weight: 400;
  font-size: 0.875rem;
}

.form-success {
  display: none;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: #10b981;
  color: white;
  border-radius: var(--radius-md);
}

.form-success.active {
  display: flex;
}

.contact-map {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.map-wrapper:hover .map-overlay {
  opacity: 1;
}

.location-benefits {
  background-color: var(--card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.location-benefits h4 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.95rem;
}

.benefits-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.contact-cta-banner {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(34, 211, 238, 0.1)
  );
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
}

.contact-cta-banner h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-cta-banner p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-xl);
}

/* ============================================
   LEGAL SECTION
   ============================================ */

.legal-section {
  padding: var(--space-4xl) 0;
  background-color: var(--muted);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.legal-block {
  background-color: var(--card);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-block-primary {
  border: 3px solid var(--primary);
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.05),
    rgba(34, 211, 238, 0.05)
  );
}

.legal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  color: var(--primary);
}

.legal-block h3 {
  color: var(--primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.legal-block h4 {
  color: var(--foreground);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.legal-list li {
  padding-left: var(--space-lg);
  position: relative;
}

.legal-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.legal-warning {
  background-color: rgba(239, 68, 68, 0.1);
  border-left: 4px solid var(--destructive);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--destructive);
}

.help-resources {
  background-color: var(--secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.help-resources p {
  margin-bottom: var(--space-md);
}

.help-resources strong {
  display: block;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.legal-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--secondary);
  border-radius: var(--radius-md);
  color: var(--foreground);
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid var(--border);
}

.legal-link:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateX(8px);
  text-decoration: none;
}

.legal-link svg {
  color: currentColor;
  flex-shrink: 0;
}

.trust-badges {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 120px;
  transition: all var(--transition-fast);
}

.trust-badge:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-badge svg {
  color: var(--accent);
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.legal-statement {
  text-align: center;
  padding: var(--space-3xl);
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.1),
    rgba(255, 107, 53, 0.1)
  );
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
}

.legal-statement svg {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  color: var(--accent);
}

.legal-statement h3 {
  color: var(--primary);
  margin-bottom: var(--space-lg);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-statement p {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto var(--space-md);
}

.legal-footer-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: var(--space-lg);
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background-color: var(--card-foreground);
  color: var(--card);
}

.footer-top {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.2),
    rgba(34, 211, 238, 0.2)
  );
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-banner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--chrome-gradient);
  border: 3px solid var(--card);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--card-foreground);
  box-shadow: var(--shadow-lg);
}

.footer-tagline {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0;
}

.footer-main {
  padding: var(--space-4xl) 0;
  background: #164e63;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(250, 248, 245, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: var(--space-xs);
  text-decoration: none;
}

.footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-hours li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  color: rgba(250, 248, 245, 0.8);
}

.footer-hours svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.footer-hours strong {
  color: var(--card);
  display: block;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  color: rgba(250, 248, 245, 0.8);
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(250, 248, 245, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--card);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--glow-primary);
  text-decoration: none;
}

.newsletter-signup {
  margin-top: var(--space-xl);
}

.newsletter-signup h4 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: var(--card);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--card);
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: rgba(250, 248, 245, 0.5);
}

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

.footer-secondary {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-2xl) 0;
  background-color: rgba(0, 0, 0, 1);
}

.footer-legal-links h4 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.footer-legal-links nav {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.footer-legal-links a {
  color: rgba(250, 248, 245, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-compliance {
  font-size: 0.875rem;
  color: rgba(250, 248, 245, 0.6);
}

.footer-compliance p {
  margin-bottom: var(--space-sm);
}

.compliance-statement {
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl) 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.copyright {
  font-size: 0.875rem;
  color: rgba(250, 248, 245, 0.6);
  margin-bottom: 0;
}

.footer-certifications {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cert-badge {
  padding: var(--space-xs) var(--space-md);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--card);
}

.chatbot-trigger {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-xl), var(--glow-primary);
  transition: all var(--transition-base);
}

.chatbot-trigger:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.5);
}

.chatbot-trigger span {
  display: none;
}

@media (min-width: 768px) {
  .chatbot-trigger span {
    display: inline;
  }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

.slide-up {
  animation: slideUp 0.6s ease-out;
}

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

/* Scroll reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

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

  .scroll-indicator,
  .float,
  .bounce {
    animation: none !important;
  }
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
