/* ============================================
   ADVENTURES BY ISA - Travel Blog
   Brand Colors:
     Primary Text:  #2D2D2D (Deep Anthracite)
     Accent:        #C2A37D (Sand/Beige)
     Background:    #FAFAF8 (Soft Off-White)
   Fonts:
     Headings:      Montserrat Bold
     Body:          Open Sans Regular
     Accents:       Caveat
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #2D2D2D;
  background-color: #FAFAF8;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* ---------- HEADER / NAVIGATION ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease;
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* Logo */
.nav__logo img {
  height: 70px;
  width: auto;
}

/* Navigation Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: #2D2D2D;
  padding: 0.5rem 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #C2A37D;
  opacity: 0;
}

.nav__link:hover,
.nav__link.active {
  color: #C2A37D;
}

.nav__link:hover::after,
.nav__link.active::after {
  opacity: 1;
}

/* Actions (Search + Socials) */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__search img {
  transition: filter 0.3s ease;
}

.nav__search:hover img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(20%) saturate(600%) hue-rotate(350deg) brightness(92%);
}

.nav__divider {
  width: 1px;
  height: 20px;
  background-color: #2D2D2D;
  opacity: 0.3;
}

.nav__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__socials a img {
  transition: filter 0.3s ease;
}

.nav__socials a:hover img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(20%) saturate(600%) hue-rotate(350deg) brightness(92%);
}

/* Hamburger Toggle (Mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2D2D2D;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu elements (hidden on desktop) */
.nav__menu-header,
.nav__link-arrow,
.nav__menu-footer,
.nav__overlay {
  display: none;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #FAFAF8;
  padding-top: 0;
  overflow: hidden;
}

.hero__map {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-45%);
  width: 75%;
  z-index: 0;
  pointer-events: none;
}

.hero__map-svg {
  width: 100%;
  height: auto;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 75%);
}

/* Decorative travel icons */
.hero__deco {
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.hero__deco--1 {
  top: 22%;
  left: 52%;
}

.hero__deco--2 {
  bottom: 18%;
  left: 42%;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* Hero Text */
.hero__text {
  flex: 1;
  max-width: 520px;
}

.hero__subtitle {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: #C2A37D;
  margin-bottom: 0.5rem;
}

.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  color: #2D2D2D;
  margin-bottom: 1.5rem;
}

.hero__title-accent {
  position: relative;
  display: inline-block;
  color: #C2A37D;
}



.hero__description {
  font-size: 1rem;
  color: #555;
  max-width: 400px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #C2A37D;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero__cta:hover {
  background-color: #b08f6a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 163, 125, 0.35);
}

/* Hero Cards */
.hero__cards {
  position: relative;
  width: 560px;
  height: 480px;
  flex-shrink: 0;
}

.hero__card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(194, 163, 125, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

/* Large card — center-left, dominant */
.hero__card:nth-child(1) {
  width: 290px;
  height: 400px;
  top: 30px;
  left: 0;
  z-index: 2;
}

/* Top-right card */
.hero__card:nth-child(2) {
  width: 240px;
  height: 230px;
  top: 0;
  right: 0;
  z-index: 1;
}

/* Bottom-right card */
.hero__card:nth-child(3) {
  width: 240px;
  height: 220px;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(1.03);
}


/* ---------- ÜBER MICH ---------- */
.about {
  padding: 6rem 0;
  background-color: #F0ECE6;
  overflow: hidden;
  position: relative;
}

/* Dashed travel path */
.about__path-wrap {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 300px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.about__path {
  width: 100%;
  height: 100%;
}

.about__path-airplane {
  position: absolute;
  top: 50%;
  left: 11%;
  transform: translate(-50%, -50%) rotate(-25deg);
  opacity: 0.5;
}

.about__path-pin {
  position: absolute;
  top: 50%;
  right: 11%;
  transform: translate(50%, -50%);
  opacity: 0.5;
}

.about__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.about__text {
  flex: 0 1 480px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__title {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: #C2A37D;
  margin-bottom: 0.5rem;
}

.about__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: #2D2D2D;
  margin-bottom: 1.5rem;
}

.about__description {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 440px;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__stat-number {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #2D2D2D;
}

.about__stat-label {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: #C2A37D;
}

.about__cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #2D2D2D;
  border: 2px solid #2D2D2D;
  border-radius: 50px;
  padding: 0.85rem 2.5rem;
  transition: all 0.3s ease;
}

.about__cta:hover {
  background-color: #2D2D2D;
  color: #fff;
  transform: translateY(-2px);
}

/* Polaroid-style photos */
.about__photo {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(194, 163, 125, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.7);
}

.about__photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: saturate(0.85) brightness(1.03);
}

.about__photo--left {
  transform: rotate(-4deg);
  align-self: flex-start;
  margin-top: 2rem;
}

.about__photo--right {
  transform: rotate(3deg);
  align-self: flex-end;
  margin-bottom: 2rem;
}

/* ---------- NEUESTE BEITRÄGE ---------- */
.posts {
  padding: 6rem 0;
  background-color: #FAFAF8;
}

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

.posts__subtitle {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: #C2A37D;
  margin-bottom: 0.5rem;
}

.posts__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #2D2D2D;
  letter-spacing: 0.05em;
}

.posts__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.posts__card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(194, 163, 125, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
}

.posts__card-image {
  overflow: hidden;
}

.posts__card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(0.85) brightness(1.03);
  transition: transform 0.5s ease;
}


