/*
 * Modern Styles for Artist Portfolio
 * Sumithra Bhakthavatsalam - 42 Hues
 * Complete website redesign - 2026
 */

/* ===================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   =================================== */

:root {
  /* Color Palette: "Elegant Artist" */
  --color-primary: #2A2A2A;        /* Charcoal text */
  --color-accent: #D4A574;         /* Warm gold accent */
  --color-background: #FFFFFF;     /* Clean white (gallery standard) */
  --color-surface: #F8F8F8;        /* Subtle off-white */

  /* Text Colors */
  --color-text-primary: #2A2A2A;   /* Dark, readable */
  --color-text-secondary: #666666; /* Medium gray for supporting text */
  --color-text-muted: #999999;     /* Light gray for metadata */

  /* UI Colors */
  --color-border: #E0E0E0;         /* Subtle borders */
  --color-hover: #C89865;          /* Darker gold for interactions */
  --color-focus: #D4A574;          /* Accent for focus states */

  /* Semantic Colors */
  --color-success: #4CAF50;
  --color-error: #F44336;
  --color-warning: #FF9800;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Montserrat', Arial, sans-serif;

  /* Fluid Typography (responsive font sizes) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);      /* 12-14px */
  --text-sm: clamp(0.875rem, 0.85rem + 0.25vw, 1rem);        /* 14-16px */
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);      /* 16-18px */
  --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.375rem);   /* 18-22px */
  --text-xl: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);          /* 24-32px */
  --text-2xl: clamp(2rem, 1.75rem + 1.25vw, 3rem);           /* 32-48px */
  --text-3xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);             /* 40-64px */

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Font Weights */
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Spacing Scale (8px base) */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 1rem;      /* 16px */
  --space-md: 1.5rem;    /* 24px */
  --space-lg: 2rem;      /* 32px */
  --space-xl: 3rem;      /* 48px */
  --space-2xl: 4rem;     /* 64px */
  --space-3xl: 6rem;     /* 96px */

  /* Layout */
  --container-max-width: 1400px;
  --container-padding: clamp(1rem, 5vw, 3rem);
  --header-height: 80px;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   CSS RESET
   =================================== */

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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: var(--leading-normal);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  min-height: 100vh;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
  color: var(--color-primary);
}

h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

h5, h6 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

p {
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

a {
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-hover);
}

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

strong {
  font-weight: var(--weight-semibold);
}

em {
  font-style: italic;
}

/* ===================================
   ACCESSIBILITY
   =================================== */

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background-color: var(--color-accent);
  color: white;
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  font-weight: var(--weight-semibold);
  z-index: 10000;
  border-radius: 0 0 var(--border-radius-md) 0;
}

.skip-link:focus {
  top: 0;
  outline: none;
}

/* Focus styles for all interactive elements */
*:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* Remove default outline for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* 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-behavior: auto !important;
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

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

.header-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--space-md) var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  flex-shrink: 0;
}

.brand-link {
  display: block;
  text-decoration: none;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  line-height: 1.2;
  transition: color var(--transition-base);
}

.brand-tagline {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Navigation Toggle Button (Mobile) */
.nav-toggle {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

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

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

  .nav-toggle {
    display: none;
  }
}

.nav-list {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

/* Animated underline */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

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

.nav-link[aria-current="page"] {
  color: var(--color-accent);
  font-weight: var(--weight-semibold);
}

/* Mobile Navigation Menu Styles */
@media (max-width: 767px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right var(--transition-base);
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
  }

  .nav-link {
    font-size: var(--text-lg);
  }
}

/* Hamburger Icon Animation */
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all var(--transition-base);
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -8px;
}

.nav-toggle-icon::after {
  bottom: -8px;
}

/* Animated X when open */
.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===================================
   LAYOUT COMPONENTS
   =================================== */

.section-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  font-style: italic;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ===================================
   HERO SECTION (Home Page)
   =================================== */

.hero-section {
  padding: var(--space-3xl) var(--container-padding);
  background: linear-gradient(
    135deg,
    #FFF9F0 0%,
    #FFEFD5 50%,
    #FFE8C5 100%
  );
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

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

.hero-greeting {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

.hero-name {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  position: relative;
  animation: slideInLeft 0.8s ease-out;
}

.hero-name::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  margin-top: var(--space-md);
  animation: expandWidth 1s ease-out 0.3s backwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

.hero-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xl);
  animation: fadeIn 1s ease-out 0.4s backwards;
}

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

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  animation: fadeIn 1s ease-out 0.6s backwards;
}

