/* Fundación Galisteo - Static Site CSS
   Elegant, sober, cultural-literary style inspired by Borges
*/

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

:root {
  /* Warm cream/beige background */
  --background: hsl(40, 30%, 96%);
  --foreground: hsl(30, 10%, 12%);
  
  /* Cards with slightly warmer tone */
  --card: hsl(40, 25%, 98%);
  --card-foreground: hsl(30, 10%, 12%);
  
  /* Primary: Deep charcoal black */
  --primary: hsl(30, 10%, 12%);
  --primary-foreground: hsl(40, 30%, 96%);
  
  /* Secondary: Warm beige */
  --secondary: hsl(38, 35%, 90%);
  --secondary-foreground: hsl(30, 10%, 12%);
  
  /* Muted: Soft warm gray */
  --muted: hsl(35, 20%, 92%);
  --muted-foreground: hsl(30, 8%, 45%);
  
  /* Accent: Rich cream */
  --accent: hsl(38, 40%, 88%);
  --accent-foreground: hsl(30, 10%, 12%);
  
  /* Borders: Soft warm gray */
  --border: hsl(35, 20%, 85%);
  
  --radius: 0.375rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.font-display {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
}

.font-body {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo img {
  height: 3rem;
  width: auto;
}

/* Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: var(--primary-foreground);
  cursor: pointer;
}

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

.menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-mobile.open {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--primary-foreground);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Main Content */
main {
  flex: 1;
  padding-top: 5rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 5rem);
  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(to bottom, 
    rgba(245, 243, 239, 0.7), 
    rgba(245, 243, 239, 0.5), 
    rgba(245, 243, 239, 0.8)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero blockquote {
  animation: fadeIn 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

.hero blockquote p {
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(35, 33, 30, 0.9);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero blockquote p {
    font-size: 1.5rem;
  }
}

.hero blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: var(--foreground);
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

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

.btn-outline:hover {
  background-color: var(--secondary);
}

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

.btn-ghost:hover {
  background-color: var(--secondary);
}

/* Sections */
section {
  padding: 6rem 0;
}

.section-secondary {
  background-color: rgba(230, 222, 207, 0.5);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 3rem;
}

/* Page Hero */
.page-hero {
  padding: 6rem 0;
  background-color: rgba(230, 222, 207, 0.3);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 3.75rem;
  }
}

.page-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* Cards */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(35, 33, 30, 0.2);
}

.card-label {
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.5rem 0 1rem;
}

.card-text {
  font-family: 'Inter', sans-serif;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  text-decoration: none;
  transition: opacity 0.2s;
}

.card-link:hover {
  opacity: 0.7;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

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

.grid-3 {
  grid-template-columns: 1fr;
}

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

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

/* Community Section */
.community-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.community-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.community-text {
  space-y: 1.5rem;
}

.community-text h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .community-text h2 {
    font-size: 2.25rem;
  }
}

.community-text p {
  font-family: 'Inter', sans-serif;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.community-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 2rem;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.gallery-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-caption {
  background-color: var(--card);
  padding: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.gallery-caption p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Testimonials */
.testimonial-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-weight: 600;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Info Box */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.info-box svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--muted-foreground);
}

.info-box-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.info-box-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--secondary);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

/* Course Classes */
.class-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.class-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.class-number {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 50%;
  flex-shrink: 0;
}

.class-title {
  font-size: 1.125rem;
}

.class-content {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding-left: 2.75rem;
}

/* Methodology Box */
.methodology-box {
  background-color: rgba(230, 222, 207, 0.5);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.methodology-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.methodology-box p {
  font-family: 'Inter', sans-serif;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Topic List */
.topic-list {
  display: grid;
  gap: 0.75rem;
}

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

.topic-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
}

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

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

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

.footer h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-quote {
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.footer-cite {
  font-size: 0.75rem;
  opacity: 0.6;
  font-family: 'Inter', sans-serif;
}

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

.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--primary-foreground);
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.footer-contact {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact a {
  color: var(--primary-foreground);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-contact a:hover {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: var(--primary-foreground);
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.8;
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Contact Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(35, 33, 30, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: none;
}

/* Video Grid */
.video-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.video-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.video-item:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s;
}

.video-thumb:hover .video-play {
  background-color: rgba(0, 0, 0, 0.6);
}

.video-play svg {
  width: 3rem;
  height: 3rem;
  color: white;
}

.video-info {
  padding: 1rem;
}

.video-info h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.video-info p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Books Grid */
.books-grid {
  display: grid;
  gap: 2rem;
}

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

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

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

.book-item {
  text-align: center;
}

.book-cover {
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

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

.book-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.book-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.book-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--primary);
  text-decoration: none;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
}

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

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
}

.lightbox-close:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
}

.lightbox-nav:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  text-align: center;
}

.lightbox-caption p {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }

.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

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

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

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(35, 33, 30, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.75rem;
  background-color: rgba(35, 33, 30, 0.3);
  border-radius: 9999px;
  margin-top: 0.5rem;
}

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

/* Flex Layout */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }

/* Responsive visibility */
.hidden { display: none; }

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:grid { display: grid; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:grid { display: grid; }
  .lg\:flex { display: flex; }
}
