@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* ===== BARVY & PROMĚNNÉ ===== */
:root {
  --gold-primary: #D4AF37;
  --gold-light: #FFD700;
  --gold-dark: #B8972E;
  --blue-primary: #1160AF;
  --blue-dark: #0F3D7D;
  --blue-light: #3399FF;
  --dark-bg: #000814;
  --dark-secondary: #001F4D;
  --text-light: #FFFFFF;
  --text-muted: #CCCCCC;
  --accent: #FF6B35;
}

/*===== HEADER STYLING =====*/
/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  margin-top: 0px;
  font-size: 2.5rem;
  color: var(--gold-primary);
  background-color: transparent;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  color: var(--gold-light);
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.plus {
  color: var(--blue-light);
  font-size: 2rem;
  transform: translateY(-2px);
  margin-left: -8px;
  margin-right: 8px;
  margin-top: 8px;
  animation: plusPulse 2s infinite;
}

@keyframes plusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Brzdový kotouč */
.brake-disc { 
  width: 60px;
  height: 60px;
  background-size: cover;
  margin-right: -50px;
  margin-left: 50px;
  margin-bottom: 5px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.logo:hover .brake-disc {
  transform: rotate(10deg) scale(1.1);
}

/*===== BODY STYLING =====*/
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background-color: var(--dark-bg);
  background-image: linear-gradient(135deg, rgba(15, 61, 125, 0.1) 0%, rgba(17, 96, 175, 0.05) 100%),
                    url('/images/bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  color: var(--text-light);
}
/*===== CONTAINER & HEADER =====*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.header {
  background: linear-gradient(135deg, rgba(15, 61, 125, 0.9), rgba(17, 96, 175, 0.8));
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
  border-bottom: 2px solid var(--gold-primary);
  animation: headerSlide 0.6s ease-out;
}

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

.title {
  font-size: 36px;
  color: var(--gold-light);
  text-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 1px;
}
/*===== SECTIONS & CONTENT =====*/
.section { 
  --filter-glass3d: blur(0px) brightness(0.99) saturate(1.5); 
  --color-glass3d: rgba(17, 96, 175, 0.7);
  --noise-glass3d: url("/black-orchid.png"); 

  position: relative;
  padding: 30px 20px;
  width: 80%;
  margin: 25px auto;
  align-content: center;
  border-radius: 25px;
  z-index: 4;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow:  
    0 0 0.75px hsl(205 20% 10% / 0.2), 
    0.7px 0.8px 1.2px -0.4px hsl(205 20% 10% / 0.1), 
    1.3px 1.5px 2.2px -0.8px hsl(205 20% 10% / 0.1), 
    2.3px 2.6px 3.9px -1.2px hsl(205 20% 10% / 0.1), 
    3.9px 4.4px 6.6px -1.7px hsl(205 20% 10% / 0.1), 
    6.5px 7.2px 10.9px -2.1px hsl(205 20% 10% / 0.1), 
    8px 9px 14px -2.5px hsl(205 20% 10% / 0.2);
  animation: sectionFadeIn 0.7s ease-out forwards;
  opacity: 0;
}

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

.section:nth-child(1) { animation-delay: 0.1s; }
.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.3s; }
.section:nth-child(4) { animation-delay: 0.4s; }

.section::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  pointer-events: none; 
  border-radius: inherit; 
  overflow: hidden; 
  z-index: 3; 
  
  -webkit-backdrop-filter: var(--filter-glass3d); 
  backdrop-filter: var(--filter-glass3d); 
  background-color: var(--color-glass3d); 
  background-image: var(--noise-glass3d); 
  background-size: 100px; 
  background-repeat: repeat;
}

.section::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  pointer-events: none; 
  border-radius: inherit; 
  overflow: hidden; 
  z-index: 5; 
  
  box-shadow: 
    inset 2px 2px 1px -3px hsl(205 20% 90% / 0.8), 
    inset 4px 4px 2px -6px hsl(205 20% 90% / 0.3), 
    inset 1.5px 1.5px 1.5px -0.75px hsl(205 20% 90% / 0.15), 
    inset 1.5px 1.5px 0.25px hsl(205 20% 90% / 0.03), 
    inset 0 0 0.25px 0.5px hsl(205 20% 90% / 0.03);
}

.section> * { 
  position: relative; 
  z-index: 6; 
}

.body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-attachment: fixed;
  background-size: cover;
}

.section-alt {
  background-color: var(--dark-secondary);
  padding: 60px 20px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--gold-light);
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  animation: titleSlideIn 0.6s ease-out;
}

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

