body {
    margin: 0;
    font-family: "Georgia", serif;
    background: #111;
    color: #eee;
}

.page-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.site-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 300px;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.nickname {
    font-style: italic;
    font-weight: normal;
}

.subtitle {
    color: #ccc;
}

.price {
    font-size: 1.8rem;
    color: #d4af37;
    margin-top: 10px;
}

.content h2,
.carousel-section h2,
.video-section h2,
.contact h2 {
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.content {
    margin-bottom: 40px;
}

/* ===== Gallery (Carousel) ===== */
.gallery {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.g-viewport {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #333;
  background: #0b0b0b;
}

.g-track {
  display: flex;
  will-change: transform;
  transform: translateX(0);
  transition: transform 420ms ease;
}

.g-slide {
  min-width: 100%;
  margin: 0;
}

.g-slide img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}

.g-nav {
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: 1px solid #333;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 10px 0;
  border-radius: 12px;
}

.g-nav:hover {
  background: rgba(0,0,0,0.75);
}

.g-meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #ccc;
  font-style: italic;
}

.g-count {
  color: #d4af37;
  font-style: normal;
}

/* Thumbnails */
.g-thumbs {
  margin-top: 12px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(70px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.g-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
  opacity: 0.7;
  cursor: pointer;
}

.g-thumb img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  display: block;
}

.g-thumb.active {
  opacity: 1;
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

/* Modal */
.g-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

.g-modal[aria-hidden="false"] {
  display: block;
}

.g-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.g-modal-card {
  position: relative;
  max-width: 980px;
  margin: 6vh auto;
  background: #121212;
  border: 1px solid #333;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.6);
}

.g-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 2;
}

.g-modal-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
}

.g-modal-body img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

.g-modal-text {
  padding: 18px 18px 10px 18px;
}

.g-modal-kicker {
  color: #d4af37;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.g-modal-text h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
}

.g-modal-text p {
  margin: 0;
  color: #ccc;
  line-height: 1.45;
}

.g-modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 14px;
  border-top: 1px solid #333;
}

.g-btn {
  background: rgba(0,0,0,0.55);
  border: 1px solid #333;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
}

.g-btn:hover {
  background: rgba(0,0,0,0.75);
}

@media (max-width: 820px) {
  .gallery {
    grid-template-columns: 44px 1fr 44px;
  }
  .g-modal-card {
    margin: 3vh 10px;
  }
  .g-modal-body {
    grid-template-columns: 1fr;
  }
  .g-modal-body img {
    max-height: 52vh;
  }
}


.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
}

.prev { left: 10px; }
.next { right: 10px; }

.caption {
    margin-top: 10px;
    font-style: italic;
    color: #ccc;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact {
    text-align: center;
    margin-top: 40px;
}

.contact-email a {
    color: #d4af37;
    text-decoration: none;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #777;
}
