/* ===== BASE - MOBILE FIRST ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Space Mono', monospace;
  background: #ffffff;
  color: #1B2B4B;
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
}

/* ===== TYPOGRAPHY - MOBILE ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1B2B4B;
  line-height: 0.95;
}

h1 { 
  font-size: 3rem;
  font-weight: 800;
}
h2 { 
  font-size: 2.5rem;
  font-weight: 800;
}
h3 { 
  font-size: 1.75rem;
  font-weight: 700;
}

p {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #4A5568;
  font-weight: 400;
  font-family: 'Space Mono', monospace;
}

/* Small caps for labels */
.label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.688rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== BRAND GRADIENT ===== */
.text-gradient {
  background: linear-gradient(135deg, #1B2B4B 0%, #2A9D8F 50%, #C4A962 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  animation: gradientFlow 3s ease infinite;
}

/* Logo text without animation */
.logo-text.text-gradient {
  animation: none;
  background-size: 100% auto;
  background-position: 0% 0%;
}

@keyframes gradientFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Gradient animation on scroll */
.gradient-reveal {
  background: linear-gradient(135deg, #1B2B4B 0%, #2A9D8F 50%, #C4A962 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  animation: gradientReveal 1.5s ease-out forwards;
}

@keyframes gradientReveal {
  0% {
    background-position: -200% 50%;
    opacity: 0;
    filter: blur(10px);
  }
  50% {
    opacity: 1;
    filter: blur(0px);
  }
  100% {
    background-position: 0% 50%;
    opacity: 1;
    filter: blur(0px);
  }
}

/* Shimmer effect on reveal */
.gradient-shimmer {
  position: relative;
  overflow: hidden;
}

.gradient-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s ease-out;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Logo gradient animation */
.logo-gradient-animate stop {
  animation: colorShift 4s ease-in-out infinite;
}

@keyframes colorShift {
  0%, 100% {
    stop-opacity: 1;
  }
  50% {
    stop-opacity: 0.7;
  }
}

/* ===== LAYOUT - MOBILE ===== */
.container {
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}

section {
  padding: 3rem 0;
}

/* ===== NAVIGATION - MOBILE ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 43, 75, 0.08);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 1.25rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-wrapper svg {
  width: 32px;
  height: 32px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container:hover .logo-wrapper svg {
  transform: scale(1.05);
}

/* Logo shine effect */
.logo-wrapper svg {
  position: relative;
}

.logo-shine {
  animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
  0%, 100% {
    filter: brightness(100%);
  }
  50% {
    filter: brightness(120%) drop-shadow(0 0 8px rgba(42, 157, 143, 0.4));
  }
}

.logo-text {
  font-size: 1rem;
  font-weight: 900;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.04em;
  line-height: 1;
}

.nav-links {
  display: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background: #1B2B4B;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== BUTTONS - MOBILE ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.813rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

.btn-primary {
  background: #1B2B4B;
  color: #ffffff;
  border: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #2A9D8F;
}

.btn-secondary {
  background: #ffffff;
  color: #1B2B4B;
  border: 2px solid #1B2B4B;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #2A9D8F;
  color: #ffffff;
  border-color: #2A9D8F;
}

/* ===== AUTH COMPONENTS - React Integration ===== */
.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.btn-google-signin {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  color: #1B2B4B;
  border: 1px solid rgba(27, 43, 75, 0.08);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-google-signin:hover {
  border-color: #2A9D8F;
  box-shadow: 0 0 0 1px #2A9D8F;
}

.btn-google-signin svg {
  flex-shrink: 0;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(27, 43, 75, 0.1);
}

.user-avatar-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B2B4B 0%, #2A9D8F 50%, #C4A962 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  flex-shrink: 0;
}

.user-name {
  font-weight: 600;
  color: #1B2B4B;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.875rem;
}

.btn-logout {
  padding: 0.5rem 1rem;
  background: #1B2B4B;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 0.688rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-logout:hover {
  background: #2A9D8F;
}

.loading {
  padding: 0.5rem 1rem;
  color: #4A5568;
  font-size: 0.813rem;
  font-family: 'Space Mono', monospace;
}

.error-message {
  color: #ea4335;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  font-family: 'Space Mono', monospace;
}

/* ===== HERO SECTION - MOBILE ===== */
.hero {
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.hero-content {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #1B2B4B;
  font-size: 0.688rem;
  color: #1B2B4B;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 0.938rem;
  color: #4A5568;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-family: 'Space Mono', monospace;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-buttons .btn {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(27, 43, 75, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #1B2B4B;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.688rem;
  color: #4A5568;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.hero-image {
  position: relative;
}

.hero-mockup {
  aspect-ratio: 1;
  background: #ffffff;
  border: 1px solid rgba(27, 43, 75, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 10;
  border-radius: 8px;
  overflow: hidden;
}

.hero-mockup picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mockup-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #1B2B4B 0%, #2A9D8F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.hero-decorative {
  position: absolute;
  border: 1px solid rgba(27, 43, 75, 0.05);
  z-index: 0;
  border-radius: 8px;
}

.hero-decorative-1 {
  top: -0.75rem;
  right: -0.75rem;
  width: 100%;
  height: 100%;
}

.hero-decorative-2 {
  bottom: -0.75rem;
  left: -0.75rem;
  width: 100%;
  height: 100%;
}

/* ===== TRUST SECTION - MOBILE ===== */
.trust-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(27, 43, 75, 0.08);
  border-bottom: 1px solid rgba(27, 43, 75, 0.08);
}

.trust-title {
  text-align: center;
  font-size: 0.688rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  font-weight: 600;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.trust-logos-wrapper {
  overflow: hidden;
  position: relative;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  opacity: 0.25;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.trust-logos div {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== DESTINATIONS SECTION - MOBILE ===== */
.destinations-section {
  padding: 3rem 0;
  background: #ffffff;
}

.destinations-tabs {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.tab-btn {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4A5568;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Space Mono', monospace;
}

.tab-btn.active {
  background: #1B2B4B;
  color: #ffffff;
  border-color: #1B2B4B;
}

.tab-btn:hover:not(.active) {
  border-color: #2A9D8F;
  color: #2A9D8F;
}

.explore-all-btn {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid #1B2B4B;
  border-radius: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1B2B4B;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Space Mono', monospace;
  display: none;
}

.explore-all-btn:hover {
  background: #2A9D8F;
  color: #ffffff;
  border-color: #2A9D8F;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.destination-card {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.destination-card:hover {
  box-shadow: 0 8px 24px rgba(27, 43, 75, 0.12);
}

.destination-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-info {
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-top: none;
}

.destination-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #1B2B4B;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.destination-info p {
  font-size: 0.813rem;
  color: #718096;
  font-family: 'Space Mono', monospace;
}

/* ===== FEATURES SECTION - MOBILE ===== */
.features-section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(27, 43, 75, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.feature-card:hover {
  border-color: #2A9D8F;
  box-shadow: 0 0 0 1px #2A9D8F;
}

.feature-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1;
}

.feature-card p {
  margin-bottom: 1.5rem;
  font-family: 'Space Mono', monospace;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: #fafafa;
  padding: 0.5rem 1rem;
  font-size: 0.688rem;
  color: #1B2B4B;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(27, 43, 75, 0.1);
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 4px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.tag:hover {
  border-color: #2A9D8F;
}

.secondary-features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.secondary-feature {
  background: #ffffff;
  border: 1px solid rgba(27, 43, 75, 0.08);
  padding: 2rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.secondary-feature:hover {
  border-color: #2A9D8F;
  box-shadow: 0 0 0 1px #2A9D8F;
}

.secondary-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  line-height: 1.1;
}

/* ===== WHY SECTION - MOBILE ===== */
.why-section {
  padding: 3rem 0;
  background: #fafafa;
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}

.why-card {
  background: #ffffff;
  border: 1px solid rgba(27, 43, 75, 0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.why-card:hover {
  border-color: #2A9D8F;
  box-shadow: 0 0 0 1px #2A9D8F;
}

.why-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #1B2B4B;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  border-radius: 8px;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.why-card p {
  font-size: 0.938rem;
  line-height: 1.7;
  font-family: 'Space Mono', monospace;
}

/* ===== REVIEWS SECTION - MOBILE ===== */
.reviews-section {
  padding: 3rem 0;
}

.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(27, 43, 75, 0.08);
  padding: 2rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.review-card:hover {
  border-color: #2A9D8F;
  box-shadow: 0 0 0 1px #2A9D8F;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #C4A962;
  font-size: 1rem;
}

.review-text {
  color: #4A5568;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 0.938rem;
  font-weight: 400;
  font-family: 'Space Mono', monospace;
}

.reviewer-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.reviewer-location {
  font-size: 0.688rem;
  color: #999999;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ===== PROFILE SECTION - React Integration ===== */
.profile-section {
  margin-bottom: 3rem;
}

.profile-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #ffffff;
  border: 1px solid rgba(27, 43, 75, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.profile-container:hover {
  border-color: #2A9D8F;
  box-shadow: 0 0 0 1px #2A9D8F;
}

.profile-header {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #2A9D8F;
  margin-bottom: 1rem;
}

.profile-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.profile-email {
  color: #4A5568;
  font-family: 'Space Mono', monospace;
  font-size: 0.875rem;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-field {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background-color: #fafafa;
  border-radius: 4px;
}

.profile-field strong {
  color: #1B2B4B;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.813rem;
}

.profile-field span {
  color: #4A5568;
  font-family: 'Space Mono', monospace;
  font-size: 0.813rem;
}

.uid {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
}

.profile-loading {
  text-align: center;
  padding: 2rem;
  color: #4A5568;
  font-family: 'Space Mono', monospace;
}

/* ===== FAQ SECTION - MOBILE ===== */
.faq-section {
  padding: 3rem 0;
  background: #fafafa;
}

details {
  background: #ffffff;
  border: 1px solid rgba(27, 43, 75, 0.08);
  padding: 1.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 8px;
}

details:hover {
  border-color: #2A9D8F;
}

summary {
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.3;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
  font-weight: 300;
  color: #2A9D8F;
}

details[open] .faq-icon {
  transform: rotate(45deg);
}

details p {
  margin-top: 1rem;
  color: #4A5568;
  line-height: 1.8;
  font-size: 0.938rem;
  font-family: 'Space Mono', monospace;
}

/* ===== STORIES SECTION - MOBILE ===== */
.stories-section {
  padding: 3rem 0;
  background: #ffffff;
}

.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.stories-header .section-title {
  margin-bottom: 0;
}

.view-all-link {
  font-size: 0.813rem;
  color: #1B2B4B;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-weight: 600;
  transition: color 0.3s ease;
  display: none;
}

.view-all-link:hover {
  color: #2A9D8F;
}

.stories-layout {
  display: grid;
  gap: 2rem;
}

/* Featured Story */
.story-featured {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-featured:hover {
  box-shadow: 0 12px 32px rgba(27, 43, 75, 0.1);
}

.story-featured-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.story-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #1B2B4B;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.688rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Space Mono', monospace;
}

.story-featured-content {
  padding: 1.5rem;
}

.story-featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1B2B4B;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.story-featured-excerpt {
  font-size: 0.938rem;
  line-height: 1.7;
  color: #4A5568;
  margin-bottom: 1.5rem;
  font-family: 'Space Mono', monospace;
}

.story-featured-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.813rem;
  color: #4A5568;
  font-family: 'Space Mono', monospace;
}

.story-author {
  font-weight: 600;
  color: #1B2B4B;
}

.story-divider {
  color: #CBD5E0;
}

.story-read-time {
  color: #4A5568;
}

/* Stories List */
.stories-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-item {
  display: flex;
  gap: 1rem;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem;
  border: 1px solid #E2E8F0;
}

.story-item:hover {
  box-shadow: 0 4px 12px rgba(27, 43, 75, 0.08);
  border-color: #2A9D8F;
}

.story-item-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.story-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-item-category {
  font-size: 0.688rem;
  color: #2A9D8F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-family: 'Space Mono', monospace;
}

.story-item-title {
  font-size: 0.938rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1B2B4B;
  margin-bottom: 0.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.story-item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #718096;
  font-family: 'Space Mono', monospace;
}

.story-item-meta .story-date {
  color: #718096;
  font-weight: 400;
}

.story-item-meta .story-divider {
  color: #CBD5E0;
}

.story-item-meta .story-read-time {
  color: #718096;
}

/* ===== HIGHLIGHTS SECTION - MOBILE ===== */
.highlights-section {
  padding: 3rem 0;
  background: #f8f9fa;
}

.highlights-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-main {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
}

.highlight-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B2B4B 0%, #2A9D8F 50%, #C4A962 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1B2B4B;
  margin-bottom: 0.25rem;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.author-info p {
  font-size: 0.813rem;
  color: #718096;
  font-family: 'Space Mono', monospace;
}

.highlight-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1B2B4B;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.highlight-description {
  font-size: 0.938rem;
  line-height: 1.7;
  color: #4A5568;
  margin-bottom: 1.5rem;
  font-family: 'Space Mono', monospace;
}

.highlight-image {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CTA SECTION - MOBILE ===== */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1B2B4B 0%, #2A9D8F 100%);
  color: #ffffff;
}

.cta-content {
  display: grid;
  gap: 2rem;
}

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

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 0.938rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Space Mono', monospace;
  max-width: 36rem;
  margin: 0 auto;
}

.cta-form {
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.email-input {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 0.938rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: 'Space Mono', monospace;
  transition: all 0.3s ease;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
  outline: none;
  border-color: #C4A962;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
  width: 100%;
}

.cta-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  font-family: 'Space Mono', monospace;
}

.cta-privacy a {
  color: #C4A962;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cta-privacy a:hover {
  color: #ffffff;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-buttons .btn {
  width: 100%;
}

/* ===== FOOTER - MOBILE ===== */
footer {
  border-top: 1px solid rgba(27, 43, 75, 0.08);
  padding: 2.5rem 0;
}

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

.copyright {
  font-size: 0.813rem;
  color: #666666;
  margin-bottom: 1.5rem;
  font-family: 'Space Mono', monospace;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: #1B2B4B;
  text-decoration: none;
  font-size: 0.813rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.footer-links a:hover {
  color: #2A9D8F;
}

/* ===== HELPER TEXT ===== */
.helper-text {
  font-size: 0.75rem;
  color: #999999;
  text-align: center;
  margin-top: 2rem;
  line-height: 1.6;
  font-family: 'Space Mono', monospace;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Stagger animation delays for sequential reveal */
.fade-in-1 {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.fade-in-2 {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.fade-in-3 {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.6s forwards;
}

/* ===== TABLET (min-width: 768px) ===== */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  
  section {
    padding: 5rem 0;
  }
  
  h1 { font-size: 4.5rem; }
  h2 { font-size: 3rem; }
  h3 { font-size: 2rem; }
  
  .nav-container {
    height: 80px;
    padding: 0 2rem;
  }
  
  .logo-wrapper svg {
    width: 40px;
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.375rem;
  }
  
  .hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .hero-buttons .btn {
    width: auto;
  }
  
  .secondary-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .story-image {
    height: 220px;
  }
  
  .view-all-link {
    display: inline-block;
  }
  
  .stories-layout {
    gap: 2rem;
  }
  
  .story-featured-image {
    height: 320px;
  }
  
  .story-item {
    padding: 1.25rem;
  }
  
  .story-item-image {
    width: 120px;
    height: 120px;
  }
  
  .story-item-title {
    font-size: 1rem;
  }
  
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .destination-image {
    height: 220px;
  }
  
  .explore-all-btn {
    display: inline-block;
  }
  
  .highlights-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
  }
  
  .highlight-image {
    height: 100%;
  }
  
  .cta-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .cta-text {
    text-align: left;
  }
  
  .cta-subtitle {
    margin: 0;
  }
  
  .newsletter-form {
    flex-direction: row;
  }
  
  .email-input {
    flex: 1;
  }
  
  .newsletter-form .btn {
    width: auto;
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .cta-buttons .btn {
    width: auto;
  }
}

/* ===== DESKTOP (min-width: 1024px) ===== */
@media (min-width: 1024px) {
  .container {
    max-width: 1280px;
    padding: 0 3rem;
  }
  
  section {
    padding: 8rem 0;
  }
  
  h1 { font-size: 6rem; }
  h2 { font-size: 4rem; }
  
  .nav-container {
    height: 90px;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
  }

  .nav-links a {
    color: #1B2B4B;
    text-decoration: none;
    font-size: 0.813rem;
    font-weight: 200;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    font-family: 'Space Mono', monospace;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #1B2B4B, #2A9D8F, #C4A962);
    transition: width 0.3s;
  }

  .nav-links a:hover {
    color: #2A9D8F;
  }

  .nav-links a:hover::after {
    width: 100%;
  }
  
  .hero {
    padding-top: 10rem;
  }
  
  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .hero-content {
    text-align: left;
    margin-bottom: 0;
  }
  
  .hero-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
  }
  
  .hero-stats {
    text-align: left;
  }
  
  .stat {
    text-align: left;
  }
  
  .stat-number {
    font-size: 4rem;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
  
  .feature-card {
    padding: 3rem;
  }
  
  .feature-card h3 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 0.95;
  }
  
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .story-image {
    height: 240px;
  }
  
  .stories-layout {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
  }
  
  .story-featured-image {
    height: 400px;
  }
  
  .story-featured-content {
    padding: 2rem;
  }
  
  .story-featured-title {
    font-size: 2rem;
  }
  
  .story-featured-excerpt {
    font-size: 1rem;
  }
  
  .stories-list {
    gap: 1.5rem;
  }
  
  .story-item {
    padding: 1.5rem;
  }
  
  .story-item-image {
    width: 140px;
    height: 140px;
  }
  
  .story-item-title {
    font-size: 1.125rem;
  }
  
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .destination-image {
    height: 250px;
  }
  
  .highlights-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
  }
  
  .highlight-main {
    padding: 3rem;
  }
  
  .highlight-title {
    font-size: 2rem;
  }
  
  .cta-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  
  .copyright {
    margin-bottom: 0;
  }
}
