/* ========================
   TRAVEL INSPIRATION PAGE
   ======================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-heading: "Poppins", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-serif: "Merriweather", serif;
  --sea: #69cae7;
  --navy: #1d3557;
  --light-gray: #f5f5f5;
}

body {
  font-family: var(--font-body);
  color: #333;
  background: white;
}

.travel-main {
  width: 100%;
  overflow-x: hidden;
}

/* ========================
   1. HERO - CINEMATIC
   ======================== */

.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-cinematic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-cinematic-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cinematic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-cinematic-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  animation: heroFadeInDown 1.5s ease-out;
}

@keyframes heroFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cinematic-title {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-cinematic-subtitle {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-indicator span {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-indicator i {
  font-size: 20px;
}

/* ========================
   2. JOURNAL SECTION
   ======================== */

.journal-section {
  width: 100%;
  padding: 120px 60px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journal-container {
  max-width: 800px;
  text-align: center;
}

.journal-text {
  font-family: var(--font-serif);
  font-size: 26px;
  color: #444;
  line-height: 2;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================
   3. CHAPTERS SECTION
   ======================== */

.chapters-section {
  width: 100%;
  padding: 100px 60px;
  background: var(--light-gray);
}

.chapters-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.chapter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  animation: fadeInUp 1s ease-out both;
}

.chapter-card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.chapter-card:nth-child(even) > * {
  direction: ltr;
}

.chapter-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.chapter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.chapter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.chapter-card:hover .chapter-image img {
  transform: scale(1.08);
}

.chapter-content {
  padding: 20px;
}

.chapter-number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--sea);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.chapter-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 15px;
  line-height: 1.2;
}

.chapter-caption {
  font-family: var(--font-serif);
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 400;
}

.chapter-description {
  font-family: var(--font-body);
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.chapter-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.chapter-cta:hover {
  background: var(--sea);
  transform: translateX(5px);
}

/* ========================
   4. MONTAGE SECTION
   ======================== */

.montage-section {
  width: 100%;
  padding: 100px 60px;
  background: white;
}

.montage-container {
  max-width: 1400px;
  margin: 0 auto;
}

.montage-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.montage-strip {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--sea) #f5f5f5;
}

.montage-strip::-webkit-scrollbar {
  height: 10px;
}

.montage-strip::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.montage-strip::-webkit-scrollbar-thumb {
  background: var(--sea);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.montage-strip::-webkit-scrollbar-thumb:hover {
  background: var(--navy);
}

.montage-item {
  flex: 0 0 400px;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}

.montage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.montage-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.montage-overlay p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.montage-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.montage-item:hover img {
  transform: scale(1.1);
}

.montage-item:hover .montage-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   5. REFLECTION SECTION
   ======================== */

.reflection-section {
  width: 100%;
  padding: 120px 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reflection-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.reflection-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.reflection-quote {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.6;
}

.reflection-text {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #666;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ========================
   6. OUTRO SECTION
   ======================== */

.outro-section {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.outro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.outro-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  backdrop-filter: blur(2px);
}

.outro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: heroFadeInDown 1.5s ease-out;
}

.outro-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.outro-cta {
  display: inline-block;
  padding: 16px 48px;
  background: var(--sea);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.outro-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  background: var(--navy);
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

@media (max-width: 1024px) {
  .hero-cinematic-title {
    font-size: 56px;
  }

  .hero-cinematic-subtitle {
    font-size: 20px;
  }

  .journal-section {
    padding: 80px 40px;
  }

  .journal-text {
    font-size: 22px;
  }

  .chapters-section {
    padding: 80px 40px;
  }

  .chapters-container {
    gap: 40px;
  }

  .chapter-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .chapter-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .chapter-image {
    height: 350px;
  }

  .chapter-title {
    font-size: 32px;
  }

  .chapter-caption {
    font-size: 16px;
  }

  .chapter-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .montage-section {
    padding: 80px 40px;
  }

  .montage-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .montage-item {
    flex: 0 0 350px;
    height: 300px;
  }

  .montage-overlay p {
    font-size: 16px;
  }

  .reflection-section {
    padding: 80px 40px;
  }

  .reflection-quote {
    font-size: 28px;
  }

  .reflection-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-cinematic {
    height: 80vh;
  }

  .hero-cinematic-title {
    font-size: 42px;
    letter-spacing: 4px;
  }

  .hero-cinematic-subtitle {
    font-size: 16px;
  }

  .journal-section {
    padding: 60px 20px;
  }

  .journal-text {
    font-size: 18px;
    line-height: 1.8;
  }

  .chapters-section {
    padding: 60px 20px;
  }

  .chapters-container {
    gap: 30px;
  }

  .chapter-image {
    height: 280px;
  }

  .chapter-title {
    font-size: 26px;
  }

  .chapter-caption {
    font-size: 16px;
  }

  .chapter-description {
    font-size: 13px;
    line-height: 1.5;
  }

  .montage-section {
    padding: 60px 20px;
  }

  .montage-container {
    padding: 0;
  }

  .montage-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .montage-strip {
    gap: 20px;
    padding: 15px 0;
  }

  .montage-item {
    flex: 0 0 300px;
    height: 260px;
  }

  .montage-overlay p {
    font-size: 14px;
  }

  .montage-strip {
    gap: 15px;
  }

  .montage-item {
    flex: 0 0 250px;
    height: 250px;
  }

  .reflection-quote {
    font-size: 22px;
  }

  .reflection-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .outro-title {
    font-size: 32px;
  }

  .outro-cta {
    padding: 12px 32px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-cinematic {
    height: 70vh;
  }

  .hero-cinematic-title {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .hero-cinematic-subtitle {
    font-size: 14px;
  }

  .journal-section {
    padding: 40px 15px;
  }

  .journal-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .chapters-section {
    padding: 40px 15px;
  }

  .chapters-container {
    gap: 20px;
  }

  .chapter-image {
    height: 200px;
  }

  .chapter-number {
    font-size: 11px;
  }

  .chapter-title {
    font-size: 20px;
  }

  .chapter-caption {
    font-size: 14px;
  }

  .chapter-description {
    font-size: 12px;
    line-height: 1.4;
  }

  .montage-section {
    padding: 40px 15px;
  }

  .montage-container {
    padding: 0;
  }

  .montage-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .montage-strip {
    gap: 15px;
    padding: 10px 0;
  }

  .montage-item {
    flex: 0 0 250px;
    height: 220px;
  }

  .montage-overlay p {
    font-size: 12px;
    padding: 20px;
  }

  .reflection-section {
    padding: 60px 15px;
  }

  .reflection-quote {
    font-size: 18px;
  }

  .reflection-text {
    font-size: 14px;
  }

  .outro-section {
    height: 350px;
  }

  .outro-title {
    font-size: 24px;
  }
}