.posts__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #2D2D2D;
  line-height: 1.4;
  text-align: center;
  padding: 1.25rem 1rem 0.5rem;
  flex: 1;
}

.posts__card-btn {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #C2A37D;
  text-decoration: none;
  text-align: center;
  padding: 0 1rem 1.25rem;
  margin-top: auto;
  transition: color 0.3s ease;
}

.posts__card-btn:hover {
  color: #B08F6A;
}

/* ---------- DESTINATIONS ---------- */
.destinations {
  padding: 6rem 0;
  background-color: #F0ECE6;
}

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

.destinations__subtitle {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: #C2A37D;
  margin-bottom: 0.25rem;
}

.destinations__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #2D2D2D;
  letter-spacing: 0.1em;
}

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

.destinations__card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.destinations__card-image {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(194, 163, 125, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.7);
}

.destinations__card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(1.03);
}

.destinations__card-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: #2D2D2D;
  margin-top: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.destinations__card-arrow {
  transition: filter 0.3s ease;
}

.destinations__card:hover .destinations__card-label {
  color: #C2A37D;
}

.destinations__card:hover .destinations__card-arrow {
  filter: brightness(0) saturate(100%) invert(70%) sepia(20%) saturate(600%) hue-rotate(350deg) brightness(92%);
}

/* ---------- WORLD MAP ---------- */
.worldmap {
  padding: 6rem 0;
  background-color: #FAFAF8;
}

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

.worldmap__subtitle {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: #C2A37D;
  margin-bottom: 0.25rem;
}

.worldmap__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #2D2D2D;
  letter-spacing: 0.1em;
}

.worldmap__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldmap__svg {
  width: 100%;
  height: auto;
  opacity: 0.3;
}

.worldmap__pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 2;
}

.worldmap__pin > img {
  width: 24px;
  height: 24px;
  animation: pinPulse 2.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.worldmap__pin:hover > img {
  transform: scale(1.3);
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.worldmap__card {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(194, 163, 125, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.7);
  z-index: 10;
}

.worldmap__pin:hover .worldmap__card {
  display: block;
}

.worldmap__card-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(1.03);
}

.worldmap__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: #2D2D2D;
  padding: 0.75rem;
  line-height: 1.4;
  text-align: center;
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background-color: #F0ECE6;
  padding: 5rem 2rem;
  text-align: center;
}

.newsletter__content {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter__accent {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: #C2A37D;
  margin-bottom: 0.5rem;
}

.newsletter__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #2D2D2D;
  margin-bottom: 1rem;
}

.newsletter__description {
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(45, 45, 45, 0.2);
  border-radius: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #2D2D2D;
  background: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter__input::placeholder {
  color: #999;
}

.newsletter__input:focus {
  border-color: #C2A37D;
}

.newsletter__btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #C2A37D;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter__btn:hover {
  background-color: #b08f6a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 163, 125, 0.35);
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: #2D2D2D;
  padding: 1.5rem 2rem;
}

