
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/*========================Nav Bar=========================*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: white;
    color: black;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.navbar .nav-links {
    display: flex;
    gap: 30px;
}

.navbar .nav-links a {
    color: black;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-weight: bold;
}

.navbar .nav-links a:hover {
    color: darkgreen;
}

.navbar .cta {
    padding: 10px 20px;
    background-color: green;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.navbar .cta:hover {
    background-color: goldenrod;
    color: black;
}

/*=============================Banner=============================*/
.banner {
  position: relative;
  text-align: center;
  color: white;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1; 
}

.banner-text-item label {
  font-weight: bold;
  color: #000;
  margin-top: 10px;
}

.banner-text-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.banner-heading {
  flex: 1;
}

.banner-heading h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: black;
}

.banner-text-item .form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.banner-text-item input,
.banner-text-item .date,
.banner-text-item .book,
.banner-text-item .persons {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    flex: 1;
    min-width: 150px;
}

.banner-text-item input {
  width: 80%;
  flex: 2;
}

.banner-text-item .date {
  width: 40%;
  flex: 1;
}


.banner-text-item .book {
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  flex: 0 0 auto;
  font-weight: bold;
}

.banner-text-item .form button:hover {
    background-color: yellowgreen;
    color: white;
}

/*===========================Services===========================*/
.services {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.services .card {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
}

.services .card img {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.services .card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
/*=============================Places===============================*/
.packages {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.packages h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.packages h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 20px;
}

.container {
    position: relative;
    left:15%;
    top:50%;
    width:1000px;
    height:600px;
    padding:10px;
    background-color: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
}

#slide {
    width: max-content;
    margin-top: 50px;
}

.item {
    width: 200px;
    height: 300px;
    background-position: 50% 50%;
    display: inline-block;
    transition: 0.5s;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
}

.item:nth-child(1),
.item:nth-child(2) {
    left: 0;
    top: 0;
    transform: translate(0, 0);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    box-shadow: none;
}

.item:nth-child(3) {
    left: 50%;
}

.item:nth-child(4) {
    left: calc(50% + 220px);
}

.item:nth-child(5) {
    left: calc(50% + 440px);
}

.item:nth-child(n+6) {
    left: calc(50% + 660px);
    opacity: 0;
}

.item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    padding: 0;
    color: #fff;
    transform: translate(0, -50%);
    display: none;
    font-family: system-ui;
}

.item:nth-child(2) .content {
    display: block;
    z-index: 11111;
}

.item .name {
    font-size: 40px;
    font-weight: bold;
    opacity: 0;
    animation: showcontent 0.5s ease-in-out 1 forwards;
}

.item .des {
    margin: 20px 0;
    opacity: 0;
    animation: showcontent 0.5s ease-in-out 0.2s 1 forwards;
}

.item button {
    padding: 10px 20px;
    border: none;
    opacity: 0;
    animation: showcontent 0.5s ease-in-out 0.5s 1 forwards;
}

@keyframes showcontent {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
        filter: blur(0);
    }
}

.buttons {
    position: absolute;
    bottom: 30px;
    z-index: 222222;
    text-align: center;
    width: 100%;
}

.buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: 0.5s;
}

.buttons button:hover {
    background-color: #bac383;
}

/*======================== About Us Section ========================*/
.about {
    padding: 50px 0px;
    background-color: #f9f9f9; 
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img {
    flex: 1;
    max-width: 300px;
    margin-right: 30px;
    display: flex;
    justify-content: center;
}

.about-img img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;  
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img img:hover {
    transform: scale(1.05); 
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2); 
}

.about-text {
    flex: 2;
    text-align: left;
    max-width: 600px;
}

.about-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: bold;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-img {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .about-text {
        max-width: 90%;
    }

    .about-text h1 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}


/*========Contact==========*/
#contact {
    padding: 40px;
    text-align: center;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

#contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #000;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #000;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: green;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;

}

button[type="submit"]:hover {
    background-color: gold;
    color: black;
}

/*===============Footer===================*/
footer {
    background-image: url("https://images.pexels.com/photos/998641/pexels-photo-998641.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-column {
    text-align: left;
}

footer .footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

footer .footer-column ul {
    list-style: none;
    padding: 0;
}

footer .footer-column ul li {
    margin: 5px 0;
}

footer .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

footer .footer-column ul li a:hover {
    text-decoration: underline;
}

footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

footer .social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: seagreen;
}

footer .newsletter {
    text-align: left;
}

footer .newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

footer .newsletter input {
    padding: 10px;
    width: calc(100% - 110px);
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

footer .newsletter button {
    padding: 10px;
    border: none;
    background-color: green;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: bold;
}

footer p {
    margin-top: 20px;
    font-size: 0.9rem;
}
/*==========================Responsive=============================*/
@media all and (max-width: 1172px) {
  .banner-text-item .form {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 50%;
  }

  .banner-text-item .form input,
  .banner-text-item .form .date,
  .banner-text-item .form a {
    flex: 1;
    margin-bottom: 5px;
    font-size: 14px;
  }

  .banner-text-item .form input {
    width: 60%;
  }

  .banner-text-item .form .date {
    width: 30%;
  }

  .banner-text-item .form .book {
    width: 10%;
    font-size: 14px;
  }

  .banner-heading h1 {
    font-size: 60px;
  }
}

@media all and (max-width: 1414px) {
  .banner-text-item .form input {
    width: 40%;
  }

  .banner-text-item .form .date {
    width: 30%;
  }

  .banner-text-item .form .book {
    width: 20%;
    font-size: 14px;
  }
}

@media all and (max-width: 942px) {
  .nav-bar {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    text-align: center;
    position: static;
  }

  .logo {
    flex: 1;
    font-size: 30px;
    margin: 10px auto;
    font-family: Satisfy;
    color: #fde02f;
  }

  .nav-bar ul {
    display: none;
  }

  .nav-bar ul li {
    flex: 1;
    margin-bottom: 5px;
    font-size: 14px;
  }

  .services {
    display: flex;
    flex-flow: column wrap;
  }

  .services .service-item {
    flex: 1;
    margin-bottom: -130px;
    width: 400px;
  }

  .places-text {
    margin-top: 200px;
  }
}

@media all and (max-width: 928px) {
  .banner .form input,
  a {
    font-size: 12px;
  }
}

@media all and (max-width: 1173px) {
  .banner .form {
    background-color: transparent;
  }
}

@media all and (max-width: 1334px) {
  .about-img img {
    width: 300px;
    height: 500px;
  }
}

@media all and (max-width: 1116px) {
  .about {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }

  .about-img {
    flex: 1;
    margin-bottom: 20px;
  }

  .about-text {
    flex: 1;
    margin: auto;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .about-text h2 {
    font-size: 35px;
  }

  .about-img img {
    width: 400px;
    height: 400px;
  }
}

@media all and (max-width: 708px) {
  .footer {
    width: 100%;
    height: 670px;
    position: relative;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }
}
