/* style.css */

/* Import Inter from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* Use Inter throughout */
html, body, .container, .container * {
  font-family: 'Inter', sans-serif !important;
}

/* Base styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; background: #000; color: #fff; font-family: sans-serif; }
a { color: inherit; text-decoration: none; }

/* Layout */
/* Logo image sizing */
.logo img {
  display: block;
  width: 100px;      /* adjust as needed */
  height: auto;
}
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2%;
  max-width: 1200px;
  margin: 2rem auto 3rem;
  padding: 0 1rem;
}
.tile {
  position: relative;
  flex: 1 1 45%;
  max-width: 600px;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
}
.tile.disabled { opacity: 0.5; }
.tile img { width: 100%; display: block; }
.description {
  padding: 1rem;
}
.description h2 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.description p { line-height: 1.4; }

/* Slideshow controls */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
}
.prev { left: 0.5rem; }
.next { right: 0.5rem; }
.dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 0.75rem;
  height: 0.75rem;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}
.dot.active { background: #fff; }

/* Links section */
.links {
  border: 2px solid #fff;
  max-width: 90%;
  margin: 0 auto 2rem;
  text-align: center;
  padding: 0.5rem;
}
.links a { margin: 0 1rem; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .tile { flex: 1 1 100%; }
  .logo { font-size: 0.9rem; }
}

/* Slideshow window */
.slideshow {
  position: relative;
  border-radius: 10px; 
  width: 100%;
  aspect-ratio: 2 / 3;      /* portrait orientation */
  overflow: hidden;
  margin-bottom: 0.5rem;
}


/* Slide positioning & transition */
.slideshow .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.slideshow .slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slideshow .slide:not(.active) {
  opacity: 0;
  transform: translateX(-100%);
}

.spacer {
  border: none;
  border-top: 1px dotted #ccc;
  width: 40%;
  margin: 20px auto;
}

.links-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.links-row a img {
  display: block;
  cursor: pointer;
  width: 80px;      /* or whatever fixed width */
  height: auto;     /* preserves ratio */
}

.vertical-spacer {
  width: 1px;             /* thin vertical line */
  height: 40px;           /* adjust to taste */
  background: #ccc;       /* separator color */
  margin: 0 20px;         /* horizontal gap around it */
}

.disclaimer {
  font-size: 0.8em;        /* smaller than body text */
  color: #666;             /* muted grey */
  text-align: center;      /* center under the links */
  margin: 20px auto 0 auto;/* 20px top margin, auto sides */
  max-width: 600px;        /* optional: limit line length */
  line-height: 1.4;        /* improve readability */
}

.video-tile {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}