/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
  }
  
  h1, h2, h3 {
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
  }
  
  :root {
    --glitter: url("https://assets.codepen.io/13471/silver-glitter-background.png");
}

  
  /* Header */
  /* Navbar Styling */
.navbar {
  background-color: rgba(26, 26, 26, 0.9); /* Semi-transparent dark background */
  padding: 1rem 0; /* Add some padding */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: background-color 0.3s; /* Smooth background transition */
}

.navbar.scrolled {
  background-color: #1a1a1a; /* Solid dark background when scrolled */
}

/* Logo Styling */
.navbar-brand .logo {
  font-family: 'Bangers', cursive; /* Custom font for the logo */
  font-size: 2rem; /* Large font size */
  color: #ff4757; /* Red color for the logo */
  transition: color 0.3s; /* Smooth color transition */
}

.navbar-brand .logo:hover {
  color: #ff6b81; /* Lighter red on hover */
}

/* Navbar Links */
.navbar-nav .nav-link {
  font-family: 'Roboto', sans-serif; /* Clean font for links */
  font-size: 1.1rem; /* Medium font size */
  color: #fff !important; /* White text color */
  margin: 0 0.75rem; /* Spacing between links */
  transition: color 0.3s; /* Smooth color transition */
}

.navbar-nav .nav-link:hover {
  color: #ff4757 !important; /* Red color on hover */
}

/* Active Link */
.navbar-nav .nav-link.active {
  color: #ff4757 !important; /* Red color for active link */
}



.btn-custom:hover {
  background-color: #ff6b81; /* Lighter red on hover */
}

/* Hamburger Menu Icon */
.navbar-toggler {
  border: none; /* Remove border */
  padding: 0.5rem; /* Add padding */
}

.navbar-toggler:focus {
  box-shadow: none; /* Remove focus outline */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  /* Custom white color for the hamburger icon */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .navbar-nav {
    margin-top: 1rem; /* Add space between links and button on mobile */
  }

  .sparkles{
    width: 360px;
  }

  



  .navbar-nav .nav-link {
    margin: 0.5rem 0; /* Adjust spacing for stacked links */
  }

  .btn-custom {
    margin-top: 1rem; /* Add space above the button on mobile */
  }
}
  
  /* Hero Section */
  #hero {
    margin-top: 70px;
    background: url('/images/daniel-becerra-lRMBA_hzrxc-unsplash.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  #hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  }
  
  #hero .container {
    position: relative;
    z-index: 1;
  }
  
  #hero h1 {
    font-size: 4rem;
    margin: 0;
  }
  
  #hero p {
    font-size: 1.5rem;
    margin: 20px 0;
  }



  .sparkles {
    --clr: 260;
    --shadows: 0%;
    --shadowl: 0%;

    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 5em;
    background: linear-gradient(
        0deg,
        hsla(var(--clr), 100%, 70%) 0%,
        hsla(var(--clr), 100%, 65%) 5%,
        hsla(var(--clr), 80%, 35%) 15%,
        hsla(var(--clr), 10%, 0%) 40%,
        hsla(var(--clr), 25%, 12%) 90%
    );
    background-size: 200% 300%;
    background-position: 0% 0%;
    box-shadow: inset 0 0 2px hsla(var(--clr), 30%, 20%);
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    transform: translate(0px);

    transition: all 0.5s cubic-bezier(0.77, 0, 0.18, 1);

    box-shadow: 0 -0.5em 0.5em transparent, 0 0.5em 0.5em transparent, 0 0.5em 0.5em transparent, 0 0.5em 0.5em transparent,
        0 0.25em 0.3em -0.2em hsla(var(--clr), 0%, 0%, 0.5),
        0 0.35em 0.75em hsla(var(--clr), 0%, 0%, 0.75);
}

.sparkles::before,
.sparkles::after {
    --gradientPos: 50% 100%;
    content: " ";
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    transition: inherit;
}

.sparkles:before {
    inset: 0;
    position: absolute;
    transform: translate3d(0, 0, 0.01px);
    border-radius: inherit;

    background-image: var(--glitter), var(--glitter),
        linear-gradient(180deg, black 0%, white 80%);
    background-size: 300px 170px, 280px 130px, 200% 200%;
    background-blend-mode: multiply, multiply, overlay;
    background-position: 0px 0px, 0px 0px, var(--gradientPos);
    background-repeat: repeat;

    mix-blend-mode: color-dodge;
    filter: brightness(2) contrast(.75);
    animation: bubble 20s linear infinite;
    animation-play-state: paused;
    opacity: 0.5;
    box-shadow: inset 0 -8px 10px -7px hsla(var(--clr), 70%, 80%, 0.75);
}

