/* About Us Page Styles */
.about-page {
  color: #fff;
  min-height: 100vh;
  padding: 2rem 0;
}

/* Page Header */
.page-header {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.page-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-description {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 60rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Two Column Text Section */
.text-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 6rem;
  padding: 0 2rem;
}

.text-about h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #fff;
}

.text-about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 1.5rem;
}

/* Highlights Section */
.highlights-section {
  margin-top: 6rem;
}

.highlights-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #fff;
}

/* Image Viewer */
.image-viewer {
  display: flex;
  gap: 2rem;
  max-height: 1120px;
}

/* Main Image Container (70% width) */
.main-image-container {
  position: relative;
  /* display: flex; */
  align-items: start;
  justify-content: start;
  overflow: hidden;
}

.main-image {
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.image-overlay {
  /* position: absolute; */
  bottom: 0;
  left: 0;
  right: 0;
  /* background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); */
  /* padding: 3rem 2rem 2rem; */
  color: #fff;
}

.image-info h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary);
}

.image-info p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #ccc;
}

/* Image Selector (30% width) */
.image-selector {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
}

.selector-header {
  padding: 2rem;
  border-bottom: 1px solid #444;
}

.selector-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.image-thumbnails {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 1180px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

/* Webkit scrollbar styling */
.image-thumbnails::-webkit-scrollbar {
  width: 8px;
}

.image-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.image-thumbnails::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 4px;
}

.image-thumbnails::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary);
  opacity: 0.8;
}

.thumbnail-item {
  position: relative;
  cursor: pointer;
  margin-bottom: 1rem;
}


.thumbnail-item.active {
  border-color: var(--primary);
}

.thumbnail-image {
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.thumbnail-overlay {
  color: #fff;
}

.thumbnail-title {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.thumbnail-description {
  color: #ccc;
  text-transform: uppercase;
  font-size: 1.6rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .text-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .text-about h2 {
    font-size: 2rem;
  }
  
  .image-viewer {
    flex-direction: column;
    height: auto;
  }
  
  .main-image-container {
    flex: 0 0 50rem;
  }
  
  .image-selector {
    flex: 0 0 auto;
  }
  
  .image-thumbnails {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem;
  }
  
  .thumbnail-item {
    flex: 0 0 15rem;
  }
  
  .thumbnail-image {
    height: 10rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2.5rem;
  }
  
  .text-about h2 {
    font-size: 1.8rem;
  }
  
  .highlights-title {
    font-size: 2rem;
  }
  
  .main-image-container {
    flex: 0 0 40rem;
  }
  
  .thumbnail-item {
    flex: 0 0 12rem;
  }
}

.content-left {
  font-family: Playfair Display,serif;
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}


.content-right {
  font-size: 1.8rem;
  color: #d9d9d9;
  text-align: justify;
}

.content-right h3{
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