.footer__content {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.footer__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #fff;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__socials a img {
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer__socials a:hover img {
  opacity: 1;
}

/* ---------- ÜBER MICH PAGE ---------- */

/* About Hero */
.about-hero {
  padding: 150px 2rem 3rem;
  background-color: #FAFAF8;
}

.about-hero__bg-wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  height: 50vh;
  min-height: 350px;
  border-radius: 28px;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.about-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2.5rem 3rem;
}

.about-hero__left {
  display: flex;
  flex-direction: column;
}

.about-hero__title {
  font-family: 'Caveat', cursive;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.1;
}

.about-hero__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-hero__stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-hero__stat-icon {
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.about-hero__stat-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

/* About Intro */
.about-intro {
  padding: 5rem 2rem;
  background-color: #FAFAF8;
}

.about-intro__content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-intro__text {
  flex: 1;
}

.about-intro__accent {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: #C2A37D;
  margin-bottom: 0.5rem;
}

.about-intro__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #2D2D2D;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.about-intro__description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.about-intro__photo {
  flex: 0 0 380px;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(194, 163, 125, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.7);
}

.about-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Stats */
.about-stats {
  padding: 4rem 2rem;
  background-color: #2D2D2D;
}

.about-stats__content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
}

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

.about-stats__number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #C2A37D;
  margin-bottom: 0.5rem;
}

.about-stats__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* About Gallery */
.about-gallery {
  padding: 5rem 2rem;
  background-color: #FAFAF8;
}

.about-gallery__content {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.about-gallery__accent {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: #C2A37D;
  margin-bottom: 0.5rem;
}

.about-gallery__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #2D2D2D;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.about-gallery__item {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(194, 163, 125, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.7);
}

.about-gallery__item--tall {
  grid-row: span 2;
}

.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Mission */
.about-mission {
  padding: 5rem 2rem;
  background-color: #FAFAF8;
}

.about-mission__content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-mission__photo {
  flex: 0 0 380px;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(194, 163, 125, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.7);
}

.about-mission__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mission__text {
  flex: 1;
}

/* About Find */
.about-find {
  padding: 5rem 2rem;
  background-color: #fff;
  text-align: center;
}

.about-find__content {
  max-width: 1280px;
  margin: 0 auto;
}

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

.about-find__item {
  padding: 2rem 1.5rem;
  border-radius: 28px;
  background-color: #FAFAF8;
  border: 2px solid rgba(194, 163, 125, 0.15);
}

.about-find__icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #C2A37D;
}

