@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
 
  font-family: "Poppins", sans-serif;
  background-color: #000;
  scroll-snap-type: mandatory;
}
:root {
  --primary-color:  #D41700;
  --secondary-color-dark: yellow;
  --text-light: hsl(220, 9%, 13%);
  --white: #fff;
  --white2: #cccccc;
  --white3: #cccccc91;
  --black: #000;
  --black2: #707070;

}

.section__container {
  margin: auto;
  padding: 5rem 1rem;
}
.section__header {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  color: var(--white);
}
.section__subheader {
  max-width: 600px;
  margin: auto;
  text-align: center;
  color: var(--white);
}

/*primary button*/
.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--black);
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;;
}
.btn:hover {
  background: none; /* Red */
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

img {
  width: 100%;
  display: flex;
}
a {
  text-decoration: none;
}

.bg__blur {
  position: absolute;
  box-shadow: 0 0 1000px 50px var(--primary-color);
  z-index: -1;
}

/*NAVIGATION*/
.about-us-header {
  background-image: url("./assets/member.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 600px;
}

nav{
  position: relative;
  isolation: isolate;
  top: 0;
  width: 100%;
  z-index: 9;
}
nav {
  margin: auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  max-width: 120px;
}
.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.link a {
  position: relative;
  padding-bottom: 0.75rem;
  color: var(--white);
}
.link a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: var(--primary-color);
  transition: 0.3s;
}
.link a:hover::after {
  width: 50%;
}


/*SIDE MENU*/
.side-menu {
  color: var(--white);
  position: fixed;
  top: 0;
  left: -400px; 
  width: 300px;
  height: 100%;
  background: var(--black);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
  transition: left 0.3s ease;
  z-index: 2000;
  overflow-y: auto;
  padding: 20px;
}
/*close button styling*/
.close-menu-btn, .menu-icon{
  z-index: 100;
  background: none;
  color: var(--primary-color);
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  font-size: 24px;
  rotate: 90;
}
.close-menu-btn  {
  top: 2rem;
  right: 2rem;
  position: absolute;
}
.side-menu-logo {
  text-align: center;
  background: none;
  margin-bottom: 30px;
}
.side-menu-logo h1{
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bolder;
  font-size: x-large;
  margin-bottom: -5px;
}
.tagline {
  color: var(--primary-color);
  position: center;
  font-size: large;
  font-weight: bolder;
}
.menu-section {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  background-color: none;
  background: none;
}
.menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.3s;
}
.menu-link:hover {
  color: var(--white2);
  text-shadow: gray;
}
.menu-link span {
  display: flex;
  align-items: center;
  font-size: 20x;
  font-weight: bold;
}
.hover-description {
  display: none;
  font-size: 12px;
  color: var(--white2);
}
.menu-link:hover .hover-description {
  color: var(--white2);
  display: block;
  margin-left: 5px;
}
/* Hover Effects */
.menu-link:hover {
  color: var(--primary-color); /* Copper background on hover */
  margin-left: 10px;
}
@media (max-width: 700px){
  .colume {
      flex-basis: 100%;
  }
  .colume:nth-child(2) .colume:nth-child(3){
      flex-basis: 100%;
  }
}


/* ==========================================================================
   Hero Banner
   ========================================================================== */
   .header__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    position: relative;
  }
  
  .header__content {
    margin-left: 10px;
  }
  
  .header__content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .header__content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
  }
  
  .header__content h1 span {
    font-size: 6rem;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--white);
  }
  
  .header__content p {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 2rem;
  }
  
  .header__image {
    position: relative;
  }
  
  .header__image::before {
    content: "o";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40rem;
    font-weight: 400;
    line-height: 20rem;
    color: var(--secondary-color);
    opacity: 0.1;
    z-index: -1;
  }
  
  .header__image img {
    max-width: 400px;
    margin: auto;
  }