.artist-photo {
  margin: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 8px rgba(255, 255, 255, 0.9),
    0 0 0 12px rgba(212, 165, 116, 0.3);
  position: relative;
  animation: slideInRight 0.8s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-photo:hover {
  transform: translateY(-5px);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.2),
    0 0 0 8px rgba(255, 255, 255, 0.9),
    0 0 0 12px rgba(212, 165, 116, 0.5);
}

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

.artist-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===================================
   FEATURED WORKS SECTION
   =================================== */

.featured-works {
  padding: var(--space-3xl) var(--container-padding);
}

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

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

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

.work-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

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

.work-image {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

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

.work-info {
  padding: var(--space-lg);
}

.work-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.work-meta {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.work-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  text-align: center;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--color-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================================
   GALLERY CAROUSEL
   =================================== */

.gallery-carousel-section {
  padding: var(--space-2xl) var(--container-padding);
  background-color: var(--color-background);
}

.gallery-container {
  max-width: 1600px;
  margin: 0 auto;
}

.gallery-main-carousel {
  margin-bottom: var(--space-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: var(--color-surface);
}

.carousel-figure {
  margin: 0;
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 800px;
}

.carousel-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--color-surface);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    transparent 100%
  );
  color: white;
  transition: transform var(--transition-base);
}

.artwork-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-xs);
  color: white;
}

.artwork-meta {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-sm);
}

.artwork-description {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-top: var(--space-md);
  max-width: 600px;
}

.artwork-description.hidden {
  display: none;
}

.read-more-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius-sm);
  font-size: var(--text-xs);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.read-more-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Thumbnail Carousel */
.gallery-thumbs-carousel {
  margin-top: var(--space-lg);
}

.gallery-thumbs-carousel .swiper-slide {
  width: 120px;
  height: 120px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
  border: 3px solid transparent;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.gallery-thumbs-carousel .swiper-slide:hover {
  opacity: 0.8;
}

.gallery-thumbs-carousel .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--color-accent);
}

.gallery-thumbs-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: background-color var(--transition-fast);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

/* Pagination */
.swiper-pagination-bullet {
  background-color: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-accent);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .carousel-figure {
    height: 50vh;
  }

  .gallery-thumbs-carousel .swiper-slide {
    width: 80px;
    height: 80px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 16px;
  }
}

.gallery-intro {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.gallery-intro a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ===================================
   TIMELINE (Shows Page)
   =================================== */

.shows-section {
  padding: var(--space-3xl) var(--container-padding);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: var(--space-lg);
}

/* Timeline vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-2xl);
  padding-left: var(--space-xl);
}

/* Timeline dot */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-accent);
  border: 3px solid var(--color-background);
  box-shadow: 0 0 0 2px var(--color-border);
}

.timeline-date {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.timeline-location {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.timeline-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.timeline-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: var(--weight-medium);
  transition: color var(--transition-fast);
}

.timeline-link:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

.shows-gallery {
  margin-top: var(--space-3xl);
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.shows-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* ===================================
   NEWS CARDS (News Page)
   =================================== */

.news-section {
  padding: var(--space-3xl) var(--container-padding);
}

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

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

.news-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

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

.news-image {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.news-content {
  padding: var(--space-lg);
}

.news-date {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-accent);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.news-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.news-excerpt {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.news-link {
  color: var(--color-accent);
  font-weight: var(--weight-medium);
  text-decoration: none;
}

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

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-section {
  padding: var(--space-3xl) var(--container-padding);
}

.contact-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

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

.contact-description {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.contact-info {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.contact-email {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
}

.contact-email a {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-image {
  margin-top: var(--space-xl);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

/* Form Styles */
.contact-form-wrapper {
  background-color: var(--color-surface);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: var(--weight-medium);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius-md);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

.form-status {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  font-size: var(--text-sm);
  display: none;
}

.form-status.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

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

.site-footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-2xl) var(--container-padding) var(--space-lg);
  margin-top: var(--space-3xl);
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

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

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

.footer-heading {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: white;
  margin-bottom: var(--space-md);
}

.footer-text {
  line-height: 1.6;
  font-size: var(--text-sm);
}

.footer-links,
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: var(--space-sm);
}

/* Horizontal layout for Quick Links on desktop */
@media (min-width: 768px) {
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
  }

  .footer-links li {
    margin-bottom: 0;
  }
}

.footer-links a,
.footer-social a,
.footer-email a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: var(--text-sm);
}

.footer-links a:hover,
.footer-social a:hover,
.footer-email a:hover {
  color: var(--color-accent);
}

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

.footer-copyright,
.footer-credits {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  margin: var(--space-xs) 0;
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-copyright a:hover {
  color: var(--color-accent);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.hidden {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
