/* RESET */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #000;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  z-index: 9999;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.logo {
  font-size: 2rem;
  font-weight: 500;
  color: white;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 70%;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.header.scrolled .logo,
.header.scrolled .nav a {
  color: #222;
}

/* HERO */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;

  color: white;

  /* move to left */
  text-align: left;

  /* position inside hero */
  position: absolute;
  left: 12%;
  top: 60%;
  transform: translateY(-50%);

  max-width: none;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.2;
  white-space: normal;
}

@media (max-width: 768px) {
  .hero-content {
    left: 5%;
    right: 5%;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}


/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: #aaaaaa;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  background: #888888;
}

body {
  background: #fafafa;
  color: #222;
}

.btn {
  background: #8a8a8a;
  letter-spacing: 0.3px;
}
body {
  font-family: Arial, sans-serif;
}

h1, h2, h3, .logo {
  font-family: "Merriweather", serif;
}


/* SECTIONS */
.section {
  padding: 120px 20px;
  text-align: center;
  background: #fff;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section.light {
  background: #f6f6f6;
}

.about-text {
  max-width: 650px;
  margin: 25px auto;
  text-align: center;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #333;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* CARDS */
.card, .destination {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.card:hover, .destination:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* DESTINATIONS */
.destination img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}


.go-solo-girl-row {
  max-width: 900px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  text-align: left;
}

.go-solo-girl-text {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.go-solo-girl-image {
  flex: 0 0 220px;
}

.go-solo-girl-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* MOBILE */
@media (max-width: 768px) {
  .go-solo-girl-row {
    flex-direction: column;
    text-align: center;
  }

  .go-solo-girl-image img {
    width: 180px;
    height: 180px;
  }
}


/* CTA */
.cta {
  background: #fff0f5;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: 1s ease;
}

.fade-in.show {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .header {
    padding: 15px 20px;
  }
}