/* ===== CSS Variables ===== */
:root {
  --background: hsl(20, 10%, 6%);
  --foreground: hsl(40, 30%, 92%);
  --card: hsl(20, 10%, 8%);
  --primary: hsl(38, 70%, 50%);
  --primary-dark: hsl(38, 80%, 35%);
  --secondary: hsl(20, 10%, 12%);
  --muted: hsl(20, 10%, 15%);
  --muted-foreground: hsl(40, 15%, 60%);
  --border: hsl(38, 30%, 20%);
  --gold: hsl(38, 70%, 50%);
  --gold-light: hsl(38, 60%, 65%);
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --shadow-elegant: 0 20px 60px -15px hsla(0, 0%, 0%, 0.5);
  --shadow-gold: 0 0 40px hsla(38, 70%, 50%, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
}

/* ===== Utilities ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--foreground);
  line-height: 1.2;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold {
  background-color: var(--primary);
  color: var(--background);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-color: var(--primary-dark);
}

.btn-hero {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-hero:hover {
  background-color: var(--primary);
  color: var(--background);
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background-color: hsla(20, 10%, 6%, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-elegant);
}

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

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsla(40, 30%, 92%, 0.8);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.875rem;
}

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

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-links.mobile-active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--background);
  padding: 2rem;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  
  .nav-cta {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, hsla(20, 10%, 6%, 0.3) 0%, hsla(20, 10%, 6%, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title span {
  display: block;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  animation: fadeIn 1s ease-out 0.3s backwards;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fadeIn 1s ease-out 0.6s backwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  animation: float 3s ease-in-out infinite;
}

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

/* ===== About ===== */
.about {
  padding: 6rem 0;
  background-color: var(--background);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid hsla(38, 70%, 50%, 0.3);
}

.about-image img {
  position: relative;
  z-index: 10;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.features {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  display: flex;
  gap: 1.25rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid hsla(38, 70%, 50%, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

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

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

/* ===== Experience ===== */
.experience {
  padding: 6rem 0;
  background-color: var(--secondary);
}

.experience-item {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}

.experience-item:last-child {
  margin-bottom: 0;
}

.experience-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: hsla(38, 70%, 50%, 0.2);
  line-height: 1;
}

.experience-content h3 {
  font-size: 2rem;
  color: var(--foreground);
  margin-top: -2rem;
  margin-bottom: 1.5rem;
}

.experience-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.experience-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.experience-content li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
}

.experience-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

@media (min-width: 1024px) {
  .experience-item {
    grid-template-columns: 1fr 1fr;
  }
  
  .experience-item.reverse .experience-content {
    order: 2;
  }
  
  .experience-item.reverse .experience-image {
    order: 1;
  }
}

/* ===== Gallery ===== */
.gallery {
  padding: 6rem 0;
  background-color: var(--background);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.gallery-item.large img {
  aspect-ratio: auto;
  height: 100%;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: hsla(20, 10%, 6%, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--foreground);
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: hsla(20, 10%, 6%, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

/* ===== Team ===== */
.team {
  padding: 6rem 0;
  background-color: var(--secondary);
}

.team-grid {
  display: grid;
  gap: 2rem;
}

.team-card {
  background-color: var(--card);
  border: 1px solid hsla(38, 30%, 20%, 0.5);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.5s ease;
}

.team-card:hover {
  border-color: hsla(38, 70%, 50%, 0.5);
}

.team-avatar {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  border: 2px solid hsla(38, 70%, 50%, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.team-card:hover .team-avatar {
  border-color: var(--primary);
}

.team-avatar span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--primary);
}

.team-card h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-link {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-link {
  opacity: 1;
}

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

/* ===== Contact ===== */
.contact {
  padding: 6rem 0;
  background-color: var(--background);
}

.contact-grid {
  display: grid;
  gap: 4rem;
}

.contact-info .section-title {
  margin-bottom: 3rem;
}

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

.contact-item {
  display: flex;
  gap: 1.25rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid hsla(38, 70%, 50%, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-item h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

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

.social-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(38, 30%, 20%, 0.3);
}

.social-links p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.contact-form-wrapper {
  background-color: var(--card);
  border: 1px solid hsla(38, 30%, 20%, 0.5);
  padding: 2rem;
}

.contact-logo {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-logo span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form-wrapper h3 {
  font-size: 1.75rem;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 1rem;
}

.contact-form-wrapper > p {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

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

.form-row {
  display: grid;
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  color: var(--foreground);
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-map {
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* ===== Footer ===== */
.footer {
  padding: 3rem 0;
  background-color: var(--secondary);
  border-top: 1px solid hsla(38, 30%, 20%, 0.3);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-logo .logo-text {
  font-size: 1.5rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-info a,
.footer-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-info .divider {
  display: none;
}

.copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-info {
    flex-direction: row;
  }
  
  .footer-info .divider {
    display: inline;
    color: var(--border);
  }
}

/* ===== Team Bio Pages ===== */
.bio-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: var(--secondary);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--primary);
}

.bio-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--foreground);
}

.bio-section {
  padding: 5rem 0;
}

.bio-grid {
  display: grid;
  gap: 4rem;
}

.bio-sidebar {
  position: sticky;
  top: 8rem;
}

.bio-avatar {
  width: 8rem;
  height: 8rem;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.bio-avatar span {
  font-family: var(--font-display);
  font-size: 3rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bio-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bio-meta h3 {
  font-family: var(--font-body);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.bio-meta p {
  font-size: 0.875rem;
  color: var(--foreground);
}

.bio-meta p.title {
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.bio-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.bio-content p.lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.bio-content h2 {
  font-size: 1.75rem;
  color: var(--foreground);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.bio-content blockquote {
  border-left: 2px solid var(--primary);
  padding-left: 1.5rem;
  margin: 3rem 0;
}

.bio-content blockquote p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.bio-content blockquote cite {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-style: normal;
  color: var(--primary);
}

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

/* ===== Menu Page ===== */
.menu-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: var(--secondary);
  text-align: center;
}

.menu-hero .section-title {
  margin-bottom: 1rem;
}

.menu-hero p {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.menu-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.menu-nav-inner {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  min-width: max-content;
}

.menu-nav a {
  padding: 0.5rem 1.5rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.menu-nav a:hover,
.menu-nav a.active {
  color: var(--primary);
  border-color: var(--primary);
}

.menu-section {
  padding: 5rem 0;
}

.menu-section:nth-child(even) {
  background-color: var(--secondary);
}

.menu-category-title {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid hsla(38, 30%, 20%, 0.3);
}

.menu-item-info h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.menu-item-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary);
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-style: italic;
}

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

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

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

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