/* ===== CSS Variables ===== */
:root {
  --primary-color: #0b2e5d;
  --primary-color-transparent: rgba(11, 46, 93, 0.5);
  --primary-color-light: rgba(11, 46, 93, 0.1);
  --primary-color-lighter: rgba(11, 46, 93, 0.05);
  --text-color: #1a1a1a;
  --text-light: #666666;
  --text-lighter: #999999;
  --white: #fffefb;
  --border-color: #e5e5e5;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
}

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===== Loading Screen ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.loading-text {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.loading-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 254, 251, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px var(--shadow-light);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

/* ===== Header ===== */
.header {
  margin-top: 80px;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--white) 100%);
  text-align: center;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
}

.site-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.site-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* ===== Main Content ===== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Sections ===== */
.section-container {
  padding: 4rem 0;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* ===== Hero Section ===== */
.hero {
  background: var(--white);
  border: 2px solid var(--primary-color-transparent);
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: 0 10px 40px var(--shadow-light);
  padding: 6rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.flyer-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.flyer-image {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow-light);
  border: 2px solid var(--primary-color-transparent);
  transition: transform 0.3s ease;
}

.flyer-image:hover {
  transform: scale(1.05);
}

/* Mobile adjustments for flyer */
@media (max-width: 768px) {
  .flyer-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .flyer-image {
    max-width: 150px;
  }
}

.event-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.date {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 1rem;
}

.performer-names {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.concept-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-style: italic;
}

.description {
  margin-bottom: 3rem;
}

.professor, .audience {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #0a2448;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px var(--shadow-medium);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

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

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

/* ===== Schedule Section ===== */
.schedule {
  background: var(--white);
  border: 2px solid var(--primary-color-transparent);
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 5px 30px var(--shadow-light);
  padding: 3rem;
}

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

.schedule-item {
  background: var(--white);
  border: 1px solid var(--primary-color-transparent);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px var(--shadow-light);
  text-align: center;
}

.schedule-header {
  margin-bottom: 2rem;
}

.schedule-date {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.schedule-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.time-slot {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--primary-color-lighter);
  border: 1px solid var(--primary-color-transparent);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.time-slot:hover {
  transform: translateY(-3px);
}

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

.time-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.time-name {
  font-weight: 500;
  color: var(--text-color);
}

.time {
  font-weight: 600;
  color: var(--primary-color);
}

.program-details {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--primary-color-lighter);
  border-radius: 10px;
  border: 1px solid var(--primary-color-transparent);
}

.program-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--primary-color-transparent);
}

.program-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.program-title {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.program-info {
  font-size: 0.85rem;
  color: var(--text-color);
  line-height: 1.4;
}

.workshop-details {
  margin-top: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--white) 100%);
  border-radius: 10px;
  border: 1px solid var(--primary-color-transparent);
  text-align: center;
}

.workshop-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.workshop-description {
  font-size: 0.85rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* ===== Venue Section ===== */
.venue {
  background: var(--white);
  border: 2px solid var(--primary-color-transparent);
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 5px 30px var(--shadow-light);
  padding: 3rem;
}

.venue-content {
  display: grid;
  gap: 2rem;
}

.venue-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--primary-color-transparent);
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.venue-icon {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.venue-details {
  flex: 1;
}

.venue-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.venue-address {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.access-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.access-icon {
  color: var(--primary-color);
}

.venue-map {
  margin-top: 1rem;
}

/* ===== Pricing Section ===== */
.pricing {
  background: var(--white);
  border: 2px solid var(--primary-color-transparent);
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 5px 30px var(--shadow-light);
  padding: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--primary-color-transparent);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px var(--primary-color-transparent);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
}

.pricing-body {
  margin-bottom: 2rem;
}

.price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price-original {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ===== Performers Section ===== */
.performers-detail {
  background: var(--white);
  border: 2px solid var(--primary-color-transparent);
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 5px 30px var(--shadow-light);
  padding: 3rem;
}

.performers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.performer-card {
  background: var(--white);
  border: 1px solid var(--primary-color-transparent);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.performer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-light);
}

.performer-image {
  margin-bottom: 1.5rem;
}

.image-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: var(--primary-color-lighter);
  border: 2px solid var(--primary-color-transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.performer-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.performer-title {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.performer-description {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== Works Section ===== */
.works {
  background: var(--white);
  border: 2px solid var(--primary-color-transparent);
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 5px 30px var(--shadow-light);
  padding: 3rem;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.work-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--primary-color-transparent);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px var(--shadow-light);
}

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

.work-content {
  flex: 1;
}

.work-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.work-author {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== Reservation Section ===== */
.reservation {
  background: var(--white);
  border: 2px solid var(--primary-color-transparent);
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 5px 30px var(--shadow-light);
  padding: 3rem;
}

.reservation-card {
  background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--white) 100%);
  border: 2px solid var(--primary-color-transparent);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.reservation-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.reservation-description {
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.reservation-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: 0.9rem;
}

.feature-item svg {
  color: var(--primary-color);
}

.reservation-button {
  margin-top: 2rem;
}

.reservation-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

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

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #0a2448;
  transform: translateY(-3px);
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 254, 251, 0.95);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow-medium);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }
  
  .header {
    margin-top: 70px;
    padding: 3rem 1.5rem 1.5rem;
  }
  
  main {
    padding: 0 1.5rem;
  }
  
  .section-container {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 4rem 1.5rem;
    margin: 1rem 0;
  }
  
  .event-title {
    font-size: 2.2rem;
  }
  
  .concept-text {
    font-size: 1.4rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .schedule, .venue, .pricing, .performers-detail, .works, .reservation {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .performers-grid {
    grid-template-columns: 1fr;
  }
  
  .works-grid {
    grid-template-columns: 1fr;
  }
  
  .time-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .venue-card {
    flex-direction: column;
    text-align: center;
  }
  
  .reservation-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }
  
  .site-title {
    font-size: 2.5rem;
  }
  
  .hero {
    padding: 3rem 1rem;
  }
  
  .event-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .schedule, .venue, .pricing, .performers-detail, .works, .reservation {
    padding: 1.5rem 1rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  .reservation-card {
    padding: 2rem 1.5rem;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 1rem;
    right: 1rem;
  }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Focus States ===== */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ===== Flyer Modal ===== */
.flyer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: var(--white);
  border: 2px solid var(--primary-color-transparent);
  border-radius: 20px;
  padding: 2rem;
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 60px var(--shadow-medium);
  z-index: 2001;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2002;
}

.modal-close:hover {
  background: #0a2448;
  transform: scale(1.1);
}

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

.flyer-gallery {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.modal-flyer-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--shadow-light);
  border: 2px solid var(--primary-color-transparent);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.modal-flyer-image:hover {
  transform: scale(1.02);
}

/* Mobile modal adjustments */
@media (max-width: 768px) {
  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .flyer-gallery {
    flex-direction: column;
    gap: 1rem;
  }
  
  .modal-close {
    width: 35px;
    height: 35px;
  }
}