/* ==========================================================================
   Testimonial Section
   ========================================================================== */
   .section-container {
    padding: 5rem 1rem;
    margin-top: 100px;
    min-height: 70vh;
  }
  
  .testimonial-section {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .carousel-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .cards-container {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
  }
  
  .testimonial-card {
    width: 500px;
    height: 600px;
    background-color: var(--black);
    border-radius: 10px;
    box-shadow: 2px 4px 12px rgba(173, 173, 173, 0.3);
    padding: 20px;
    transform: scale(0.8);
    opacity: 0.5;
    transition: transform 0.3s, opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  
  .testimonial-card.active {
    transform: scale(1);
    opacity: 1;
    z-index: 1;
  }
  
  .testimonial-card img {
    width: 80%;
    height: 300px;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  .testimonial-text {
    font-size: 0.875rem;
    color: var(--white);
    margin-bottom: 15px;
  }
  
  .testimonial-author {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
  }
  
  .author-email {
    display: none;
    font-size: 0.875rem;
    color: var(--gray-light);
    margin-top: 1px;
  }
  
  .carousel-button {
    position: absolute;
    background-color: var(--primary-color);
    border: none;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
  }
  
  .carousel-button:hover {
    background-color: var(--black);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  /* Responsive adjustments for Testimonial Cards */
  @media screen and (max-width: 768px) {
    .testimonial-card {
      width: 250px;
      height: 350px;
    }
    .carousel-button {
      font-size: 18px;
      padding: 8px;
    }
  }
  
  

/* ==========================================================================
   Blog Showcase
   ========================================================================== */
.blog-showcase {
  padding: 50px 20px;
  background-color: var(--gray-light);
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 30px;
}

.blog-posts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.blog-post {
  width: 300px;
  height: 400px;
  background: #333;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.blog-post:hover {
  transform: translateY(-10px);
}

.post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-title {
  font-size: 1rem;
  color: var(--white);
  margin: 10px 0;
}

.post-content {
  color: var(--white);
}

.read-more {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  transition: text-decoration 0.3s;
}

.read-more:hover {
  text-decoration: underline;
}

.blog-btn {
  margin-top: 20px;
}

/* Responsive Blog Posts */
@media (max-width: 768px) {
  .blog-post {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .blog-post {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .blog-post {
    width: 100%;
  }
}

/* Hide primary nav links on medium screens */
@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
}

/* Adjust side menu width and blog post sizing on small screens */
@media (max-width: 768px) {
  .side-menu {
    width: 80%;
    left: -80%; /* Keeps it hidden off-screen */
  }
  .blog-post {
    width: 45%;
  }
}

/* Stack blog posts on very small screens */
@media (max-width: 480px) {
  .blog-post {
    width: 100%;
  }
}


/*PAGE FOOTER*/
.footer__container {
border-top: 1px solid var(--white3);
position: relative;
display: grid;
grid-template-columns: 300px repeat(3, 1fr);
gap: 2rem;
}

.footer__blur {
  bottom: 0;
  right: 0;
}

.footer__logo {
  max-width: 100px;
  margin-bottom: 2rem;
}

.footer__col p {
  margin-bottom: 2rem;
  color: var(--white);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  padding: 5px 10px;
  font-size: 1.25rem;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100%;
  transition: 0.3s;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.footer__col > a {
  display: block;
  margin-bottom: 1rem;
  color: var(--white);
  transition: 0.3s;
}

.footer__col > a:hover {
  color: var(--primary-color);
}

.footer__bar {
  margin: auto;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--white);
}

@media (width < 900px) {
  .nav__links {
    display: none;
  }

  .header__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .header__image {
    grid-area: 1/1/2/2;
  }

  .footer__container {
    grid-template-columns: 1fr 150px;
  }

  .footer__bar {
    text-align: center;
  }

  .detail p {
    margin-bottom:3px
  }

}


/* 
==========================================================================
Simple Banner
========================================================================== */
.banner-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
  
.simple-banner {
  background-image: url('./assets/SignUp.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  height: 300px auto;
  max-width: 90%;
  margin: 50px auto;
  padding: 1.6rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
  
.banner-info {
  text-align: center;
  padding: 20px;
  color: var(--white);
}
  
.banner-info h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
  
.banner-info p {
  font-size: 24px;
  margin-bottom: 100px;
 }
  








/*
==============
ABOUT US
==============
*/

/* Action buttons (e.g., cart, fav, sign up) */
.action .btn {
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  border: none;
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s;
}

.action .btn:hover {
  background: var(--secondary-color);
}

/* ==========================================================================
   Sections (Mission, Vision, Story, Why)
   ========================================================================== */
.section {
  padding: 4rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--black);
}

.section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section p {
  font-size: 1.1rem;
  color: var(--white);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .about-section {
    padding: 20px 15px;
  }
  .about-header {
    font-size: 1.5rem;
  }
}
/* Responsive Styling */
@media (max-width: 768px) {
  .about-section {
    padding: 20px 15px;
  }
  .about-header {
    font-size: 1.5rem;
  }
}



/* Basic modal overlay */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}

/* Modal content box */
.modal-content {
  background: var(--white);
  margin: 10% auto;
  padding: 1.5rem;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}

/* Close button (the X) */
.close-btn {
  color: var(--black);
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Tab container for switching between login and signup */
.tab-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.tab {
  background: var(--gray-light);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.tab.active,
.tab:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Form styles (adjust as needed) */
.form-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-container input {
  padding: 0.5rem;
  font-size: 1rem;
}

.form-container .btn {
  align-self: flex-end;
}





