
/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Mulish, sans-serif;
  background-color: #000;
  color: #fff;
  
}
p {
  font-size: 17px;
}
ul,li{
  font-size: 17px;
}
.bg-header{
    background-color: #000;
}




/* Main container styling */
.container {
  max-width: 1200px; /* Adjust container width */
  margin: 0 auto;
  padding: 0 20px; /* Add some padding on smaller screens */
}

/* Header styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

/* Logo styling */
.logo {
 height: 60px;
}



/* Navigation styling */
.nav-links {
  display: flex;
  text-transform: uppercase;
  gap: 40px;
  font-size: 18px;
}  

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* Button styling */
.quote-btn {
  background-color: #eda276;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* Mobile Menu Icon */
.menu-icon {
  display: none;
  color: #fff;
}

/* Responsive design */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide the navigation links by default on mobile */
  }

  .menu-icon {
    display: block;
        font-size: 2.9em;
        cursor: pointer;
        margin-left: auto;
  }

  /* When the menu icon is clicked, display the nav links */
  .nav-links.open {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 10px 0;
    gap: 10px;
  }
}
/* .banner-image{
  background-image: url(img/banner-img.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
   height: 600px;
  
} */
.hero-section{
    border-radius: 10px;
    width: 100%;
}

.sidebar-img{
    margin-right: 20px;
}
a.list-group-item.list-group-item-action.p-4 {
    background-color: black;
    color: white;
    border: 1px solid white;
}
.footer {
    background-color: #f8f8f8;
    padding: 40px 0;
    color: #333;
}
.footer .footer-logo img {
    max-width: 150px;
}
.footer h3, .footer h2 {
    font-size: 1.2rem;
    font-weight: bold;
}
.footer a {
    color: #333;
    text-decoration: none;
}
.footer a:hover {
    color: #f28e3d;
}
.footer .social-icons a {
    font-size: 14px;
    margin: 0 10px;
}
.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
}
.footer-bottom a {
    color: #f28e3d;
}
.contact-us{
  text-decoration: none;
  color: #000;
  font-size: 18px;
}


.bg-gradient{
  background: radial-gradient(circle, rgba(248,246,244,1) 0%, rgba(181,63,163,1) 88%);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.social-links li {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  color: #666;
}
.social-links li::before {
  content: "•";
  color: #D7B6A3;
  margin-right: 5px;
  font-size: 24px;
}
.weddingwire-btn {
  display: block;
  width: 200px;
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
  margin: 10px auto;
  border-radius: 5px;
  color: #FF6B6B;
  font-weight: bold;
  font-size: 16px;
}

.footer-first-img{
  height: 55px;
}
.container-fluid, .image-style, .overlay-text { 
  margin: 0;
  padding: 0;
}
    .image-style {  
       
          position: relative;
          background-image: url('https://thefountainevents.com/img/banner-img.webp'); 
        
          background-size: cover;
          background-position: center; 
          background-repeat: no-repeat;
          width: 100%;  /* Full width */
          height: 100vh; /* Full viewport height */
      }
      
      /* Centered overlay text */
      .overlay-text {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          color: #fff;
          text-align: center;
          background-color: rgba(0, 0, 0, 0.5); /* Optional: dark overlay */
          padding: 10px 20px;
          border-radius: 5px;
          width: 80%; /* Adjust width for responsiveness */
      }
      
      /* Responsive text adjustments */
      .overlay-text h1 { 
          font-size: 2rem; /* Smaller font size for mobile */
      }
      
      /* Larger font size for medium and large screens */
      @media (min-width: 768px) {
          .overlay-text h1 {
              font-size: 2rem;
          }
      } 
         
      @media (min-width: 992px) {
          .overlay-text h1 {
              font-size: 3rem;
          }
      }
      
      