.sparkles:after {
    background-image: radial-gradient(
            ellipse at center 70%,
            hsla(var(--clr), 100%, 99%, 0.8) 5%,
            hsla(var(--clr), 90%, 80%, 1) 20%,
            transparent 50%,
            transparent 200%
        ),
        linear-gradient(
            90deg,
            hsla(var(--clr), 80%, 10%, 1) -10%,
            transparent 25%,
            transparent 75%,
            hsla(var(--clr), 80%, 10%, 1) 110%
        );
    box-shadow: inset 0 0.25em 0.75em rgba(0, 0, 0, 1),
        inset 0 -0.05em 0.2em rgba(255, 255, 255, 0.4),
        inset 0 -1px 3px hsla(var(--clr), 80%, 50%, 0.75);
    background-blend-mode: darken;
    background-repeat: no-repeat;
    background-size: 180% 80%, cover;
    background-position: center 220%;
    mix-blend-mode: hard-light;
    filter: blur(5px);
    opacity: 0;
}

.sparkles:hover,
.sparkles.over {
    --shadows: 90%;
    --shadowl: 80%;
    background-position: 100% 100%;

    transition: all 0.2s cubic-bezier(0.17, 0.84, 0.44, 1);

    box-shadow: 0 -0.2em 1.5em hsla(var(--clr), 90%, 50%, 0.3),
        0 0.5em 2em hsla(var(--clr), 90%, 70%, 0.55),
        0 0.25em 0.3em -0.2em hsla(var(--clr), 0%, 0%, 1),
        0 0.35em 0.75em hsla(var(--clr), 0%, 0%, 1),
        0 0.25em 0.5em -0.3em hsl(var(--clr), 30%, 99%, 1),
        0 0.25em 0.5em hsla(var(--clr), 20%, 30%, 0.35),
        inset 0 -2px 5px -2px rgba(255, 255, 255, 0.5);
}

.sparkles.over {
    transition-duration: 2s;
}

.sparkles:hover:before,
.sparkles.over:before {
    --gradientPos: 50% 50%;
    animation-play-state: running;
    filter: brightness(2) contrast(1);
    box-shadow: inset 0 -5px 10px -4px hsla(var(--clr), 70%, 80%, 0.3);
    opacity: .8;
}

.sparkles:hover:after,
.sparkles.over:after {
    opacity: .8;
    transform: translateY(0px);
}

.sparkles span {
    grid-column: 1;
    grid-row: 1;
    background-image: linear-gradient(
        hsl(calc(var(--clr) - 43), 27%, 85%) 0%,
        hsl(calc(var(--clr) - 60), 22%, 80%) 19%,
        hsl(calc(var(--clr) - 50), 20%, 75%) 30%,
        hsl(calc(var(--clr) - 52), 36%, 98%) 43%,
        hsl(var(--clr), 70%, 70%, 1) 51%,
        hsl(var(--clr), 50%, 85%, 1) 52%,
        rgb(255, 255, 255) 100%
    );
    background-size: 1em 3.45em;
    color: rgb(214, 222, 226);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 0.05em rgba(0,0,0,0.5)) drop-shadow(0 0.05em 0.05em rgba(0,0,0,0.5));
    transition-timing-function: inherit;
    transition-duration: inherit;
    transition-delay: 0s;
    padding: 0.75em 1.5em;
    transform: translateY(0);
    z-index: 10;
}

.sparkles:hover span,
.sparkles:active span,
.sparkles.over span {
    background-position-y: -100%;
}

.sparkles:active {
    transform: translateY(0.075em);
    box-shadow: 0 -0.2em 1.5em hsla(var(--clr), 90%, 50%, 0.4),
    0 0.5em 2em hsla(var(--clr), 90%, 70%, 0.65),
    0 0.15em 0.3em -0.2em hsla(var(--clr), 0%, 0%, 1),
    0 0.25em 0.75em hsla(var(--clr), 0%, 0%, 1),
    0 0.25em 0.5em -0.3em hsl(var(--clr), 30%, 99%, 1),
    0 0.25em 0.5em hsla(var(--clr), 20%, 30%, 0.45),
    inset 0 -2px 5px -2px rgba(255, 255, 255, 0.65);
    transition-duration: 0.1s;
}

