/* ===== ExploreWithRashh — Travel Blog ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@400;600;700&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --bg-dark: #0e0c0a;
  --bg-dark-2: #15110d;
  --bg-cream: #f4ede0;
  --bg-cream-2: #ece3d2;
  --text-light: #f5efe4;
  --text-muted: #b9ad97;
  --text-dark: #1c1812;
  --text-dark-muted: #5c544a;
  --accent: #ee7e3a;
  --accent-2: #f5a35a;
  --accent-glow: #ffb070;
  --gradient-accent: linear-gradient(135deg, #ee7e3a 0%, #f5a35a 100%);
  --border-dark: rgba(255, 255, 255, .08);
  --border-cream: rgba(0, 0, 0, .08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px
}

/* ===== Logo (signature look like reference) ===== */
.logo {
  font-family: 'Caveat', cursive;
    font-size: 35px;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1
}

.logo .accent {
  color: var(--accent);
  font-style: italic
}

.logo .plane {
  font-size: 1.1rem;
  display: inline-block;
  transform: rotate(-20deg);
  margin-left: 6px;
  color: var(--accent)
}

/* ===== Navbar ===== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px 0
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em
}

.nav-links a {
  color: #e6dfd2;
  transition: color .25s;
  position: relative;
  padding-bottom: 6px
}

.nav-links a.active,
.nav-links a:hover {
  color: #fff
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .4);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .82rem;
  color: #fff;
  transition: all .25s
}

.nav-cta:hover {
  background: #fff;
  color: #000
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(14, 12, 10, .35) 0%, rgba(14, 12, 10, .55) 100%), url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 140px 0 60px
}

.hero-content {
  max-width: 620px
}

.eyebrow {
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px
}

.hero h1 .italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
  display: block
}

.hero p {
  font-size: 1.05rem;
  color: #e6dfd2;
  margin-bottom: 36px;
  max-width: 480px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform .25s, box-shadow .25s, background .25s
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(238, 126, 58, .55)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(238, 126, 58, .7)
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .18)
}

.btn-dark {
  background: #1a1611;
  color: #fff
}

.btn-dark:hover {
  background: #000
}

/* Stamp + tagline */
.hero-stamp {
  position: absolute;
  right: 60px;
  top: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  color: #fff
}

.hero-stamp .tag {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1
}

.hero-stamp .tag small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  color: #e6dfd2;
  letter-spacing: .25em;
  margin-top: 8px;
  text-transform: uppercase
}

.stamp {
  width: 130px;
  background: #f4ede0;
  color: #1c1812;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
  position: relative
}

.stamp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(255, 255, 255, .4);
  border-radius: 10px;
  pointer-events: none
}

.stamp img {
  border-radius: 4px;
  height: 80px;
  object-fit: cover;
  width: 100%
}

.stamp .label {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .95rem;
  margin-top: 6px
}

.stamp .sublabel {
  font-family: 'Caveat', cursive;
  font-size: .85rem;
  color: var(--accent)
}

.postal-lines {
  position: absolute;
  right: 200px;
  top: 34%;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.postal-lines span {
  width: 80px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: .7
}

/* ===== Instagram Card ===== */
.insta-section {
  background: var(--bg-dark);
  padding: 0 0 60px;
  margin-top: -80px;
  position: relative;
  z-index: 10
}

.insta-card {
  background: #161310;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6)
}

.insta-profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px
}

.insta-avatar {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  border: 3px solid var(--accent);
  overflow: hidden
}

.insta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.insta-handle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #fff
}

.insta-handle .verify {
  color: #3897f0;
  font-size: .95rem
}

.insta-bio {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5
}

.insta-bio strong {
  display: block;
  color: #e6dfd2;
  font-weight: 500;
  margin-bottom: 2px
}

.insta-stats {
  display: flex;
  gap: 24px;
  margin-top: 6px
}

.insta-stats div {
  text-align: center
}

.insta-stats b {
  display: block;
  color: #fff;
  font-size: 1.05rem
}

.insta-stats span {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .05em
}

.insta-follow {
  width: 100%;
  justify-content: center;
  margin-top: auto
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px
}

.insta-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.insta-tile:hover img {
  transform: scale(1.08)
}

.insta-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .85) 100%)
}

.insta-tile .caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  color: #fff;
  font-size: .72rem;
  line-height: 1.3;
  font-weight: 500
}

.insta-tile .plays {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  color: #e6dfd2;
  margin-top: 4px
}