.section-title-alt {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--gold-light);
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.section-desc, .section-desc-alt {
  color: var(--gold-light);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  text-shadow: rgba(88, 81, 36, 0.3) 1px 1px 2px;
  font-size: 18px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.section-desc:hover, .section-desc-alt:hover {
  text-shadow: rgba(212, 175, 55, 0.4) 2px 2px 4px;
}
/*===== IMAGES & PHOTOS =====*/
.child-photo {
  display: block;
  margin: 20px auto;
  border-radius: 20px;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
  transition: transform 0.4s ease, filter 0.4s ease;
  border: 3px solid var(--gold-primary);
}

.child-photo:hover {
  transform: scale(1.05) translateY(-5px);
  filter: brightness(1.1);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

/* Fotka v O nás */
.aja-photo {
  display: block;
  margin: 20px auto;
  border-radius: 15px;
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
  transition: transform 0.4s ease, filter 0.4s ease;
  border: 3px solid var(--gold-primary);
}

.aja-photo:hover {
  transform: scale(1.05) translateY(-5px);
  filter: brightness(1.1);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

/*===== CARDS & GRIDS =====*/
.links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  animation: gridFadeIn 0.8s ease-out;
}

@keyframes gridFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.link-card {
  background: linear-gradient(135deg, rgba(15, 61, 125, 0.8), rgba(17, 96, 175, 0.8));
  padding: 20px;
  border-radius: 15px;
  color: var(--text-light);
  text-decoration: none;
  width: 200px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
  cursor: pointer;
}

.link-card:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--dark-bg);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  border-color: var(--gold-light);
}

/*===== SLIDESHOW =====*/
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
  border: 2px solid var(--gold-primary);
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
  animation: slideZoom 0.6s ease-out;
}

@keyframes slideZoom {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.slide.active {
  display: block;
}

.slide-description {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
  color: white;
  padding: 30px 20px 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0 0 18px 18px;
  animation: slideDescIn 0.5s ease-out 0.2s forwards;
  opacity: 0;
}

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

.slide-description h3 {
  color: var(--gold-light);
  margin-bottom: 8px;
  font-size: 1.4rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.slide-description p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.slide-description small {
  color: var(--gold-light);
  opacity: 0.8;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  left: 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
  left: auto;
}

.prev:hover, .next:hover {
  background-color: rgba(212, 175, 55, 0.8);
  color: var(--dark-bg);
  border-color: var(--gold-primary);
  transform: scale(1.1);
}

.dots-container {
  text-align: center;
  padding: 15px;
  animation: dotsSlideUp 0.5s ease-out 0.3s forwards;
  opacity: 0;
}

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

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background-color: var(--gold-primary);
  border-color: var(--gold-light);
  transform: scale(1.2);
}

.active-dot {
  background-color: var(--gold-light);
  border-color: var(--gold-primary);
  transform: scale(1.3);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/*===== GALLERY GRID =====*/
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  padding: 15px;
  animation: gridFadeIn 0.8s ease-out;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.gallery-item:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-8px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/*===== EVENTS WRAPPER & BOXES =====*/
.events-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 20px;
}

.prev_event, .next_event {
  cursor: pointer;
  position: relative;
  width: auto;
  padding: 12px 16px;
  color: var(--gold-light);
  font-weight: bold;
  font-size: 24px;
  transition: all 0.3s ease;
  border-radius: 8px;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  min-height: 45px;
}

.prev_event:hover, .next_event:hover {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.events-container {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  padding: 10px 0;
}

.event-box {
  width: 300px;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid var(--gold-primary);
  flex-shrink: 0;
}

.event-box:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.event-overlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.95));
  color: white;
  width: 100%;
  padding: 20px 15px 15px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.event-overlay h3 {
  color: var(--gold-light);
  margin-bottom: 8px;
  font-size: 1.2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.event-overlay p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.event-box.past {
  filter: grayscale(80%) brightness(0.8);
}

.event-box.past:hover {
  filter: grayscale(50%) brightness(1);
}

/*===== BUTTONS =====*/
.button {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--dark-bg);
  border: 2px solid var(--gold-primary);
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  margin: 10px auto;
  display: block;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  border-color: var(--gold-light);
}

.button:active {
  transform: translateY(-1px);
}

