/* About Page Specific Styles */

/* Override hero background with Banner.png */
#lgs-hero .lgs-hero-bg {
  background-image: url('../imgs/Banner.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Hide left social rail on about page */
#lgs-hero .lgs-left-rail {
  display: none !important;
}

/* Hide right dots rail on about page */
#lgs-hero .lgs-rail {
  display: none !important;
}

/* Decrease hero section height */
#lgs-hero {
  min-height: 75vh !important;
  height: 75vh !important;
}

#lgs-hero .lgs-hero-inner {
  height: 75vh !important;
}

/* ============================================ */
/* EXPLORE OUR CREATIVITY SECTION              */
/* ============================================ */

.explore-creativity {
  background: linear-gradient(180deg, #bfe9c2 0%, #c5e8c7 100%);
  padding: 80px 0;
  overflow: hidden;
}

/* Section Header */
.creativity-label {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2d2d2d;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.creativity-title {
  font-family: 'Turkey Sandwich', 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: #efcb02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Left Text Content */
.creativity-text-content {
  padding-right: 30px;
}

.creativity-card-title {
  font-family: 'Turkey Sandwich', 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #efcb02;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.creativity-description {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #2d2d2d;
  margin: 0;
}

/* Comic Cards Container with Carousel */
.creativity-carousel-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 60px;
}

.creativity-cards-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.creativity-cards-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.creativity-card {
  position: relative;
  min-width: 280px;
  width: 280px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease;
  background: #fff;
  opacity: 1;
}

.creativity-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.creativity-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.creativity-card:hover .creativity-card-img {
  transform: scale(1.08);
}

/* Arrow Navigation Buttons */
.creativity-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #efcb02;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.creativity-arrow:hover {
  background: #efcb02;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(239, 203, 2, 0.4);
}

.creativity-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.creativity-arrow svg {
  width: 24px;
  height: 24px;
  color: #2d2d2d;
  transition: color 0.3s ease;
}

.creativity-arrow:hover svg {
  color: #fff;
}

.creativity-arrow-left {
  left: 0;
}

.creativity-arrow-right {
  right: 0;
}

/* Responsive Design */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .creativity-cards-track {
    max-width: 100%;
  }
}

/* Tablet and Medium Screens (768px - 991px) */
@media (max-width: 991.98px) {
  .explore-creativity {
    padding: 60px 0;
  }

  .creativity-title {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 40px;
  }

  .creativity-text-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .creativity-card-title {
    font-size: clamp(28px, 5vw, 40px);
  }

  .creativity-carousel-wrapper {
    padding: 0 50px;
  }

  .creativity-arrow {
    width: 44px;
    height: 44px;
  }

  .creativity-arrow svg {
    width: 22px;
    height: 22px;
  }

  .creativity-card {
    min-width: 220px;
    width: 220px;
    height: 320px;
  }
}

/* Small Tablets (576px - 767px) */
@media (max-width: 767.98px) {
  .creativity-carousel-wrapper {
    padding: 0 45px;
  }

  .creativity-card {
    min-width: 200px;
    width: 200px;
    height: 300px;
  }

  .creativity-cards-container {
    gap: 15px;
  }
}

/* Mobile Devices (up to 575px) */
@media (max-width: 575.98px) {
  .explore-creativity {
    padding: 40px 0;
  }

  .creativity-title {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 25px;
  }

  .creativity-card-title {
    font-size: clamp(22px, 6vw, 30px);
    margin-bottom: 15px;
  }

  .creativity-description {
    font-size: 13px;
    line-height: 1.6;
  }

  .creativity-carousel-wrapper {
    padding: 0 38px;
  }

  .creativity-arrow {
    width: 38px;
    height: 38px;
  }

  .creativity-arrow svg {
    width: 18px;
    height: 18px;
  }

  .creativity-card {
    min-width: 180px;
    width: 180px;
    height: 270px;
  }

  .creativity-cards-container {
    gap: 12px;
  }
}

/* Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
  .creativity-title {
    font-size: clamp(24px, 8vw, 32px);
  }

  .creativity-carousel-wrapper {
    padding: 0 35px;
  }

  .creativity-arrow {
    width: 34px;
    height: 34px;
  }

  .creativity-arrow svg {
    width: 16px;
    height: 16px;
  }

  .creativity-card {
    min-width: 160px;
    width: 160px;
    height: 240px;
  }

  .creativity-cards-container {
    gap: 10px;
  }
}

/* ============================================ */
/* VIDEO SECTION - Superhero with Play Button  */
/* ============================================ */

