body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  display: flex;
  height: 100vh;
  overflow-x: hidden;
}

.main-content {
  margin-left: 390px;
  padding: 40px 40px 0px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  height: 100vh;
  overflow-x: hidden;
}

.slideshow-section {
  height: 22vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 40px;
  box-sizing: border-box;
}

.slideshow-section h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: white;
}

.slideshow-section h2 a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.slideshow-section h2 a:hover {
  color: #ddd;
  text-decoration: underline;
}

.carousel-wrapper {
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.carousel-wrapper.filmstrip {
  background: #000;
  border: 14px solid #111;
  border-radius: 8px;
  box-shadow: 
    0 8px 15px rgba(0, 0, 0, 0.6),
    inset 0 0 12px rgba(255, 255, 255, 0.05),
    inset 0 0 40px rgba(0, 0, 0, 0.7);
  isolation: isolate;
}

.carousel-wrapper.filmstrip::before,
.carousel-wrapper.filmstrip::after {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  width: 12px;
  background: repeating-linear-gradient(
    to bottom,
    #444 0px,
    #444 4px,
    transparent 4px,
    transparent 10px
  );
  z-index: 2;
  opacity: 0.8;
  filter: drop-shadow(1px 0 2px #000);
}

.carousel-wrapper.filmstrip::before {
  left: 0;
  border-right: 2px solid #000;
}

.carousel-wrapper.filmstrip::after {
  right: 0;
  border-left: 2px solid #000;
}

.carousel-track {
  display: flex;
  gap: 14px;
  animation: none;
  align-items: center;
  height: 100%;
  will-change: transform;
  min-width: 200%
}
.carousel-track.start-scroll {
  animation: scrollInfinite 30s linear infinite;
}
.carousel-track img {
  height: 100%;
  max-height: 180px;
  width: auto;
  max-width: 240px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: contain;
  border: 2px solid #222;
  background: #111;
  padding: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.03);
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

.button-link {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px 24px;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(8px);
  margin: 30px auto;
  transition: background 0.3s ease;
  text-align: center;
}

.button-link:hover {
  background: rgba(255, 255, 255, 0.25);
}

.gallery-grid {
  column-count: 4;
  column-gap: 20px;
  padding: 40px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
  display: block;
  break-inside: avoid;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.cta-button-wrapper {
  text-align: center;
  margin: 40px 0;
}

.cta-button {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 30px;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.shooting-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px;
  justify-content: space-between;
}

.shooting-box {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.shooting-box:hover {
  transform: scale(1.02);
}

.shooting-box img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 16px;
}
a {
  text-decoration: none;
  color: white;
}

h2 {
  margin-top: 12px;
  font-size: 20px;
  color: white;
  text-decoration: none;
}

p {
  font-size: 14px;
  margin-top: 8px;
  color: white;
  text-decoration: none;
}


@media (max-width: 1024px) {
  body {
    flex-direction: column;
    height: auto;
  }

  .main-content {
    margin-left: 0;
    padding: 20px;
    height: auto;
  }

  .slideshow-section {
    height: auto;
    padding: 20px;
  }

  .carousel-track img {
    max-height: 120px;
    max-width: 180px;
  }

  .gallery-grid {
    column-count: 2;
    padding: 20px;
  }

  .shooting-overview {
    padding: 30px 20px;
    gap: 20px;
    justify-content: center;
  }

  .shooting-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta-button-wrapper {
    margin: 30px 0;
  }
}



@media (max-width: 767px) {
  body {
    flex-direction: column;
    height: auto;
    overflow-x: hidden;
  }

  .sidebar {
    position: relative;
    width: 100%;
    left: 0;
    padding: 30px 20px;
    text-align: center;
  }

  .main-content {
    margin-left: 0;
    padding: 20px;
    height: auto;
  }

  .slideshow-section {
    padding: 20px 0;
    height: auto;
  }

  .carousel-track img {
    max-height: 100px;
    max-width: 140px;
  }

  .gallery-grid {
    column-count: 1;
    padding: 20px;
  }

  .shooting-overview {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    align-items: center;
  }

  .shooting-box {
    width: 100%;
    max-width: 100%;
    padding: 16px;
  }

  h2 {
    font-size: 18px;
  }

  p {
    font-size: 13px;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 14px;
  }

  .button-link {
    padding: 10px 20px;
    font-size: 14px;
  }
}
