/* Verde Vista - Main Stylesheet */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background-color: #0d0d0d;
  color: #e8e4df;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, nav {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 300;
}

a {
  color: #e8e4df;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* Splash Page */
.splash-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.splash-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash-logo {
  position: absolute;
  top: 48px;
  left: 56px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(13, 13, 13, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.menu-overlay.active {
  display: flex;
}

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

.menu-content nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 2rem;
}

.menu-content nav a {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.menu-content nav a:hover,
.menu-content nav a.active {
  opacity: 1;
}

.menu-content nav a.active {
  text-decoration: underline;
}

.close-menu {
  position: absolute;
  top: 48px;
  right: 56px;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
}

/* Interior Page Header */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 56px;
  background-color: #0d0d0d;
  z-index: 100;
}

.hamburger {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin-right: 2rem;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #e8e4df;
  transition: all 0.3s ease;
}

.header-logo {
  font-size: 24px;
}

/* Page Layout */
.page-container {
  display: flex;
  min-height: 100vh;
  padding-top: 80px;
}

.left-zone {
  width: 25%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
}

.right-zone {
  width: 75%;
  padding: 3rem 2rem;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Category Buttons */
.category-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-btn {
  background: none;
  border: 1px solid rgba(232, 228, 223, 0.2);
  color: #e8e4df;
  padding: 0.75rem 1.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.category-btn:hover {
  border-color: rgba(232, 228, 223, 0.4);
  background-color: rgba(232, 228, 223, 0.05);
}

.category-btn.active {
  border-color: #e8e4df;
  background-color: rgba(232, 228, 223, 0.1);
}

/* Masonry Grid for Art Page */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.masonry-item:hover {
  opacity: 0.8;
}

.masonry-item img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* TYI Carousel */
.tyi-display {
  max-width: 800px;
  margin: 0 auto;
}

.tyi-card {
  background-color: rgba(232, 228, 223, 0.05);
  border: 1px solid rgba(232, 228, 223, 0.2);
  border-radius: 16px;
  padding: 3rem 4rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tyi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.tyi-btn {
  background: none;
  border: none;
  color: #e8e4df;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: opacity 0.3s ease;
}

.tyi-btn:hover {
  opacity: 0.7;
}

.pause-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(232, 228, 223, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.tyi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(232, 228, 223, 0.3);
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #e8e4df;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .page-container {
    flex-direction: column;
  }

  .left-zone,
  .right-zone {
    width: 100%;
    position: static;
    height: auto;
  }

  .masonry-grid {
    column-count: 1;
  }

  .splash-logo {
    top: 24px;
    left: 24px;
    font-size: 20px;
  }

  .page-header {
    padding: 0 24px;
  }

  .close-menu {
    top: 24px;
    right: 24px;
  }

  .tyi-card {
    padding: 2rem;
    font-size: 1.2rem;
  }
}

/* GLightbox Custom Styling */
.gslide-image {
  padding-top: 4rem !important;
}

.gslide-description {
  background: transparent !important;
  padding: 2rem 0 !important;
}

.gdesc-inner {
  font-family: 'Lato', sans-serif !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #e8e4df !important;
}

.gslide-description a {
  font-family: 'Lato', sans-serif !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  color: #e8e4df !important;
  text-decoration: none !important;
  transition: text-decoration 0.2s ease;
}

.gslide-description a:hover {
  text-decoration: underline !important;
}

/* Additional overrides to ensure consistent typography */
.gslide-desc,
.gslide-title,
.glightbox-clean .gslide-description,
.glightbox-clean .gdesc-inner,
.glightbox-clean .gslide-desc {
  font-family: 'Lato', sans-serif !important;
  font-weight: 300 !important;
  color: #e8e4df !important;
}
