body {
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-image: url(../Images/Gemini_Generated_Image_5p93q35p93q35p93.jpeg);
    background-attachment: scroll; /* Makes background fixed during scroll */
    background-size: cover; /* Cover entire screen without zooming */
    background-repeat: no-repeat; /* Don't repeat the background */
    background-position: center center; /* Center the background */
    zoom: 80%;
    overflow-y: auto;
    overflow-x: auto;
} 

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto;
    text-align: left;
    
}

.logo img {
    margin: 0;
}

nav {
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    background-color: #9e4c08d8;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}

nav ul {
    flex: 1;
    text-align: right;
    margin-right: 20px;
    font-weight: bold;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin: 10px 20px;
}

nav ul li a {
    text-decoration: none;
    color : black;
    font-size: 20px;;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #f79a0f7c;
    transition: 0.3s;
    width:100% ;
    height: 10px;
    position: relative;
}


article h1 {
    padding-top: 20px;
    margin: auto;
    text-align: center;
    font-size: 1.62rem;
}

.content_7_days p {
    padding: 0px;
    margin: auto;
    text-align: center;
    font-size: 1.62rem;
    
    
}

.content_7_days{
    margin-top: 40px;
    box-sizing: border-box;
    background-color: #f855145b;
    border-radius: 50px ;
    width: 100%
    
}

.content_7_days h3 {
    padding: 0px;
    margin: auto;
    text-align: center;
    font-size: 1.62rem;
}

.content_10_days p {
    padding: 0px;
    margin: auto;
    text-align: center;
    font-size: 1.62rem;
}

.content_10_days{
    margin-top: 40px;
    box-sizing: border-box;
    background-color: #f855145b;
    border-radius: 50px ;
    width: 100%
}

.content_10_days h3 {
    padding: 0px;
    margin: auto;
    text-align: center;
    font-size: 1.62rem;
}

.content_15_days p {
    padding: 0px;
    margin: auto;
    text-align: center;
    font-size: 1.62rem;
}

.content_15_days{
    margin-top: 40px;
    box-sizing: border-box;
    background-color: #f855145b;
    border-radius: 50px ;
    width: 100%
}

.content_15_days h3 {
    padding: 0px;
    margin: auto;
    text-align: center;
    font-size: 1.62rem;
}


aside {
    padding-bottom: 20px;
    margin-top: 100px;
    margin-bottom: 50px;
    background-color: rgba(175, 85, 44, 0.336);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 25px;
}

aside h2{
    font-size: 25px;
}

aside a {
    color: rgb(226, 97, 11);
    
}

.phone a:hover {
    color: #220303 ;
    transform: scale(1.2);
    transition: 0.3s;
}

.social_media img:hover{
    transition: 0.3s;
    transform: scale(1.2);
}


.Contact {
    text-align: center;
    margin: 20px 0;
}


.visit-us-content {
    display: flex; /* Enable Flexbox */
    justify-content: space-around; /* Space out the items evenly */
    align-items: center; /* Align items vertically in the center */
    gap: 25px; /* Add spacing between items */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.visit-us-content address,
.visit-us-content .phone,
.visit-us-content .maps {
    flex: 1; /* Make each item take up equal space */
    max-width: 400px; /* Optional: Limit the width of each item */
    text-align: center; /* Align text to the left */
}


.visit-us-content iframe {
    width: 350px;
    height: 400px;
    border-radius: 15px; /* Add rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.visit-us-content iframe:hover {
    transform: scale(1.1); /* Scale up the map */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Enhance the shadow on hover */

}
.social-media img {
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
}

.social-media img:hover {
    transform: scale(1.15);

}

.btn_container_1 {
    text-align: center; /* Center the button */
    margin: 20px 0; /* Add spacing around the button */
}

.learn-more-btn {
    background-color: #db6e1498; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove default border */
    border-radius: 20px; /* Add rounded corners */
    padding: 15px 30px; /* Increase padding for a larger button */
    font-size: 1.2rem; /* Increase font size */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    cursor: pointer; /* Change cursor to pointer on hover */
    position: relative; /* Required for the fill-up effect */
    overflow: hidden; /* Ensure the fill-up animation stays within the button */
    margin-bottom:20px ;
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth hover animation */
}

.learn-more-btn::before {
    content: ''; /* Add a pseudo-element for the fill-up effect */
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #000000; /* Fill-up color */
    z-index: 0; /* Place it behind the text */
    transition: width 0.4s ease; /* Smooth fill-up animation */
}

.learn-more-btn:hover::before {
    width: 100%; /* Fill the entire button on hover */
}

.learn-more-btn:hover {
    color: rgb(255, 255, 255); /* Change text color on hover */
    transform: scale(1.1); /* Slightly enlarge the button on hover */
    transition: .3s;
}

.learn-more-btn span {
    position: relative; /* Ensure the text stays above the fill-up effect */
    z-index: 1; /* Ensure the text is above the ::before pseudo-element */
}


@keyframes modalPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #fffbe6;
    padding: 0;
    border-radius: 16px;
    max-width: 420px;
    width: 90vw;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
}
.btn container{
    text-align: center;
    margin: 20px;
}
.learn-more-btn{
    background-color: #db6e1498;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease; 
}



.learn-more-btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: black;
    z-index: 0;
    transition: width 0.4s ease;
}

