/* =====================================================
   PHOTOGRAPHY PORTFOLIO - ENHANCED DLC REPLICA
   Minimal design, superior navigation
   ===================================================== */

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-gray-100: #f8f8f8;
  --color-gray-200: #e8e8e8;
  --color-gray-400: #999;
  --color-gray-600: #666;
  --color-gray-800: #333;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --header-height: 70px;
  --footer-height: 60px;
  --radius-squircle: 28px;
  /* Theme (light cream) */
  --color-bg: #faf8f5;
  --color-surface: rgba(250, 248, 245, 0.98);
  --color-text: #0a0a0a;
  --color-text-muted: #666;
  --color-accent: #000;
  --color-accent-contrast: #fff;
  --color-border: #e8e4de;
}

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

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

body {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* -------------------------------------------------
   Header
   ------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
.logo-link {
  display: block;
  flex-shrink: 0;
  z-index: 10;
}

.logo {
  width: 200px;
  height: auto;
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.7;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

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

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

.nav-separator {
  width: 1px;
  height: 14px;
  background: var(--color-border);
}

.nav-link--static {
  color: var(--color-text-muted);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  z-index: 1001;
}

.menu-bar {
  width: 24px;
  height: 1px;
  background: var(--color-accent);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-toggle.active .menu-bar:first-child {
  transform: rotate(45deg) translateY(5px);
}

.menu-toggle.active .menu-bar:last-child {
  transform: rotate(-45deg) translateY(-5px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Book Icon */
.bookstore-link {
  display: block;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.bookstore-link:hover {
  opacity: 1;
}

.book-icon {
  width: 24px;
  height: 27px;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 30px;
}

.mobile-nav-link {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

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

/* -------------------------------------------------
   Main Content
   ------------------------------------------------- */
.main-content {
  min-height: 100vh;
  padding-top: var(--header-height);
  opacity: 1;
  transition: opacity var(--transition-medium);
}

.main-content.transitioning {
  opacity: 0;
}

/* -------------------------------------------------
   Page: Home (Fullscreen Hero)
   ------------------------------------------------- */
.page-home {
  position: relative;
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: opacity 0.6s ease;
}

.hero-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 0.6s ease;
}

.hero-particles {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-tagline {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

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

/* -------------------------------------------------
   Page: Gallery Grid (Photographs, Series)
   ------------------------------------------------- */
.page-gallery {
  padding: 60px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.page-title {
  text-align: center;
  margin-bottom: 50px;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-title p {
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

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

.gallery-item-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-squircle);
}

/* Gallery uses shared .video-transition-* (see Video transition – shared) */

.gallery-item-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-squircle);
  transition: transform var(--transition-medium), filter var(--transition-medium);
  filter: grayscale(0);
}

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

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--color-white);
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}

.gallery-item-title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 2px;
}

.gallery-item-year {
  font-size: 12px;
  opacity: 0.8;
}

/* Series Grid - Landscape thumbnails */
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.series-item {
  cursor: pointer;
}

.series-item-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-squircle);
  transition: filter var(--transition-medium);
  filter: blur(2px) brightness(0.95);
}

.series-item:hover .series-item-image {
  filter: blur(0) brightness(1);
}

.series-item-info {
  padding: 15px 0;
  text-align: center;
}

.series-item-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

.series-item-year {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* -------------------------------------------------
   Page: Single Artwork
   ------------------------------------------------- */
.page-artwork {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  padding: 60px;
}

.artwork-container {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}

.artwork-image-wrapper {
  flex: 1;
  max-width: 700px;
  position: relative;
  border-radius: var(--radius-squircle);
  overflow: hidden;
}

/* Video transition – shared */
.video-transition-layout-img {
  display: block;
  opacity: 0;
  pointer-events: none;
}

.video-transition-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-transition-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-transition-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.artwork-image-wrapper .video-transition-layout-img {
  width: 100%;
  height: auto;
}

.artwork-image-wrapper .video-transition-wrap video,
.artwork-image-wrapper .video-transition-image-layer {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.artwork-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-squircle);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.artwork-info {
  flex: 0 0 280px;
}

.artwork-artist {
  font-size: 16px;
  margin-bottom: 8px;
}

.artwork-title {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 8px;
}

.artwork-year {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.artwork-medium {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.artwork-inquire {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 25px;
  border: 1px solid var(--color-accent);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.artwork-inquire:hover {
  background: var(--color-accent);
  color: var(--color-accent-contrast);
}

/* Artwork navigation */
.artwork-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  z-index: 100;
}

.artwork-nav:hover {
  color: var(--color-accent);
}

.artwork-nav.prev {
  left: 30px;
}

.artwork-nav.next {
  right: 30px;
}

/* -------------------------------------------------
   Page: All Clients Grid
   ------------------------------------------------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.client-item {
  cursor: pointer;
}

.client-item-image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: var(--radius-squircle);
}

.client-item-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-squircle);
  transition: transform var(--transition-medium), filter var(--transition-medium);
  filter: grayscale(20%);
}

.client-item:hover .client-item-image {
  transform: scale(1.02);
  filter: grayscale(0);
}

.client-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

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

.view-work {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 10px 20px;
  border: 1px solid var(--color-white);
}

.client-item-info {
  text-align: center;
}

.client-item-name {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.client-item-desc {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Back Link */
.back-link {
  display: inline-block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  transition: color var(--transition-fast);
}

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

/* Artwork Client Name */
.artwork-client {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.artwork-description {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* -------------------------------------------------
   Page: News
   ------------------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.news-item {
  cursor: pointer;
}

.news-item-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-squircle);
  margin-bottom: 15px;
  transition: opacity var(--transition-fast);
}

.news-item:hover .news-item-image {
  opacity: 0.85;
}

.news-item-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-item-date {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* -------------------------------------------------
   Page: Books
   ------------------------------------------------- */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 30px;
}

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

.book-item-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-squircle);
  margin-bottom: 12px;
  transition: transform var(--transition-fast);
}

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

.book-item-title {
  font-size: 14px;
  margin-bottom: 4px;
}

.book-item-year {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* -------------------------------------------------
   Lightbox
   ------------------------------------------------- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-media {
  position: relative;
  max-width: 70vw;
  max-height: 85vh;
  border-radius: var(--radius-squircle);
  overflow: hidden;
}

.lightbox-media .video-transition-layout-img {
  max-width: 70vw;
  max-height: 85vh;
  width: auto;
  height: auto;
}

.lightbox-media .video-transition-wrap video {
  object-fit: contain;
}

.lightbox-media .video-transition-image-layer {
  background-size: contain;
}

.lightbox-image {
  max-width: 70vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-squircle);
}

.lightbox-info {
  color: var(--color-white);
  max-width: 250px;
}

.lightbox-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.lightbox-details {
  font-size: 14px;
  color: var(--color-gray-400);
  margin-bottom: 20px;
}

.lightbox-inquire {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.lightbox-inquire:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--color-white);
  font-size: 40px;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 30px;
  right: 30px;
  font-size: 30px;
}

.lightbox-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-gray-400);
  font-size: 13px;
}

