  /* hero */
/* Import Nunito Font */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

/* Global Font Styling */
body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Prevent horizontal scrolling caused by overflow */
html, body {
  overflow-x: hidden;
}



/* Navbar Styling */
header {
    border-bottom: 2px solid #f0f0f0;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .nav-link {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 10px;
    color: #333;
    transition: color 0.3s ease-in-out;
  }
  
  .nav-link:hover {
    color: #007bff;
  }
  
  .btn-orange {
    background-color: orange;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .btn-orange:hover {
    background-color: #e67e22;
  }
  
  .navbar-brand img {
    display: block;
   
  }
/* Hero Section */
.hero-section {
  background: url('../images/with-mom.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-section .content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ff6600;
}

.hero-section p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.btn-hero {
  background-color: #ff6600;
  color: white;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.btn-hero:hover {
  transform: scale(1.1);
  background-color: #e65c00;
}

/* Story Section */
.story-section {
  padding: 60px 20px;
  background-color: #000;
}

.story-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 40px;
}

.story-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
}

.highlight {
  color: #ff6600;
  font-weight: bold;
}

.story-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Carousel Section */
.carousel-section {
  padding: 50px 20px;
  background-color: #1a1a1a;
  text-align: center;
}

.carousel-section h2 {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 30px;
}

/* Carousel Media Layout */
.carousel-item .row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.square-item {
  width: 150px; /* Square size */
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.square-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.7);
}

/* Lightbox (Fullscreen View) */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img,
.lightbox video {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #ff6600;
  cursor: pointer;
  font-weight: bold;
  z-index: 1100;
}

.lightbox .close:hover {
  color: white;
}

/* Footer */
footer {
  /* margin-top: 100px; */
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #ff6600;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-social i {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #ff6600;
  transition: color 0.3s ease-in-out;
}

.footer-social i:hover {
  color: white;
}