.sparkles:active:before,
.sparkles:active:after {
    opacity: 1;
    filter: brightness(3) contrast(.75);
    animation-duration: 8s;
}
.sparkles:active:after {
    filter: brightness(1.35) contrast(.8) blur(5px);
}

:root {
    --glitter: url("https://assets.codepen.io/13471/silver-glitter-background.png");
}

@keyframes bubble {
    0% {
        background-position: 0px 340px, 0px 130px, var(--gradientPos);
    }
    100% {
        background-position: 0px 0px, 0px 0px, var(--gradientPos);
    }
}


  
 /* Book Now Button */
.cta-button {
  display: inline-block;
  background-color: #ff4757; /* Red background */
  color: #fff; /* White text */
  padding: 12px 24px; /* Button padding */
  border: 2px solid #ff4757; /* Red border */
  border-radius: 30px; /* Rounded corners */
  font-family: 'Roboto', sans-serif; /* Clean font */
  font-weight: bold; /* Bold text */
  text-transform: uppercase; /* Uppercase text */
  text-decoration: none; /* Remove underline */
  transition: all 0.4s ease; /* Smooth transition for all properties */
  position: relative; /* For hover effect */
  overflow: hidden; /* Hide overflow for hover effect */
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%; /* Large circle for hover effect */
  height: 300%;
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
  border-radius: 50%; /* Circle shape */
  transform: translate(-50%, -50%) scale(0); /* Start small */
  transition: transform 0.5s ease; /* Smooth transition */
  z-index: 0; /* Behind the text */
}

.cta-button:hover::before {
  transform: translate(-50%, -50%) scale(1); /* Grow circle on hover */
}

.cta-button span {
  position: relative; /* Ensure text is above the hover effect */
  z-index: 1; /* Above the circle */
}

.cta-button:hover {
  background-color: #ff6b81; /* Lighter red on hover */
  border-color: #ff6b81; /* Lighter red border on hover */
  color: #fff; /* Keep text white */
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.5); /* Add shadow on hover */
}
  
#about{
  background-color: rgb(45, 0, 0);
  height: 200px;
  padding-top: 40px;
  text-align: center;
  
}

#about h2{
  font-size: 40px;
}


  /* Packages Section */
  #packages {
    padding: 50px 0;
    background-color: #1a1a1a;
    text-align: center;
  }
  
  #packages h2 {
    font-size: 3rem;
    margin-bottom: 40px;
  }
  
  .package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .package-card {
    background-color: #2d3436;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  
  .package-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .package-card .price {
    font-size: 1.5rem;
    color: #ff4757;
    margin: 10px 0;
  }
  
  /* Gallery Section */
  #gallery {
    padding: 50px 0;
    background-color: #2d3436;
    text-align: center;
  }
  
  #gallery h2 {
    font-size: 3rem;
    margin-bottom: 40px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4px;
  }
  
  .gallery-grid img {
    width: 50%;
    border-radius: 10px;
  }
  
/* Footer Styling */
.footer {
  background-color: #1a1a1a; /* Dark background */
  padding: 2rem 0; /* Add padding */
  text-align: center; /* Center-align content */
  border-top: 1px solid #333; /* Add a subtle border */
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem; /* Space between icons */
  margin-bottom: 1.5rem; /* Space below icons */
}

.social-icon {
  color: #fff; /* White color for icons */
  font-size: 1.5rem; /* Icon size */
  transition: color 0.3s; /* Smooth color transition */
}

.social-icon:hover {
  color: #ff4757; /* Red color on hover */
}

/* Google Maps Button */
.maps-button {
  background-color: #ff4757; /* Red background */
  color: #fff; /* White text */
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none; /* Remove underline */
  font-family: 'Roboto', sans-serif; /* Clean font */
  font-weight: bold; /* Bold text */
  transition: background-color 0.3s; /* Smooth background transition */
  display: inline-block; /* Make it inline */
  margin-bottom: 1.5rem; /* Space below button */
}

.maps-button:hover {
  background-color: #ff6b81; /* Lighter red on hover */
}

.maps-button i {
  margin-right: 0.5rem; /* Space between icon and text */
}

/* Copyright Notice */
.copyright {
  font-size: 0.9rem; /* Smaller font size */
  color: #888; /* Light gray color */
  margin: 0; /* Remove default margin */
}