/*===== NAVIGATION =====*/
.main-nav {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.nav-link {
  color: var(--gold-light);
  margin: 0 10px;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-link:hover::before {
  left: 0;
}

.nav-link:hover {
  color: var(--dark-bg);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

/*===== FOOTER =====*/
.footer {
  background: linear-gradient(135deg, var(--dark-secondary), var(--dark-bg));
  color: var(--text-muted);
  text-align: center;
  position: relative;
  padding: 30px 20px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-top: 2px solid var(--gold-primary);
  box-shadow: 0 -4px 16px rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.footer:hover {
  color: var(--gold-light);
}

.footer a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/*===== LIGHTBOX =====*/
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
}

.lightbox .close-button {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--gold-light);
  font-size: 40px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.lightbox .close-button:hover {
  color: var(--text-light);
  background: rgba(212, 175, 55, 0.3);
  transform: scale(1.1);
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  display: block;
  border: 3px solid var(--gold-primary);
  border-radius: 15px;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
  cursor: pointer;
}

/*===== RESPONSIVE DESIGN =====*/
@media (max-width: 768px) {
  .logo {
    font-size: 1.8rem;
  }

  .brake-disc {
    width: 45px;
    height: 45px;
    margin-right: -35px;
    margin-left: 35px;
  }

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

  .subtitle {
    font-size: 14px;
  }

  .nav-link {
    margin: 0 5px;
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  .section {
    width: 90%;
    margin: 15px auto;
    padding: 20px 15px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-desc, .section-desc-alt {
    font-size: 16px;
  }

  .slideshow-container {
    height: 350px;
  }

  .slide img {
    border-radius: 15px;
  }

  .prev, .next {
    padding: 12px;
    font-size: 20px;
  }

  .dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
  }

  .child-photo {
    height: 250px;
    border-radius: 15px;
  }

  .event-box {
    width: 250px;
    height: 170px;
  }

  .link-card {
    width: 180px;
    padding: 15px;
  }

  .image-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .button {
    width: 180px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .brake-disc {
    width: 40px;
    height: 40px;
    margin-right: -30px;
    margin-left: 30px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .plus {
    font-size: 1.4rem;
  }

  .subtitle {
    font-size: 12px;
    margin-top: 5px;
  }

  .main-nav {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .nav-link {
    margin: 0 3px;
    padding: 5px 10px;
    font-size: 0.8rem;
  }

  .section {
    width: 95%;
    margin: 10px auto;
    padding: 15px 12px;
    border-radius: 15px;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .section-desc, .section-desc-alt {
    font-size: 14px;
    line-height: 1.5;
  }

  .slideshow-container {
    height: 280px;
    border-radius: 15px;
  }

  .slide-description {
    padding: 20px 15px 15px;
  }

  .slide-description h3 {
    font-size: 1.1rem;
  }

  .slide-description p,
  .slide-description small {
    font-size: 0.85rem;
  }

  .prev, .next {
    padding: 10px;
    font-size: 18px;
    margin-top: -18px;
  }

  .dots-container {
    padding: 8px;
  }

  .dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }

  .child-photo {
    height: 200px;
    border-radius: 12px;
  }

  .events-wrapper {
    gap: 0.5rem;
    padding: 10px;
  }

  .prev_event, .next_event {
    padding: 8px 12px;
    font-size: 18px;
    min-width: 40px;
    min-height: 40px;
  }

  .event-box {
    width: 220px;
    height: 150px;
  }

  .event-overlay {
    padding: 15px 10px 10px;
  }

  .event-overlay h3 {
    font-size: 1rem;
  }

  .event-overlay p {
    font-size: 0.85rem;
  }

  .links-grid {
    gap: 15px;
  }

  .link-card {
    width: 160px;
    padding: 12px;
    font-size: 14px;
  }

  .image-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    padding: 8px;
  }

  .gallery-item {
    border-radius: 8px;
  }

  .gallery-item img {
    height: 150px;
  }

  .button {
    width: 160px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .footer {
    padding: 20px 15px;
    font-size: 13px;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 85%;
  }
}

@media (max-width: 400px) {
  .logo {
    font-size: 1.1rem;
    gap: 4px;
  }

  .brake-disc {
    width: 35px;
    height: 35px;
    margin-right: -25px;
    margin-left: 25px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .plus {
    font-size: 1rem;
    margin-left: -4px;
  }

  .subtitle {
    font-size: 11px;
  }

  .nav-link {
    margin: 0 2px;
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .section {
    width: 98%;
    padding: 12px 10px;
  }

  .section-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .section-desc, .section-desc-alt {
    font-size: 13px;
  }

  .slideshow-container {
    height: 240px;
  }

  .event-box {
    width: 180px;
    height: 130px;
  }

  .link-card {
    width: 140px;
    padding: 10px;
    font-size: 13px;
  }

  .button {
    width: 140px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Modernize additions (import overrides if needed) */
@import url('css/modernize.css');

