* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

/*.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}*/

/*
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  color: #16554E;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #bfa14a;
}*/

.hero {
  background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.9)), url('https://via.placeholder.com/1500x700') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-content h2 {
  font-size: 2.5rem;
  color: #333;
}

.hero-content p {
  margin: 10px 0;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #16554E;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}

section {
  padding: 80px 20px;
  text-align: center;
}

.about, .packages, .portfolio, .booking, .contact {
  max-width: 1200px;
  margin: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.image-box {
  height: 200px;
  background-color: #eee;
  border-radius: 10px;
}

.package-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.package {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.package h3 {
  color: #bfa14a;
}

.package span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px;
}
/*
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: #16554E;
  }
}
  */
#home{
  background-image: url('header.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  font-size:10px;
}
.hero-content h2{
  color: white;
  font-size:70px;
}
.hero-content p{
  font-size: 50px;
  color: white;
}
.hero-content a{
  font-size: 20px;
}
.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.packages {
  text-align: center;
  padding: 40px 0;
}

.packages h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}

.package-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.package-card {
  width: 300px;
  padding: 30px 20px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* OR you can use different images for each card: */
.basic {
  background-image: url('Packages/1.jpeg');
}

.premium {
  background-image: url('Packages/2.jpeg');
}

.luxury {
  background-image: url('Packages/3.jpeg');
}

.package-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: gold;
}

.package-card p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #fff;
}

.package-card h4 {
  font-size: 18px;
  font-weight: 700;
}

.package-card:hover {
  transform: scale(2.08);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/*Form */
form {
  width: 400px;
  margin: 40px auto;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

form h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #c6a445;
  box-shadow: 0 0 5px rgba(198, 164, 69, 0.4);
}

form button {
  width: 100%;
  background-color: #c6a445;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #b89334;
}

/***** Section *****/ 
/* Video Section */ 
.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

/* Video Box Frame */
.video-box {
    width: 300px;
    height: 500px;
    border: 4px solid #000;
    overflow: hidden;
}

/* Video Fit */
.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/***** End Section *****/
#v2{
  text-align: center;
  font-size: xx-large;
}


/***** Section *****/ 
/* ===== HEADER SECTION ONLY ===== */

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    height: 140px;  /* increase height so big image fits */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Banner Image inside Header */
.header-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Menu Alignment */
.menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.menu ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.menu ul li a:hover {
    color: #16554E;
}

 /***** End Section *****/

