/* ========== GLOBAL STYLES (Black, Blue & White Palette) ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0d6efd;      /* Blue */
  --primary-dark: #0b5ed7;
  --secondary: #212529;    /* Dark grey / near-black */
  --light-bg: #f8f9fa;     /* Off-white */
  --white: #ffffff;
  --black: #000000;
  --gray: #6c757d;
  --shadow: 0 10px 25px rgba(0,0,0,0.05);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--white);
  color: var(--secondary);
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo, .btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

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

/* ========== STICKY NAVIGATION ========== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.logo i {
  color: var(--black);
  margin-right: 6px;
}

.navbar ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar a {
  text-decoration: none;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
  font-size: 1rem;
}

.navbar a:hover, .navbar a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

/* ========== HERO SECTION ========== */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.6);
}
.hero-content {
  position: relative;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ========== BUTTONS (Blue & White) ========== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background: #000000;
}
.btn-light {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-light:hover {
  background: var(--light-bg);
}
.btn-outline {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
}
.btn-outline:hover {
  color: var(--primary-dark);
}

/* ========== CARDS (Homepage) ========== */
.featured-section, .page-header {
  padding: 4rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.3rem;
  color: var(--black);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border: 1px solid #e9ecef;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-content {
  padding: 1.5rem;
}
.card-content h3 {
  color: var(--black);
  margin-bottom: 0.5rem;
}

/* About Preview */
.about-preview {
  background: var(--light-bg);
  padding: 4rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: 28px;
}
.cta-banner {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

/* ========== DESTINATIONS PAGE ========== */
.destination-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 4rem 0;
  align-items: center;
}
.destination-block.reverse {
  direction: rtl;
}
.destination-block.reverse .dest-content {
  direction: ltr;
}
.dest-image img {
  width: 100%;
  border-radius: 28px;
  height: 350px;
  object-fit: cover;
}
.dest-content h2 {
  color: var(--black);
  margin-bottom: 1rem;
}

/* ========== GALLERY PAGE (3-column, hover zoom + overlay) ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1 / 0.9;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  width: 100%;
  padding: 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.overlay span {
  font-weight: 600;
}

/* ========== CULTURE PAGE (side-by-side) ========== */
.side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 3rem 0;
  align-items: center;
}
.side-by-side.reverse {
  direction: rtl;
}
.side-by-side.reverse .text-side {
  direction: ltr;
}
.text-side h2 {
  color: var(--black);
  margin-bottom: 1rem;
}
.image-side img {
  width: 100%;
  border-radius: 24px;
  height: 280px;
  object-fit: cover;
}

/* ========== CONTACT PAGE ========== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin: 3rem auto 5rem;
}
.contact-info-box {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid #dee2e6;
}
.contact-info-box h3 {
  margin-top: 1rem;
  color: var(--black);
}
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #e9ecef;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--secondary);
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ced4da;
  border-radius: 14px;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(13,110,253,0.25);
}
.form-feedback {
  margin-top: 1rem;
  font-weight: 500;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--secondary);
  color: #ced4da;
  padding: 3rem 0 1rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-col h4 {
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-contact {
  list-style: none;
}
.footer-contact li {
  margin: 8px 0;
}
.social-icons a {
  color: var(--white);
  font-size: 1.4rem;
  margin-right: 1rem;
  transition: color 0.2s;
}
.social-icons a:hover {
  color: var(--primary);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #495057;
  margin-top: 2rem;
  font-size: 0.8rem;
}

/* ========== RESPONSIVE (unchanged logic) ========== */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .navbar {
    display: none;
    width: 100%;
  }
  .navbar.show {
    display: block;
  }
  .navbar ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    text-align: center;
  }
  .hero h1 { font-size: 2rem; }
  .cards-grid, .about-grid, .destination-block, .gallery-grid, .side-by-side, .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .destination-block.reverse {
    direction: ltr;
  }
  .side-by-side.reverse {
    direction: ltr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}