.sub-titel{
   font-family: 'Comic Sans MS', cursive, sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.carousel-item{
  position: relative;
}

.Main-Title{
   font-family: 'Comic Sans MS', cursive, sans-serif;
  font-weight: bold;
}

/* ...existing code... */
p {
  font-family: 'Prompt', Arial, sans-serif;
}
/* ...existing code... */
.carousel-caption {
  z-index: 2;  /* Make sure the caption stays above the gradient overlay */
}
.carousel-item img {
    height: 100%;
    object-fit: cover;
    position: relative;
  }
  .hero {
    background-image: url('path-to-hero-image.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.map-image {
    max-width: 100%;
    height: auto;
}

hr.bg-dark {
    border-top: 2px solid #000;
  }
hr.bg-dark1{
    border-top: 5px  #000;
   
    height: auto;
    justify-content: center;
    align-items: center;
  }

.text{

  font-family: 'Segoe UI', Arial, sans-serif;
  
    /* font-size: 18px; */
  
  } 

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s, transform 0.7s;
}

/* Mobile-specific animation */
@media (max-width: 768px) {
    .gallery-grid img {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.7s, transform 0.7s;
    }

    .gallery-grid img.animate {
        opacity: 1;
        transform: translateY(0);
    }

}

.gallery-grid img {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s, transform 0.7s;
}

.gallery-grid img.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Existing styles from your original CSS */
.gallery-grid img:nth-child(2), 
.gallery-grid img:nth-child(4), 
.gallery-grid img:nth-child(5), 
.gallery-grid img:nth-child(6), 
.gallery-grid img:nth-child(7), 
.gallery-grid img:nth-child(8) {
    grid-row: span 2;
    height: 300px;
}
.places .card {
  height: 100%;
}

.places .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* beachSide css */
/* Gallery Styles */
.gallery-container {
  padding: 2rem;
  background-color: #f8f9fa;
}

.gallery-grid1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* First row - large images */
.gallery-grid1 img:nth-child(1) {
  grid-column: span 2;
  height: 350px;
}

.gallery-grid1 img:nth-child(2) {
  grid-column: span 2;
  height: 350px;
}

/* Second row - mixed layout */
.gallery-grid1 img:nth-child(3) {
  grid-column: span 3;
  grid-row: span 2;
  height: 400px;
}

.gallery-grid1 img:nth-child(4) {
  grid-column: span 1;
  height: 500px;
}

.gallery-grid1 img:nth-child(5) {
  grid-column: span 2;
  margin-top: -80px;
  height: 340px;
}

.gallery-grid1 img:nth-child(6) {
  grid-column: span 1;
  margin-top: -80px;
  height: 340px;
}

.gallery-grid1 img:nth-child(7) {
  grid-column: span 1;
  height: 250px;
}

/* Hover effects */
.gallery-grid1 img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .gallery-grid1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; 
  }

  .gallery-grid1 img,
  .gallery-grid1 img:nth-child(n) {
    grid-column: span 1;
    height: 300px;
    margin-top: 0; /* Reset any margin-top */
  }
}

/* Mobile Responsive */@media (max-width: 576px) {
  .gallery-grid1 {
    grid-template-columns: 1fr;
    gap: 20px; 
  }

  .gallery-grid1 img,
  .gallery-grid1 img:nth-child(n) {
    grid-column: span 1;
    height: 250px;
    margin-top: 0; /* Reset any margin-top */
  }
}


/* Base mobile styles */




/* iPhone XR / 11 / Samsung Galaxy adjustments */


/* Pixel 7 specific adjustments */
@media screen and (max-width: 412px) {
  .gallery-grid1 {
    padding: 8px;
  }
  
  .places .card-text {
    -webkit-line-clamp: 3;
  }
}

/* iPhone 14 Pro Max adjustments */
@media screen and (max-width: 428px) {
  
  
  #mobileCardCarousel .card {
    margin: 0 auto;
  }
}

/* General improvements for all mobile devices */


.sub-title {
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: #1e293b;
}
.places-more-link {
  color: #6366f1;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.places-more-link:hover {
  color: #0ea5e9;
  text-decoration: underline;
}
.modern-place-card {
  background: rgba(255,255,255,0.7);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  border: none;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.modern-place-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.18);
}
.modern-place-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
  background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modern-place-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
  transition: transform 0.3s;
}
.modern-place-card:hover .modern-place-img {
  transform: scale(1.05);
}
.modern-place-body {
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.modern-place-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-align: left;
}
.modern-place-text {
  font-size: 0.97rem;
  color: #475569;
  margin-bottom: 1.2rem;
  text-align: left;
}
.modern-place-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #6366f1 60%, #38bdf8 100%);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(59,130,246,0.10);
  transition: background 0.2s, box-shadow 0.2s;
  font-size: 1rem;
  margin-top: auto;
}
.modern-place-btn:hover {
  background: linear-gradient(90deg, #38bdf8 60%, #6366f1 100%);
  box-shadow: 0 4px 16px rgba(59,130,246,0.18);
  color: #fff;
}


.swiper-pagination-bullet {
  background: green !important;
}

.mySwiper {
  height: 550px; /* Adjust as needed */
}

.mySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* .carousel-control-prev { ... } */
/* .carousel-control-next { ... } */
/* .carousel-indicators { ... } */
/* .carousel-inner { ... } */
/* .carousel-item { ... } */

.map-container {
    position: relative;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}
.map-marker {
    position: absolute;
    width: 13px;
    height: 15px;
    transform: translate(-50%, -100%); /* Center horizontally, bottom at point */
    z-index: 2;
    pointer-events: auto;
    transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
}
.map-marker:hover {
    transform: translate(-50%, -110%) scale(1.2);
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
    z-index: 3;
}
.marker-popup {
    display: none;
    position: fixed;
    background: #fff;
    color: #222;
    padding: 6px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    font-size: 1rem;
    white-space: nowrap;
    pointer-events: none;
    z-index: 9999;
    border: 1px solid #ddd;
    transition: opacity 0.15s;
}
.map-popup {
    position: absolute;
    background: #fffefe;
    color: #000000;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 15px;
    white-space: nowrap;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: none;
    pointer-events: none;
}
#loader-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100vw;
            height: 100vh;
            background: #fff;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: opacity 0.5s;
        }

        #loader-overlay .loader-text {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            color: #27ae60;
            margin-top: 20px;
            letter-spacing: 1px;
            animation: fadeInUp 1.2s;
        }

        .lds-dual-ring {
            display: inline-block;
            width: 64px;
            height: 64px;
        }

        .lds-dual-ring:after {
            content: " ";
            display: block;
            width: 46px;
            height: 46px;
            margin: 1px;
            border-radius: 50%;
            border: 6px solid #27ae60;
            border-color: #27ae60 transparent #27ae60 transparent;
            animation: lds-dual-ring 1.2s linear infinite;
        }

        @keyframes lds-dual-ring {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.btn-outline-dark{

  color: #0a6847 !important;
    border-color: #0a6847 !important;
    background: transparent !important;
    font-weight: 600;
    padding: 0.4em 1.2em;
    border-radius: 24px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background: #16a34a !important;
    color: #fff !important;
    border-color: #16a34a !important;
    box-shadow: 0 4px 16px 0 rgba(22,163,74,0.12);
}