/* ============================
   Travel by Zoë — Stylesheet
   ============================ */

:root {
  --pink: #e8a0bf;
  --pink-light: #f5d5e0;
  --pink-dark: #c97b9e;
  --rose-gold: #d4a574;
  --gold: #c9a96e;
  --dark: #1a1a2e;
  --dark-light: #2d2d44;
  --charcoal: #3a3a52;
  --white: #ffffff;
  --off-white: #fdf6f0;
  --text: #4a4a5a;
  --text-light: #8a8a9a;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --font-script: 'Great Vibes', cursive;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 16px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title.center { text-align: center; }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 50px;
}
.section-sub.center { text-align: center; margin-left: auto; margin-right: auto; }

.script {
  font-family: var(--font-script);
  color: var(--pink);
  font-weight: 400;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--rose-gold));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,160,191,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(232,160,191,0.6);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

/* ---- Navbar ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(26,26,46,0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--pink-light);
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--pink); }
.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--rose-gold));
  padding: 10px 24px !important;
  border-radius: 50px;
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  width: 100%;
  height: auto;
  display: block;
}
.hero-overlay {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 60px 60px;
  text-align: center;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content h1 .script {
  font-size: 4.5rem;
  color: var(--pink-light);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero .btn { margin-right: 16px; margin-bottom: 12px; }
.hero-mobile { display: none; }

/* ---- About ---- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.about-image img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius);
  border: 3px solid var(--pink-light);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  object-fit: cover;
  object-position: center 15%;
  aspect-ratio: 3 / 4;
}
.about-text .lead {
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 16px;
}
.about-text p { margin-bottom: 16px; }
.about-highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
}
.highlight span {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
}

/* ---- Services ---- */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(232,160,191,0.1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--pink);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- Destinations ---- */
.destinations { background: var(--white); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.dest-img {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-img { transform: scale(1.08); }
.dest-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(26,26,46,0.8));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

/* ---- Why Me ---- */
.why-me { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list {
  list-style: none;
  margin-top: 24px;
}
.why-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}
.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--rose-gold));
}
.why-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ---- Reviews ---- */
.reviews { background: var(--dark); color: var(--white); }
.reviews .section-title { color: var(--white); }
.reviews .script { color: var(--pink-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-card {
  background: var(--dark-light);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(232,160,191,0.15);
}
.stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  font-style: italic;
}
.reviewer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink);
}

/* ---- Contact ---- */
.contact-email {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.contact-email a {
  color: var(--pink-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.contact-email a:hover { color: var(--pink); }
.contact { background: var(--white); }
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group.full { width: 100%; flex: 100%; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e8e8f0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
  background: var(--off-white);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}
.form-group textarea { resize: vertical; }
.btn-submit {
  margin-top: 10px;
  border: none;
  font-size: 1rem;
  width: 100%;
}
.form-success {
  display: none;
  text-align: center;
  width: 100%;
  color: var(--pink-dark);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 12px;
}

/* ---- Footer ---- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-size: 2rem;
  color: var(--pink-light);
  display: block;
  margin-bottom: 8px;
}
.footer-email a {
  color: var(--pink);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-email a:hover { color: var(--pink-light); }
.footer-tagline {
  color: var(--pink);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--pink); }
.footer-book-link {
  background: linear-gradient(135deg, var(--pink), var(--rose-gold));
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-book-link:hover {
  color: var(--white) !important;
  opacity: 0.9;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.social-link {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.social-link:hover { color: var(--pink); }
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Floating WhatsApp ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */

/* 150% zoom on 1080p (~1280px effective) */
@media (max-width: 1300px) {
  .container { max-width: 960px; }
  .section { padding: 80px 0; }
  .section-title { font-size: 2.2rem; }
  .hero-content h1 { font-size: 3rem; }
  .hero-content h1 .script { font-size: 3.6rem; }
  .hero-content { padding: 30px 40px 50px; }
  .about-grid { grid-template-columns: 300px 1fr; gap: 40px; }
  .about-image img { max-width: 300px; }
  .services-grid { gap: 20px; }
  .service-card { padding: 30px 24px; }
  .service-icon { font-size: 2.4rem; margin-bottom: 14px; }
  .service-card h3 { font-size: 1.15rem; }
  .service-card p { font-size: 0.9rem; }
  .dest-grid { gap: 18px; }
  .dest-img { height: 220px; }
  .why-grid { gap: 40px; }
  .why-list li { font-size: 0.95rem; }
  .reviews-grid { gap: 20px; }
  .review-card { padding: 28px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 0.85rem; }
}

@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-image { display: flex; justify-content: center; }
  .about-image img { max-width: 280px; }
  .about-highlights { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { order: -1; }
  .why-image img { max-width: 500px; margin: 0 auto; display: block; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.8rem; }
  .hero-content h1 .script { font-size: 3.4rem; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 40px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }

  .hero-desktop { display: none; }
  .hero-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .hero {
    min-height: 100vh;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }
  .hero-overlay {
    display: block;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.6) 35%, transparent 60%);
    z-index: 1;
  }
  .hero-content {
    padding: 0 24px 40px;
    max-width: 100%;
    text-align: center;
  }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content h1 .script { font-size: 2.8rem; }
  .hero .btn-outline {
    border-color: var(--pink);
    color: var(--pink-light);
  }
  .section { padding: 70px 0; }
  .section-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .about-highlights { flex-direction: column; align-items: center; gap: 20px; }
}
