/* --- Videos Section Override --- */
.video-section {
  padding: 10rem 5vw;
  background-color: var(--bg-primary); 
  position: relative;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
}

.title-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.video-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.video-card {
  display: flex;
  flex-direction: column;
}

.video-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.video-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 58, 69, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.play-overlay i {
  font-size: 4rem;
  color: #fff;
  transition: transform 0.4s ease;
  transform: scale(0.8);
}

.video-thumbnail-wrapper:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-thumbnail-wrapper:hover .play-overlay {
  opacity: 1;
}

.video-thumbnail-wrapper:hover .play-overlay i {
  transform: scale(1);
}

.video-content {
  text-align: left;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.video-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Modal Styling from earlier adapted for luxury */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(17,17,17, 0.95);
  z-index: 9999;
}

.modal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
}

.modal iframe {
  width: 100%;
  height: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.close-btn {
  position: absolute;
  top: -40px; right: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* --- Activities Section Override --- */
.activities-section {
  padding: 5rem 5vw 10rem 5vw;
  background-color: var(--bg-primary); 
}

.activities-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.activities-content {
  display: flex;
  flex-direction: column;
}

.activities-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.activities-list li {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.activities-list li i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-right: 1.2rem;
}

.activities-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.activity-img-wrapper {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Invisible luxury shadow */
}

.activity-img-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.activity-img-wrapper:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .activities-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
