/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* HEADER */
header {
  background: #2b6777;
  color: #fff;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 2rem;
}

header p {
  margin-top: 5px;
  font-size: 1rem;
}

/* NAVBAR */
nav {
  background: #52ab98;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffd700;
}

/* SECTIONS */
.section {
  padding: 50px 20px;
  text-align: center;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2b6777;
}

.section p {
  margin-bottom: 30px;
  color: #555;
  font-size: 1.1rem;
}

/* DESTINATIONS GRID */
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.destination {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.destination:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.destination img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #52ab98;
}

.destination p {
  padding: 15px;
  font-weight: bold;
  font-size: 1rem;
  color: #333;
  background: #f1fdfb;
}

/* PLANS (Homepage साठी) */
.plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.plan {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 280px;
  padding: 20px;
  text-align: center;
}

.plan h4 {
  font-size: 1.5rem;
  color: #2b6777;
  margin-bottom: 10px;
}

.plan button {
  margin-top: 15px;
  background: #52ab98;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.plan button:hover {
  background: #2b6777;
}

/* HERO (Homepage साठी) */
.hero {
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 1px 1px 5px #000;
  text-align: center;
  padding: 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero button {
  background: #52ab98;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: #2b6777;
}

/* FOOTER */
footer {
  background: #2b6777;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* MODAL (Homepage register popup साठी) */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}
