/* ===== TRAVEL - Wanderlust ===== */
/* Tropical palette: teal, coral, sunny yellow, ocean blue */

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

:root {
  --primary: #008080;
  --primary-dark: #005f5f;
  --accent: #ff6b6b;
  --accent2: #ffd93d;
  --bg: #f0f7f7;
  --bg-alt: #e0f0f0;
  --text: #2c3e50;
  --text-muted: #6b8a8a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 128, 128, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 128, 128, 0.18);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3, h4, .logo {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

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

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(240, 247, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 128, 128, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 1px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80') center/cover fixed;
  position: relative;
  margin-top: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 247, 247, 0.85), rgba(0, 128, 128, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 12px;
}

.btn:hover {
  background: #e85555;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 107, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.8rem;
  margin-right: 0;
}

/* Sections */
.section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 50px;
  font-size: 1.05rem;
}

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

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.dest-img {
  height: 320px;
  position: relative;
  transition: transform 0.5s;
}

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

.dest-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent 0%, rgba(0, 128, 128, 0.85) 100%);
  color: var(--white);
}

.dest-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.dest-overlay p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent2);
}

/* Tours */
.tours {
  background: var(--white);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 128, 128, 0.08);
  transition: all 0.3s;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-img {
  height: 220px;
}

.tour-info {
  padding: 24px;
}

.tour-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.tour-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tour-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

/* Gallery */
.gallery {
  background: var(--bg);
}

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

.gallery-img {
  height: 240px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--accent2);
}

.stars {
  color: var(--accent2);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.review-card p {
  font-style: italic;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.review-card cite {
  font-style: normal;
  font-weight: 500;
  color: var(--primary);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.contact-info p {
  margin-bottom: 14px;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border: 2px solid rgba(0, 128, 128, 0.12);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

/* Footer */
.footer {
  background: var(--primary-dark);
  padding: 60px 0 30px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--accent2);
}

.footer p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.footer li a:hover {
  color: var(--accent2);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid rgba(0, 128, 128, 0.1);
  }

  .nav.open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .dest-grid,
  .tours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .dest-img {
    height: 260px;
  }

  .tour-img {
    height: 180px;
  }

  .btn {
    display: block;
    margin: 0 auto 12px;
    text-align: center;
  }
}
