@import url('https://your-font-provider.com/path-to-tt-rounds-neue.css');
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
.mulish {
  font-family: 'Mulish';
  font-optical-sizing: auto;
  font-weight: 700; /* Change this to desired weight */
  font-style: normal;
}
.playfair-display {
  font-family: 'Playfair Display', serif;
  font-optical-sizing: auto;
  font-weight: 900; /* Change this to the desired weight */
  font-style: normal;
}
@font-face {
  font-family: 'News706BT';
  src: url('../assets/fonts/News706BT.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   /* background-color: #d8d8c3; */
  }
/* ABOUT PAGE CSS STARTS HERE */
/* AboutSection.css */

/* Font import would typically go in your main CSS or be handled by a package */
/* 
@font-face {
  font-family: 'News706BT';
  src: url('../fonts/News706BT.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
*/
/* AboutSection.css for horizontal scrolling */

/* Add your font import here if needed */

.aboutsec1-main-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.aboutsec1-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
  text-align: center;
}

.aboutsec1-logo {
  font-family: 'News706BT', serif; /* Replace with fallback if needed */
  color: #c22a21;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.aboutsec1-tagline {
  font-size: 1rem;
  margin-top: -10px;
}

.aboutsec1-horizontal-container {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  padding-top: 120px; /* Space for fixed header */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.aboutsec1-horizontal-container::-webkit-scrollbar {
  display: none;
}

.aboutsec1-section {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  padding: 0 40px;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutsec1-section.active {
  opacity: 1;
}

.aboutsec1-section:not(.active) {
  opacity: 0.7;
}

.aboutsec1-content-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.aboutsec1-image-container {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.aboutsec1-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.aboutsec1-section.active .aboutsec1-image {
  transform: scale(1);
}

.aboutsec1-section:not(.active) .aboutsec1-image {
  transform: scale(0.95);
}

.aboutsec1-text-container {
  flex: 1;
  max-width: 50%;
  padding: 0 20px;
}

.aboutsec1-heading {
  font-size: 2rem;
  margin-bottom: 20px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.aboutsec1-section.active .aboutsec1-heading {
  opacity: 1;
  transform: translateY(0);
}

.aboutsec1-section:not(.active) .aboutsec1-heading {
  opacity: 0.7;
  transform: translateY(10px);
}

.aboutsec1-heading-red {
  color: #c22a21;
  font-weight: bold;
}

.aboutsec1-heading-black {
  font-weight: bold;
  font-family: play;
}

.aboutsec1-paragraph {
  margin-bottom: 15px;
  line-height: 1.6;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition-delay: 0.1s;
}

.aboutsec1-section.active .aboutsec1-paragraph {
  opacity: 1;
  transform: translateY(0);
}

.aboutsec1-section:not(.active) .aboutsec1-paragraph {
  opacity: 0;
  transform: translateY(20px);
}

.aboutsec1-section.active .aboutsec1-paragraph:nth-child(2) {
  transition-delay: 0.2s;
}

.aboutsec1-section.active .aboutsec1-paragraph:nth-child(3) {
  transition-delay: 0.3s;
}

.aboutsec1-navigation {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
}

.aboutsec1-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(194, 42, 33, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.aboutsec1-nav-dot.active {
  background-color: rgba(194, 42, 33, 1);
  transform: scale(1.2);
}

.aboutsec1-nav-dot:hover {
  transform: scale(1.3);
}

.aboutsec1-scroll-indicator {
  position: fixed;
  bottom: 30px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777;
  font-size: 0.9rem;
  z-index: 100;
}

.aboutsec1-scroll-arrow {
  animation: bounceRight 2s infinite;
  font-size: 1.5rem;
}

@keyframes bounceRight {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(5px);
  }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .aboutsec1-content-wrapper {
    gap: 20px;
    padding-top: 20px;
  }
  
  .aboutsec1-image-container,
  .aboutsec1-text-container {
    max-width: 100%;
  }
  
  .aboutsec1-heading {
    font-size: 1.5rem;
  }
  
  .aboutsec1-logo {
    font-size: 2.5rem;
  }
  
  .aboutsec1-section {
    padding: 0 20px;
  }
  
  .aboutsec1-horizontal-container {
    padding-top: 100px;
  }
}
@media (max-width:425px) {

   .aboutsec1-content-wrapper {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }
  .aboutsec1-image-container, .aboutsec1-text-container {
    max-width: 100%;
    font-size: 12px;
}
.aboutsec1-image {
  width: 65%;
  margin-left: 15vw;
}
.aboutsec1-image-container{
  box-shadow: unset;
}
.aboutsec1-header{
  padding: unset;
}
.aboutsec1-text-container {
  padding: 0 60px;
}
.aboutsec1-heading {
  font-size: 20px;
}
}
@media (max-width:320px) {
  .aboutsec1-text-container {
    padding: 0 21px;
}
.aboutsec1-logo {
  font-size: 1.5rem;
}
.aboutsec1-content-wrapper {
  flex-direction: column;
  gap: 20px;
  margin-bottom: 125px;
}
  
}