/* -------------------------------------------------
   Keyboard Hint
   ------------------------------------------------- */
.keyboard-hint {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  font-size: 11px;
  color: var(--color-text-muted);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast);
  z-index: 100;
}

.keyboard-hint.visible {
  opacity: 1;
  visibility: visible;
}

.keyboard-hint span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* -------------------------------------------------
   Footer
   ------------------------------------------------- */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--footer-height);
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: var(--color-accent);
}

.social-icon {
  width: 18px;
  height: 18px;
}

.footer-copyright {
  font-size: 11px;
  color: var(--color-text-muted);
  display: flex;
  gap: 10px;
}

.separator {
  opacity: 0.5;
}

/* -------------------------------------------------
   Loading State
   ------------------------------------------------- */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.loading::after {
  content: '';
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* -------------------------------------------------
   Theme Toggle
   ------------------------------------------------- */
.theme-toggle {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 6px 12px;
  transition: color var(--transition-fast);
}

.theme-toggle:hover {
  color: var(--color-accent);
}

/* -------------------------------------------------
   Dark theme (cream-dark)
   ------------------------------------------------- */
html[data-theme="dark"] {
  --color-bg: #2a2825;
  --color-surface: rgba(42, 40, 37, 0.98);
  --color-text: #e8e4df;
  --color-text-muted: #a39e97;
  --color-accent: #e8e4df;
  --color-accent-contrast: #2a2825;
  --color-border: #3d3a36;
}

html[data-theme="dark"] .site-header.scrolled {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* -------------------------------------------------
   Responsive Design
   ------------------------------------------------- */
@media (max-width: 1024px) {
  .header-inner {
    padding: 0 30px;
  }
  
  .main-nav {
    gap: 16px;
  }
  
  .page-gallery {
    padding: 50px 30px 100px;
  }
  
  .artwork-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .artwork-info {
    text-align: center;
  }
  
  .lightbox-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .lightbox-image {
    max-width: 85vw;
    max-height: 60vh;
  }
  
  .lightbox-info {
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --footer-height: 50px;
  }
  
  .header-inner {
    padding: 0 20px;
  }
  
  .logo {
    width: 150px;
  }
  
  .main-nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .mobile-nav-overlay {
    display: block;
  }
  
  .bookstore-link {
    display: none;
  }
  
  .page-gallery {
    padding: 40px 20px 80px;
  }
  
  .page-title h1 {
    font-size: 22px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .series-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .page-artwork {
    padding: 30px 20px 80px;
  }
  
  .artwork-nav {
    display: none;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 10px;
  }
  
  .keyboard-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 120px;
  }
  
  .gallery-grid {
    gap: 8px;
  }
  
  .books-grid {
    gap: 15px;
  }
  
  .mobile-nav-link {
    font-size: 20px;
  }
}

/* -------------------------------------------------
   Utility Classes
   ------------------------------------------------- */
.hidden {
  display: none !important;
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

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