.learn-more-btn:hover::before{
    width: 100%
}

.learn-more-btn:hover{
    color: white;
    transform: scale(1.1);
    transition: .3s;
}

.learn-more-btn span{
    position: relative;
    z-index: 1;
}
.btn_container_1 {
    display: flex;
    justify-content: center; /* Center horizontally */
      /* Center vertically (optional) */
    margin: 20px auto;
    text-align: center;
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.12); /* Subtle overlay */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fffbe6;
    padding: 24px 18px 18px 18px;
    border-radius: 22px;
    box-shadow: 0 16px 40px 0 rgba(0, 30, 0, 0.18), 0 2px 8px rgba(0,0,0,0.10);
    width: 98%;
    max-width: 480px;      /* Increased max-width for a bigger form */
    min-width: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    animation: modalPop 0.45s cubic-bezier(.23,1.12,.72,.98);
    border: none;
    margin: 0 auto;        /* Center horizontally if needed */
}

.modal {
    /* ...existing code... */
    background: transparent;
}


.close-btn {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 2rem;
    color: #b86e1e;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2;
}
@keyframes modalPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .modal-content {
        max-width: 98vw;
    }
    .modal-content iframe {
        height: 250px !important;
    }
}
/* Mobile Styles: max-width 768px and smaller */
@media (max-width: 768px) {
  body {
    padding: 0 10px;
    font-size: 90%;
    overflow-x: hidden;
    background-size: cover;
  }

  .logo {
    width: 80px;
    height: 80px;
    margin: 10px auto;
  }

  nav {
    flex-direction: column;
    padding: 10px;
    text-align: center;
  }

  nav ul {
    text-align: center;
    margin: 0;
    padding: 0;
  }

  nav ul li {
    display: block;
    margin: 10px 0;
  }

  nav ul li a {
    font-size: 18px;
  }

  .content_7_days,
  .content_10_days,
  .content_15_days {
    padding: 15px;
    margin: 20px 0;
    border-radius: 20px;
  }

  .content_7_days h3,
  .content_10_days h3,
  .content_15_days h3,
  .content_7_days p,
  .content_10_days p,
  .content_15_days p {
    font-size: 1.3rem;
  }

  aside {
    font-size: 18px;
    padding: 20px;
    margin-top: 40px;
  }

  aside h2 {
    font-size: 20px;
  }

  .visit-us-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .visit-us-content iframe {
    width: 100%;
    height: 300px;
  }

  .btn_container_1 {
    flex-direction: column;
    align-items: center;
  }

  .learn-more-btn {
    padding: 12px 24px;
    font-size: 1rem;
    width: 90%;
  }

  .modal-content {
    width: 95vw;
    padding: 20px 16px;
  }

  .modal-content iframe {
    height: 250px !important;
    width: 100% !important;
  }

  .social-media img {
    width: 32px;
    height: 32px;
  }
}
