* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    color: white;
    z-index: 1000;
}

.navbar nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #00c6ff;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("images/BG.jpg") center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.hero h2 {
    font-size: 60px;
}

.hero p {
    font-size: 22px;
    margin: 15px 0;
}

/* BUTTON */
.btn {
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff7a18, #ffb347);
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.1);
}

/* DESTINATIONS */
.destinations {
    padding: 80px 50px;
    text-align: center;
}

.destinations h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* CARDS */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    width: 280px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.4s;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CARD OVERLAY */
.card-text {
    position: absolute;
    bottom: 0;
    color: white;
    padding: 15px;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
}
.features {
    padding: 80px 50px;
    background: #f5f7fa;
    text-align: center;
}

.feature-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background: white;
    padding: 25px;
    width: 250px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}
.about {
    padding: 80px 50px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}
.contact {
    padding: 80px 20px;
    text-align: center;
    background: #f5f7fa;
}

.contact h2 {
    margin-bottom: 30px;
}

.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.contact-form button {
    padding: 12px;
    background: #ff7a18;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #ff9a3c;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0,0,0,0.8);
  position: sticky;
  top: 0;
}

.navbar h1 {
  color: #fff;
  font-weight: 600;
}

.navbar nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #f4c542; /* accent color */
}
section {
  padding: 80px 10%;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  color: #555;
  line-height: 1.6;
}
.hero {
  height: 100vh;
  background: url('images/BG.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  color: #fff;
  z-index: 1;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #f4c542;
  color: #000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
}
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
  background: #fff;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-text {
  padding: 20px;
}
.about {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about img {
  width: 50%;
  border-radius: 10px;
}

.about-text {
  width: 50%;
}
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

form button {
  padding: 12px;
  background: #f4c542;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
}
body {
  font-family: 'Poppins', sans-serif;
}