/* =========================
   ABOUT HERO
========================= */

.about-hero {
  position: relative;

  width: 100%;
  height: 540px;

  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1800&auto=format&fit=crop")
    center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.2)
  );
}

.about-hero-content {
  position: relative;

  z-index: 5;

  text-align: center;
}

.about-hero-content span {
  color: white;

  font-size: 14px;

  letter-spacing: 2px;

  font-weight: 700;
}

.about-hero-content h1 {
  color: white;

  font-size: 72px;

  margin-top: 12px;

  font-family: "Poppins", sans-serif;

  font-weight: 600;

  position: relative;

  z-index: 2;
}

.about-hero-content h2 {
  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  font-size: 120px;

  font-weight: 800;

  color: rgba(255, 255, 255, 0.12);

  letter-spacing: 8px;

  z-index: 1;
}

/* =========================
   ABOUT STORY SECTION
========================= */

.about-story-section {
  background: #f5f5f5;

  padding: 0 8% 0px;
}

.story-wrapper {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  position: relative;

  top: -110px;
}

.story-left {
  background: #f1f1f1;

  padding: 110px 70px;
}

.story-subtitle {
  color: #dfb734;

  font-size: 12px;

  letter-spacing: 2px;

  font-weight: 700;
}

.story-left h2 {
  margin-top: 18px;

  font-size: 56px;

  line-height: 1.1;

  color: #08254d;

  font-family: "Poppins", sans-serif;

  margin-bottom: 30px;
}

.story-left p {
  color: #666;

  line-height: 1.9;

  font-size: 16px;

  margin-bottom: 35px;

  max-width: 480px;
}

/* =========================
   STORY BUTTON
========================= */

.story-btn {
  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 18px 34px;

  border-radius: 60px;

  background: #dfb734;

  color: #111827;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 1px;

  overflow: hidden;

  z-index: 1;

  transition: 0.45s ease;
}

.story-right {
  position: relative;

  background: white;

  padding: 120px 70px 80px;
}

.story-icon {
  position: absolute;

  top: -60px;
  left: 0;

  width: 120px;
  height: 120px;

  background: #dfb734;

  display: flex;
  align-items: center;
  justify-content: center;

  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
}

.story-icon i {
  color: white;

  font-size: 42px;
}

.story-content-box {
  display: flex;

  flex-direction: column;

  gap: 35px;
}

.story-item h4 {
  color: #08254d;

  font-size: 28px;

  margin-bottom: 12px;

  font-family: "Poppins", sans-serif;
}

.story-item p {
  color: #666;

  line-height: 1.8;

  font-size: 15px;
}

/* =========================
   ABOUT STORY RESPONSIVE
========================= */

/* Laptop */
@media (max-width: 1200px) {
  .story-left {
    padding: 80px 50px;
  }

  .story-right {
    padding: 100px 50px 70px;
  }

  .story-left h2 {
    font-size: 48px;
  }

  .story-item h4 {
    font-size: 24px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .about-story-section {
    padding: 0 6% 80px;
  }

  .story-wrapper {
    grid-template-columns: 1fr;
    top: -70px;
  }

  .story-left {
    padding: 70px 45px;
  }

  .story-right {
    padding: 90px 45px 60px;
  }

  .story-left h2 {
    font-size: 42px;
  }

  .story-icon {
    width: 100px;
    height: 100px;
    top: -50px;
  }

  .story-icon i {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-story-section {
    padding: 0 5% 60px;
  }

  .story-wrapper {
    top: -50px;
  }

  .story-left,
  .story-right {
    padding-left: 30px;
    padding-right: 30px;
  }

  .story-left {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .story-right {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .story-left h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .story-left p {
    font-size: 15px;
    line-height: 1.8;
  }

  .story-item h4 {
    font-size: 22px;
  }

  .story-item p {
    font-size: 14px;
  }

  .story-btn {
    width: 100%;
    justify-content: center;
  }

  .story-icon {
    width: 90px;
    height: 90px;
    top: -45px;
  }

  .story-icon i {
    font-size: 30px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .story-left,
  .story-right {
    padding-left: 22px;
    padding-right: 22px;
  }

  .story-left {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .story-right {
    padding-top: 75px;
    padding-bottom: 40px;
  }

  .story-subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .story-left h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .story-left h2 br {
    display: none;
  }

  .story-left p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .story-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .story-item p {
    font-size: 14px;
    line-height: 1.7;
  }

  .story-content-box {
    gap: 25px;
  }

  .story-btn {
    padding: 16px 24px;
    font-size: 13px;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .story-left h2 {
    font-size: 24px;
  }

  .story-item h4 {
    font-size: 18px;
  }

  .story-icon {
    width: 80px;
    height: 80px;
  }

  .story-icon i {
    font-size: 26px;
  }
}

/* =========================
   GONDOLA SECTION
========================= */

.gondola-section {
  position: relative;

  padding: 0 8% 100px;

  background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);

  overflow: hidden;
}

.gondola-bg-glow {
  position: absolute;

  top: 50%;

  left: -150px;

  width: 450px;

  height: 450px;

  background: rgba(223, 183, 52, 0.15);

  filter: blur(120px);

  border-radius: 50%;
}

.gondola-container {
  max-width: 1350px;

  margin: auto;

  display: grid;

  grid-template-columns: 1.1fr 1fr;

  gap: 90px;

  align-items: center;
}

/* IMAGE SIDE */

.gondola-image-wrap {
  perspective: 1400px;
}

.gondola-image-card {
  position: relative;

  border-radius: 35px;

  overflow: hidden;

  transform-style: preserve-3d;

  animation: floatingBoat 6s ease-in-out infinite;

  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.12),
    0 20px 40px rgba(223, 183, 52, 0.15);
}

.gondola-image-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);

  z-index: 2;
}

.gondola-image-card img {
  width: 100%;

  display: block;

  height: 650px;

  object-fit: cover;

  transition: 1s ease;
}

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

/* CONTENT */

.gondola-subtitle {
  display: inline-block;

  color: #dfb734;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 18px;
}

.gondola-content h2 {
  font-size: 60px;

  line-height: 1.08;

  color: #08254d;

  margin-bottom: 25px;

  font-family: "Poppins", sans-serif;
}

/* BUTTON */

.gondola-btn {
  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 12px;
  margin-top: 30px;

  padding: 18px 34px;

  background: #dfb734;

  color: #111827;

  text-decoration: none;

  border-radius: 60px;

  font-weight: 700;

  overflow: hidden;

  transition: 0.4s;
}

/* INFO BOX */

.gondola-info-box {
  padding: 35px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(223, 183, 52, 0.15);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.gondola-info-box p {
  color: #555;

  line-height: 1.9;

  font-size: 16px;
}

/* FLOATING 3D EFFECT */

@keyframes floatingBoat {
  0% {
    transform: rotateY(-6deg) rotateX(2deg) translateY(0px);
  }

  50% {
    transform: rotateY(6deg) rotateX(-2deg) translateY(-15px);
  }

  100% {
    transform: rotateY(-6deg) rotateX(2deg) translateY(0px);
  }
}

@media (max-width: 991px) {
  .gondola-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .gondola-content h2 {
    font-size: 42px;
  }

  .gondola-image-card img {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .gondola-section {
    padding: 80px 6%;
  }

  .gondola-content h2 {
    font-size: 34px;
  }

  .gondola-image-card img {
    height: 380px;
  }
}
