@font-face {
    font-family: 'prestige';
    src: url('../fonts/PrestigeSignatureSerifDemo-PYlB.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ChanceryCursive';
    src: url('../fonts/ChanceryCursive-dxD6.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'CursiveSerif';
    src: url('../fonts/CursiveSerif-pj5Z.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 1px 1px 3px #000;
    z-index: 3;
}
nav a {
    color: #e98f26;
    text-decoration: none;
    padding: 10px 15px;
}
nav a:hover {
    /* background-color: #555; */
    color: #11101f;
}

.logo img {
    height: 40px;
    width: auto;
}
.menu-icon {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
.nav-links {
    display: flex;
    align-items: center;
}

#navModal {display: none;}

/* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 20px;
    width: 80%;
    max-width: 300px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: black;
}

/* Menu Links */
.modal-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: 0.3s;
}

.modal-content a:hover {
    background: #ddd;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#menuModal {
    z-index: 2;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: black;
}

/* Menu Links */
.modal-content a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: 0.3s;
}

.modal-content a:hover {
    background: #ddd;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .menu-btn {
        font-size: 16px;
        padding: 8px 16px;
    }
    .modal-content {
        width: 95%;
        max-width: 300px;
    }
    .modal-content a {
        font-size: 16px;
    }
    .nav-links {
        display: none;
    } 
    .menu-icon {
        display: block;
    }
}

/*//////////////////////////////////////////////////////////////    Banner  ///////////////////////////////////////////////*/

/* Banner Container */
.banner {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Banner Image Wrapper */
.banner .image-wrapper {
    width: 100%;
    height: 400px;
    position: relative;
}

/* Banner Images */
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Show first image */
.banner img.active {
    opacity: 1;
}

/* Text Content */
.banner-content {
    position: absolute;
    text-align: center;
    z-index: 1;
    max-width: 80%;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.banner h1 {
    /* font-family: 'prestige', serif; */
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.banner h2 {
    /* font-family: 'CursiveSerif'; */
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* CTA Button */
.banner button {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 800;
    color: #000;
    background-color: #e98f26;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.banner button:hover {
    background-color: #000;
    color: #e98f26;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner {
        max-height: 250px;
    }
    .banner .image-wrapper {
        height: 250px;
    }
    .banner h1 {
        font-size: 1.8rem;
    }
    .banner h2 {
        font-size: 1rem;
    }
    .banner button {

        font-size: 14px;
        padding: 8px 16px;
    }
    .close-btn {
        font-size: 14px;
        padding: 4px 8px;
    }
}

/*//////////////////////////////////////// Packages Container ///////////////////////////////*/

.package-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Package Card */
.package {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
    transition: 0.3s;
}

.package:hover {
    transform: scale(1.05);
}

/* Package Title */
.package h2 {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 10px;
}

/* Package Price */
.package .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

/* Package Features */
.package ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package ul li {
    text-align: left;
    margin: 5px 0;
    font-size: 1rem;
    color: #555;
}

/* Buy Button */
.package button {
    background: #e98f26;
    color: #000;
    font-weight: 800;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.package button:hover {
    background: #000;
    color: #e98f26;
}

/* Responsive Design */
@media (max-width: 768px) {
    .package-container {
        flex-direction: column;
        align-items: center;
    }
}

/*/////////////////////// Generals*/

p {
    width: 90%;
    margin: 20px auto;
    font-size: 1.2rem;
    text-align: center;
}

.centeredp {
    text-align: center;
}

/*/////////////////////// Contact us*/

.contact-section {
  padding: 40px 0;
  background-color: #f4f4f4;
}

.container {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contactHead {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}


.contact-details p {
  margin-bottom: 15px;
  color: #555;
}

.contact-details a {
  color: #e98f26;
  text-decoration: none;
  text-shadow: 1px 1px 1px #000;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
      width: 90%;
      padding: 15px;
    }
  
    #contactHead {
      font-size: 24px;
    }
  }


  /*///////////////////////////////////// Footer //////////////////////////////////////*/
  /* Footer Styles */
  footer {
    background: #486A6E;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.footer-logo img {
    width: 150px;
    height: auto;
}

/* Navigation Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: inline;
    margin: 0 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6600;
}

/* Social Media Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #000;
    color: #e98f26;
}

/* Copyright Text */
.footer-bottom {
    margin-top: 15px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links li {
        display: block;
        margin: 10px 0;
    }
}

/*//////////////////////////////Iframe*/

.map-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}