/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;700&family=Oswald:wght@400;500;700&display=swap");

/* Base Styles */
:root {
  --primary: #5a189a;
  --primary-dark: #3c096c;
  --primary-light: #9d4edd;
  --secondary: #ff5400;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #0f0f1b;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius: 8px;
}
:root{
  --color-pri: #4D006E;
  --color-pri-light: rgba(77, 0, 110, .5);
  --text-dark: #212121;
}
/* @font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
} */
body.no-scroll {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* h1, h2, h3, h4, h5, h6, p{
  font-family: "Plus Jakarta Sans", sans-serif !important;
  
} */
body {
  /* font-family: "Oswald", "Plus Jakarta Sans","Poppins"; */
  font-family: "Plus Jakarta Sans", sans-serif !important;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}



.container {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 20px;
}
.header .container{
  margin-top: 0;
}
.container, .football-fan, .player-profile, .club-container, .scout-container {
  /* max-width: 95%; */
  padding-left: 60px;
  padding-right: 100px;
  margin-top: 160px ;
  
  
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

p {
  font-family: Plus Jakarta Sans;
font-weight: 400;
font-size: 18px;


}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
 
}

/* img {
  width: 100%;
  height: 65vh;
  display: block;
} */

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-white);
  border: none;
}

/* .btn-secondary:hover {
  background-color: #e64d00; */


.btn-text {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-text:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.btn-outline {
  background-color: white;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.btn-light {
  background-color: var(--text-white);
  color: var(--primary);
  border: none;
}

.btn-light:hover {
  background-color: var(--bg-light);
}
.icon{
border-radius: 100px;
color:var(--primary-light);
}


/* Hero Section */
.hero {
    min-height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.35) ;
    background-image: url("assets/scout-first.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* border-radius: 10px; */
    background-blend-mode: multiply;
    margin-top: 45px;
  
border-radius: 16px;

  }
  
  .hero-content {
    display: flex;
    align-items: left;
    justify-content: space-between;
  
    width: 260%;
    min-height: 50vh; 
    padding: 40px; 
    gap: 60px;
  }
  
  .hero-image {
    flex: 1;
    max-width: 100%;
    height: auto; 
    display: flex;
    justify-content: flex-start; 
    align-items: center;
  }
  
  .hero-image img {
    width: 100%;
    height: 80vh; 
    border-radius: 8px;
    object-fit: cover; 
    transform: scaleX(-1);
  }
  
  .hero-text {
    flex: 1;
    max-width: 73%;
    text-align: left;
    padding: 30px;
    
  
  }
  
  .hero-text h1 {
    color: white;
    font-family: Oswald;
    font-weight: 400;
    font-size: 64px;
    line-height: 80px;
  
    letter-spacing: 0%;
  }
  
  .hero-text p {
    font-size: 1rem;
    color: white;
    margin: 1rem 0;
  }
  
  .hero-buttons {
    display: flex;
    margin-top: 2rem;
    gap: 16px;
    
  }
  .hero btn-outline{
    background-color: white;
  }
  
  .Features1-content,.Features2-content {
    display: flex;
      align-items: center;
      gap: 40px;
      margin: 0 auto;
      flex-wrap: wrap;
      pointer-events: auto;
      padding: 0 40px !important;
  }
  
  
  
  .Features1-text,.Features2-text {
    flex: 1;
    
    /* width: 843px; */
  
  gap: 8px;
  
  }
  
  .Features1-image,.Features2-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    width: 600px;
    height: 640px;
    border-radius: 16px;
    display: flex;
    align-content: flex-start;
    justify-content: space-around;
    

   

  }
 
  .Features1-image img,.Features2-image img {
    width: 600px;
    height: 640px;
    border-radius: 16px;
    
    display: block;
  }
  
  .Features-badge {
    display: inline-block;
    padding: 5px 10px;
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: 
        linear-gradient(#FCF5FF, #FCF5FF),
        linear-gradient(92.02deg, #9400D4 0.52%, #EAB9FF 50.05%, #670094 99.57%);
    border-radius: 20px;
    color: #800080;
    font-size: 14px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .Features1 h1 ,.Features2 h1 {
    color: #4D006E ;
    font-family: Oswald;
    font-weight: 400;
    font-size: 48px;
    line-height: 64px;
    letter-spacing: 0%;
  }
  
  .hero p {
    color: #FFFFFF;
   
    margin-bottom: 20px;
    font-family: Plus Jakarta Sans;
  font-weight: 500px;
  font-size: 20px;
  
  letter-spacing: 0%;
  
  }
  
  .Features-btn {
    display: inline-block;
    background-color: #4D006E;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 40px;
  }

  @media (max-width: 1200px) {
 
    .hero-content{
      text-align: left;
    }
    .hero-text h1 {
      font-family: Oswald;
font-weight: 400;
font-size: 40px;
line-height: 54px;
letter-spacing: 0%;

     
    }

}

@media (max-width: 1024px) {
    .container {
      /* max-width: 91%; */
      margin-top: 20px;
    }
  .nav-menu{
    padding: 0px 20px;
  }
    .nav-menu ul {
      gap: 16px;
    }
  
    .hero-content {
      flex-direction: column; 
      /* padding: 2rem; */
      min-height: initial;
      margin-top: -140px; 
      max-width: 100%;
      
    }
    .Features1-content {
      flex-direction: column;
      margin-top: 0;
      
    }
    .Features2-content {
      flex-direction: column-reverse;
      margin-top: 0;
    }
    .Features1-text,.Features2-text{
     padding: 0 20px;
    }
  }

    @media (max-width: 768px) {
      .hero {
        
        padding: 2rem 1rem;
        background-position: center;
      }
    
      .hero-content {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
        width: 100%;
        padding: 0;
        margin-top: 10px;
      }
    
      .hero-image {
        order: 1;
        width: 100%;
      }
    
      .hero-image img {
        height: auto;
        max-height: 300px;
      }
    
      .hero-text {
        order: 2;
        max-width: 100%;
        text-align: left;
      }
    
      .hero-text h1 {
      font-family: Oswald;
font-weight: 400;
font-size: 40px;
line-height: 54px;
letter-spacing: 0%;

      }
    
     
    
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
    
      .btn,.btn-primary{
       
        margin-left: 0;

      }
 
    .Features2-content, .Features1-content{
        
        margin-top: 0;
        padding: 0 !important;
    }
   .Features1-image, .Features2-image{
      width: 350px;
      height: 373.3333435058594px;
      border-radius: 9.33px;
      
      }

  }   
  .container{
    flex-direction: column; 
    align-items: center; 
    width: 100%; 
    height: auto; 
    padding: 2px;
    margin-top: 100px;
  }
    
  

  @media (max-width: 470px) {
    .hero{
 width: 100%;
height: 700px;
top: 104px;
border-radius: 16px;
margin-top: 10px;

    }
    .hero-content{
      width: 390px;
height: 348px;
top: 104px;
border-radius: 16px;

    }
  .btn,.btn-primary{
 
    

  } 
  p{
    text-align: left;
    font-size: 16px;
    line-height: 24px;
  } 
  .Features1 h1, .Features2 h1 {
    font-size: 32px;
    line-height: 44px;
  }
  .Features1-image,.Features2-image{
          width: 350px;
        height: 373.3333435058594px;
        
  }
  }
 
  
  