.about-find__item-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #2D2D2D;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.about-find__item-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .hero__content {
    flex-direction: column;
    text-align: center;
    padding-top: 4rem;
  }

  .hero__text {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cards {
    width: 460px;
    height: 400px;
    margin: 0 auto;
  }

  .hero__card:nth-child(1) {
    width: 240px;
    height: 330px;
  }

  .hero__card:nth-child(2) {
    width: 195px;
    height: 185px;
  }

  .hero__card:nth-child(3) {
    width: 195px;
    height: 180px;
  }


  .footer__top {
    flex-direction: column;
    gap: 1.25rem;
  }

  .about__photo {
    width: 220px;
  }

  .about__photo img {
    height: 250px;
  }

  .posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations__card-image img {
    height: 220px;
  }

  .worldmap__pin > img {
    width: 20px;
    height: 20px;
  }

  .worldmap__card {
    width: 170px;
  }

  .worldmap__card-image img {
    height: 100px;
  }

  .about-intro__content {
    flex-direction: column;
    text-align: center;
  }

  .about-intro__photo {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    height: 400px;
  }

  .about-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .about-mission__content {
    flex-direction: column;
    text-align: center;
  }

  .about-mission__photo {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    height: 400px;
  }

  .about-find__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    padding: 0.75rem 1rem;
  }

  .nav__logo img {
    height: 55px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__socials {
    display: none;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.4s ease;
    z-index: 999;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
  }

  .nav__menu.open {
    transform: translateX(0);
    pointer-events: all;
  }

  /* Menu header: logo + search + close */
  .nav__menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border: none !important;
  }

  .nav__menu-logo img {
    height: 55px;
    width: auto;
  }

  .nav__menu-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .nav__menu-search {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .nav__menu-divider {
    width: 1px;
    height: 20px;
    background-color: #2D2D2D;
    opacity: 0.3;
  }

  .nav__menu-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
  }

  .nav__menu-close span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #2D2D2D;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
  }

  .nav__menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav__menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  /* Menu items */
  .nav__menu li {
    width: 100%;
    border-top: 1px solid rgba(194, 163, 125, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__menu li:last-child {
    border-bottom: 1px solid rgba(194, 163, 125, 0.2);
  }

  .nav__menu .nav__link {
    display: block;
    padding: 1.25rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: none;
    flex: 1;
  }

  .nav__link-arrow {
    display: block;
    flex-shrink: 0;
  }

  /* Menu footer */
  .nav__menu-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding: 2rem 0 1rem;
    border: none !important;
  }

  .nav__menu-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .nav__menu-socials a {
    display: flex;
    align-items: center;
  }

  .nav__menu-socials a img {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }

  .nav__menu-socials a:hover img {
    opacity: 1;
  }

  .nav__menu-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
  }

  .nav__menu-legal a {
    color: #C2A37D;
    text-decoration: none;
  }

  .nav__menu-legal span {
    color: #C2A37D;
    opacity: 0.5;
  }

  /* Dark overlay behind menu */
  .nav__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .nav__overlay.active {
    display: block;
  }

  /* Scroll lock */
  body.menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 3rem;
    overflow: visible;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__cards {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    scrollbar-width: none;
    pointer-events: auto;
  }

  .hero__cards::-webkit-scrollbar {
    display: none;
  }

  .hero__card,
  .hero__card:nth-child(1),
  .hero__card:nth-child(2),
  .hero__card:nth-child(3) {
    position: static;
    width: 65vw;
    min-width: 65vw;
    height: 180px;
    transform: none;
    scroll-snap-align: center;
    opacity: 0.5;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .hero__card.active {
    opacity: 1;
    transform: scale(1.08);
  }


  .hero__map-svg {
    opacity: 0.04;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .about {
    padding: 4rem 0;
  }

  .about__image {
    height: 380px;
  }

  .about__content {
    flex-direction: column;
    gap: 2rem;
  }

  .about__photo--left {
    transform: rotate(-3deg);
    order: -1;
  }

  .about__photo--right {
    transform: rotate(3deg);
    display: none;
  }

  .about__photo {
    width: 200px;
  }

  .about__photo img {
    height: 220px;
  }

  .posts__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .destinations__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .worldmap__pin > img {
    width: 18px;
    height: 18px;
  }

  .worldmap__card {
    width: 150px;
  }

  .worldmap__card-image img {
    height: 85px;
  }

  .worldmap__card-title {
    font-size: 0.65rem;
    padding: 0.5rem;
  }

  .about-hero {
    padding: 100px 1rem 2rem;
  }

  .about-hero__bg-wrap {
    height: 50vh;
    min-height: 320px;
  }

  .about-hero__content {
    padding: 1.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .about-hero__title {
    font-size: 2rem;
  }

  .about-hero__right {
    gap: 1.5rem;
  }

  .about-intro {
    padding: 3rem 1.5rem;
  }

  .about-intro__content {
    gap: 2rem;
  }

  .about-intro__photo {
    max-width: 100%;
    height: 300px;
  }

  .about-stats__content {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .about-stats__item {
    flex: 0 0 40%;
  }

  .about-stats__number {
    font-size: 2rem;
  }

  .about-gallery {
    padding: 3rem 1.5rem;
  }

  .about-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .about-gallery__item--tall {
    grid-row: span 1;
  }

  .about-mission {
    padding: 3rem 1.5rem;
  }

  .about-mission__content {
    gap: 2rem;
  }

  .about-mission__photo {
    height: 300px;
    max-width: 100%;
  }

  .about-find {
    padding: 3rem 1.5rem;
  }

  .about-find__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2.5rem auto 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .nav {
    padding: 0 1rem;
  }

  .hero__content {
    padding: 1rem;
  }

  .hero__card,
  .hero__card:nth-child(1),
  .hero__card:nth-child(2),
  .hero__card:nth-child(3) {
    width: 65vw;
    min-width: 65vw;
    height: 170px;
  }

  .posts__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .posts__card-image img {
    height: 220px;
  }

  .destinations__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .destinations__card-image img {
    height: 200px;
  }
}
