/* ---------------------- GLOBAL ---------------------- */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #fff7ef;
  color: #444;
}

/* ---------------------- HEADER ---------------------- */
header {
  background: linear-gradient(135deg, #ff7a00, #ff9f2a);
  padding: 30px 20px;
  text-align: center;
  color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

header h1 {
  font-size: 38px;
  margin: 0;
  font-weight: 700;
}

.tagline {
  margin-top: 5px;
  font-size: 16px;
  opacity: 0.9;
}

nav {
  margin-top: 18px;
}

nav a {
  text-decoration: none;
  color: white;
  margin: 0 14px;
  padding: 10px 15px;
  font-weight: 500;
  border-radius: 6px;
  transition: 0.3s;
}

nav a:hover {
  background: rgba(255,255,255,0.20);
}

/* ---------------------- HERO SECTION ---------------------- */
.hero {
  background: url("https://images.unsplash.com/photo-1508264165352-258a6f0e5ca0?auto=format&fit=crop&w=1500&q=80") center/cover no-repeat;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 0 0 40px 40px;
}

.hero-text {
  position: relative;
  text-align: center;
  color: white;
  max-width: 600px;
}

.hero-text h2 {
  font-size: 35px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-btn {
  background: #ff7a00;
  padding: 12px 25px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #e36700;
  transform: translateY(-3px);
}

/* ---------------------- FEATURES ---------------------- */
.features {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.feature-card {
  background: white;
  width: 280px;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card h3 {
  margin-top: 0;
  color: #ff7a00;
  font-size: 22px;
}

/* ---------------------- FOOTER ---------------------- */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 18px;
  margin-top: 40px;
  font-size: 15px;
}


/* --------------------- AUTH PAGE (LOGIN + REGISTER) --------------------- */

.login-page {
  background: linear-gradient(135deg, #fff1e3, #ffe7d0);
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

.auth-section {
  padding: 50px 20px;
  text-align: center;
}

.auth-title {
  font-size: 32px;
  color: #ff7a00;
  font-weight: 700;
  margin-bottom: 5px;
}

.auth-sub {
  color: #555;
  font-size: 15px;
  margin-bottom: 40px;
}

.auth-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ----------- Login / Register Cards ----------- */
.auth-card {
  background: white;
  width: 320px;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 5px 22px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.auth-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 26px rgba(0,0,0,0.15);
}

.auth-card h3 {
  color: #ff7a00;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 20px;
}

/* ----------- Form Inputs ----------- */
.auth-card label {
  font-weight: 600;
  font-size: 14px;
  display: block;
  text-align: left;
}

.auth-card input {
  width: 100%;
  padding: 12px;
  margin: 8px 0 18px;
  border-radius: 10px;
  border: 2px solid #ffcd9b;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.auth-card input:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 6px rgba(255, 122, 0, 0.35);
}

/* ----------- Buttons ----------- */
.auth-card button {
  width: 100%;
  background: #ff7a00;
  padding: 13px;
  border-radius: 10px;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.auth-card button:hover {
  background: #e36a00;
  transform: translateY(-3px);
}


/* ---------------- REVIEWS PAGE ---------------- */

.reviews-section {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #ff7a00;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-sub {
  color: #666;
  margin-bottom: 30px;
}

/* Review Form */
.review-form {
  background: white;
  max-width: 550px;
  margin: 20px auto;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  text-align: left;
}

.review-form label {
  font-weight: 600;
  margin-top: 12px;
  display: block;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 10px;
  border: 2px solid #ffcd9b;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 6px rgba(255, 122, 0, 0.4);
}

.review-form button {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  background: #ff7a00;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.review-form button:hover {
  background: #e36a00;
  transform: translateY(-3px);
}

/* Review Cards */
.reviews-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.review-card {
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  background: #ff7a00;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
}

.review-stars {
  color: #ff7a00;
  margin: 0;
}

.review-text {
  margin-top: 12px;
  color: #555;
  line-height: 1.6;
}



/* -------------------- DESTINATIONS PAGE -------------------- */

.dest-hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #ff7a00, #ffaa54);
  color: white;
  border-radius: 0 0 35px 35px;
  margin-bottom: 40px;
}

.dest-hero h2 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
}

.dest-hero p {
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.9;
}

/* Main container */
.destinations-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: grid;
  gap: 40px;
}

/* Destination box */
.destination-box {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .destination-box {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Destination text */
.dest-text h2 {
  color: #ff7a00;
  font-size: 24px;
  margin: 0;
  font-weight: 700;
}

.province-tag {
  background: #fff0e0;
  color: #ff7a00;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #ffc89a;
}

.dest-text p {
  color: #555;
  margin-top: 8px;
  line-height: 1.6;
}

/* Slide frame */
.slide-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid #ffe0c7;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.slide-img {
  width: 100%;
  display: block;
  height: 300px;
  object-fit: cover;
}

/* Caption */
.slide-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
  font-size: 14px;
}

.slide-count {
  font-weight: 700;
  color: #ffb366;
}

/* Prev/Next buttons */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff7a00cc;
  border: none;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.slide-btn:hover {
  background: #e56a00;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slide-dots div {
  width: 10px;
  height: 10px;
  background: #ffd4b5;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}

.slide-dots .active {
  background: #ff7a00;
}
/* =============================
DESTINATIONS PAGE STYLING (ORANGE)
============================= */

.destinations-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem;
}

.destination-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.destination-card:hover {
  transform: scale(1.02);
}

.destination-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.destination-content {
  padding: 1.5rem;
}

.destination-content h2 {
  color: #ff7a00;
  margin-bottom: 0.5rem;
}

.destination-content p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  background: #ffe5d0;
  color: #ff7a00;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* ----- Simple form messages (login & reviews) ----- */
.error-msg {
  color: #b91c1c;
  margin-top: 8px;
  font-size: 14px;
}

.success-msg {
  color: #047857;
  margin-top: 8px;
  font-size: 14px;
}