.video-section {
  background: linear-gradient(180deg, #bfe9c2 0%, #c5e8c7 100%);
  padding: 0 0 80px 0;
  overflow: hidden;
  width: 100%;
  margin: 0;
  line-height: 0;
}

.video-wrapper {
  width: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 35%; /* Wide aspect ratio */
  overflow: hidden;
  background: #000;
}

.video-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay Gradient */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  opacity: 0.5;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Corner Borders - Complete Frame */
.video-border {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-border-top-left {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  border-top-color: #efcb02;
  border-left-color: #efcb02;
  opacity: 0;
  box-shadow: 0 0 0 rgba(239, 203, 2, 0);
}

.video-border-bottom-right {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  border-bottom-color: #efcb02;
  border-right-color: #efcb02;
  opacity: 0;
  box-shadow: 0 0 0 rgba(239, 203, 2, 0);
}

.video-wrapper:hover .video-border-top-left,
.video-wrapper:hover .video-border-bottom-right {
  opacity: 1;
  box-shadow: 0 0 30px rgba(239, 203, 2, 0.6);
}

/* Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
}

.video-play-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.play-icon {
  width: 36px;
  height: 36px;
  color: #ff0000;
  margin-left: 4px; /* Optical centering */
  transition: transform 0.3s ease;
}

.video-play-btn:hover .play-icon {
  transform: scale(1.1);
}

/* Responsive Video Section */
@media (max-width: 991.98px) {
  .video-section {
    padding: 0 0 60px 0;
  }

  .video-thumbnail {
    padding-bottom: 45%; /* Adjust aspect ratio for tablets */
  }

  .video-play-btn {
    width: 80px;
    height: 80px;
  }

  .play-icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 767.98px) {
  .video-thumbnail {
    padding-bottom: 56.25%; /* 16:9 aspect ratio for mobile */
  }

  .video-play-btn {
    width: 70px;
    height: 70px;
  }

  .play-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 575.98px) {
  .video-section {
    padding: 0 0 40px 0;
  }

  .video-thumbnail {
    padding-bottom: 65%; /* Taller aspect for small mobile */
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .play-icon {
    width: 24px;
    height: 24px;
    margin-left: 3px;
  }

  .video-border-top-left,
  .video-border-bottom-right {
    border-width: 2px;
  }
}

@media (max-width: 400px) {
  .video-play-btn {
    width: 55px;
    height: 55px;
  }

  .play-icon {
    width: 22px;
    height: 22px;
  }

  .video-border-top-left,
  .video-border-bottom-right {
    border-width: 2px;
  }
}

/* ============================================ */
/* WHY CHOOSE US SECTION                       */
/* ============================================ */

.why-choose-us {
  background: linear-gradient(180deg, #bfe9c2 0%, #c5e8c7 100%);
  padding: 80px 0;
  overflow: hidden;
}

/* Text Content */
.why-choose-content {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.why-choose-title {
  font-family: 'Turkey Sandwich', 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: #efcb02;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  line-height: 1.1;
}

.why-choose-text {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #2d2d2d;
  margin: 0;
}

/* Image Wrapper */
.why-choose-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-choose-img {
  width: 100%;
  max-width: 520px;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.why-choose-img:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Responsive Why Choose Us */
@media (max-width: 991.98px) {
  .why-choose-us {
    padding: 60px 0;
  }

  .why-choose-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .why-choose-title {
    font-size: clamp(36px, 6vw, 52px);
  }

  .why-choose-text {
    font-size: 14px;
  }

  .why-choose-img {
    max-width: 450px;
    height: 250px;
  }
}

@media (max-width: 767.98px) {
  .why-choose-title {
    font-size: clamp(32px, 7vw, 44px);
  }

  .why-choose-img {
    max-width: 400px;
    height: 220px;
  }
}

@media (max-width: 575.98px) {
  .why-choose-us {
    padding: 40px 0;
  }

  .why-choose-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 16px;
  }

  .why-choose-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .why-choose-img {
    max-width: 100%;
    height: 200px;
  }
}

@media (max-width: 400px) {
  .why-choose-title {
    font-size: clamp(24px, 9vw, 32px);
  }

  .why-choose-text {
    font-size: 12px;
  }
}
