body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: black;
    color: #F4EFE9;
    overflow: hidden; /* locks both x and y */


  }
  .text-center{
    margin-top: 10px;
  }
  .sections-container {
    display: flex;
    flex-direction: row;
    padding-top: 70px;
    width: 400vw;
    height: 100vh;
    transition: transform 0.8s ease-in-out;
    overflow: hidden; /* horizontal only */

  }
  
  .section {
    width: 100vw;
    height: 100vh;
    padding: 100px 20px 60px;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    
  }
  
  
  /* Split background */
  .split-section {
    background: linear-gradient(to right, white 50%, black 50%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Split text layout */
  .split-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  
  .left-text {
    color: black;
  }
  
  .right-text {
    color: #FFC857;
  }
  
  .split-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .split-content .btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: black;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px transparent;
  }
  
  .split-content .btn:hover {
    background-color: #FFC857;
    color: #000;
    box-shadow: 0 0 15px #800020a8;
  }
  
  /* Circles */
  .moving-circle {
    position:fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;

  }
  
  .white-circle {
    background-color: black;
    left: 10%;
    top: 30%;
  }
  
  .black-circle {
    background-color: white;
    right: 10%;
    top: 30%;
  }
  .about-bg {
    background-image: url('img/body-bg-1.webp'); /* replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
  }
  
  .about-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.1); /* dark overlay for readability */
    z-index: -1;
  }
  
  /* Cards & Art Frame */
  .art-frame, .gallery-frame {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #800020;
    box-shadow: 0 0 10px rgba(0, 174, 255, 0.8);
  }
  
  .art-frame img, .gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Social icons */
  .social-icon {
    color: #F4EFE9;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .social-icon:hover {
    color: #FFC857;
    transform: scale(1.2);
  }
  
  /* Navbar */
  .navbar {
    background-color: black;
    border-bottom: 2px solid #800020;
    z-index: 1000;
  }
  
  .navbar-brand {
    font-weight: bold;
    font-size: 24px;
    color: #FFC857 !important;
  }
  
  .navbar-nav .nav-link {
    font-size: 18px;
    color: #F4EFE9 !important;
  }
  .gallery-frame img {
    transition: transform 0.3s ease;
  }
  
  .gallery-frame:hover img {
    transform: scale(1.05);
  }
  #scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #FFC857;
    z-index: 9999;
  }
  h1, h2 {
    font-weight: 700; /* bold headlines */
  }
  
  h3, h4 {
    font-weight: 600; /* semi-bold subheadings */
  }
  
  p {
    font-weight: 300; /* light paragraphs */
    font-size: 1rem;
    line-height: 1.6;
  }
  .navbar-nav .nav-link:hover,
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  color: #FFC857 !important;
  text-shadow: 0 0 5px #ffc857a9;
  transition: 0.3s ease;
}
.gradient-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(255,255,255,0.1));
  z-index: 0;
}
.gallery-btn {
  background-color: #FFC857; /* Bootstrap's secondary color */
  color: black;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.gallery-btn:hover {
  background-color: #5a6268;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.btn-black {
  background-color: #000;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: #800020 2px solid;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* white glow */

}

.btn-black:hover {
  background-color: #FFC857;
  color: black;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}




  
  /* Responsive */
  @media (max-width: 768px) {
    html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden !important;
      overflow-y: auto !important;
      height: auto !important;
      width: 100% !important;
      background-image: url('img/mob-bg.PNG'); }
  
    .sections-container {
      display: block ;
      width: 100% ;
      height: auto ;
      transform: none ;
      overflow: visible ;
      background-image: url('img/mob-bg.PNG'); 
    }
  
    .section {
      width: 100% ;
      height: auto ;
      min-height: 100vh;
      padding: 80px 20px ;
      box-sizing: border-box ;
      overflow: visible ;
    }
  
    .d-flex.justify-content-center {
      flex-direction: column ;
      align-items: center;
      flex-wrap: wrap;
    }
  
    .w-50, .art-frame, 
    .gallery-frame, 
    .form-control, .btn, form {
      width: 100% ;
      box-sizing: border-box;
    }
  
    .border-start {
      border-left: none ;
      border-top: 2px solid #800020;
      margin-top: 30px;
      padding-top: 20px;
    }
  
    .moving-circle {
      display: none;
    }
  
    .split-section {
      background: black ;
      display: flex ;
      flex-direction: column ;
      align-items: center ;
      justify-content: center t;
      padding: 60px 15px ;
    }
  
    .split-content {
      width: 100% ;
      max-width: 100% ;
      padding: 0 10px;
      text-align: center ;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .left-text, .right-text {
      color: #F4EFE9;
    }
  
    .split-content h1 {
    font-size: 1.8rem ;
    line-height: 1.4;
    }
     
    .left-text,
    .right-text {
      color: #F4EFE9 ;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
  }
  