/* ===== About section ===== */
.about {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 90px 0;
  position: relative
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px
}

.about .script {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block
}

.about p {
  font-size: .95rem;
  color: var(--text-dark-muted);
  margin-bottom: 14px;
  max-width: 380px
}

.about .lets {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 18px 0 18px
}

.polaroid-stack {
  position: relative;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center
}

.polaroid {
  background: #fff;
  padding: 10px 10px 36px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  transform: rotate(var(--r, -3deg));
  transition: transform .4s;
  position: relative;
  max-width: 230px
}

.polaroid:hover {
  transform: rotate(0) scale(1.04);
  z-index: 5
}

.polaroid img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%
}

.polaroid .cap {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: #5c544a
}

.polaroid::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 60px;
  height: 18px;
  background: rgba(220, 200, 160, .6);
  border-radius: 2px
}

/* ===== Categories ===== */
.section-dark {
  background: var(--bg-dark);
  padding: 80px 0
}

.section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px
}

.section-head .label {
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap
}

.section-head .line {
  flex: 1;
  height: 1px;
  background: var(--border-dark)
}

.section-head .more {
  font-size: .85rem;
  color: var(--text-muted)
}

.section-head .more:hover {
  color: var(--accent)
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px
}

.cat {
  background: #1a1611;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 22px 10px;
  text-align: center;
  transition: all .3s;
  cursor: pointer
}

.cat:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(238, 126, 58, .3)
}

.cat .icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 10px;
  display: block
}

.cat .name {
  font-size: .82rem;
  color: #e6dfd2;
  font-weight: 500
}

/* ===== Destinations ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px
}

.dest {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer
}

.dest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.dest:hover img {
  transform: scale(1.08)
}

.dest::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .85))
}

.dest .info {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: #fff
}

.dest .info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 2px
}

.dest .info p {
  font-size: .72rem;
  color: #d8cfbb
}

/* ===== Coming Soon ===== */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px
}

.cs {
  background: #1a1611;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 18px;
  transition: border-color .3s
}

.cs:hover {
  border-color: var(--accent)
}

.cs .icon {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 10px
}

.cs h5 {
  font-size: .95rem;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 600
}

.cs p {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.4
}

/* ===== Big CTA Banner ===== */
.cta-banner {
  position: relative;
  min-height: 280px;
  background: linear-gradient(180deg, rgba(14, 12, 10, .3), rgba(14, 12, 10, .5)), url('../images/cta-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px
}

.cta-banner h2 .italic {
  font-style: italic;
  color: var(--accent-glow);
  font-weight: 700
}

.cta-banner .btn {
  margin-top: 18px
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  padding: 50px 0 30px;
  border-top: 1px solid var(--border-dark)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  align-items: start
}

.footer p.tag {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 10px
}

.footer h6 {
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600
}

.socials {
  display: flex;
  gap: 14px
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e6dfd2;
  transition: all .25s
}

.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 8px
}

.newsletter input {
  flex: 1;
  background: #1a1611;
  border: 1px solid var(--border-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: .85rem;
  outline: none
}

.newsletter input:focus {
  border-color: var(--accent)
}

.newsletter button {
  background: var(--gradient-accent);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem
}

.copyright {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 30px;
  text-align: left
}

/* ===== Inner page styles ===== */
.page-hero {
  padding: 160px 0 60px;
  background: linear-gradient(180deg, #0e0c0a, #15110d);
  text-align: center;
  border-bottom: 1px solid var(--border-dark)
}

.page-hero .eyebrow {
  justify-content: center
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 14px
}

.page-hero h1 .italic {
  font-style: italic;
  color: var(--accent)
}

.page-hero p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto
}

.about-page {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 80px 0
}

.about-page .about-grid {
  grid-template-columns: 1fr 1fr
}

/* ===== Responsive ===== */
@media(max-width:1024px) {
  .insta-card {
    grid-template-columns: 1fr
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .cat-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .dest-grid {
    grid-template-columns: repeat(3, 1fr)
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero-stamp,
  .postal-lines {
    display: none
  }
}

@media(max-width:640px) {

  .nav-links,
  .nav-cta {
    display: none
  }

  .nav-toggle {
    display: block
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    background: #1a1611;
    padding: 20px;
    border-radius: 14px;
    gap: 18px
  }

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

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

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

  .cs-grid {
    grid-template-columns: 1fr
  }

  .container {
    padding: 0 20px
  }
}