/* styles/styles.css */


body {
  font-family: Arial, sans-serif;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  background-color: #f0f0f0;
  line-height: 1.6;
}

/* EVO Sports Pro Header */
header {
  background-color: #0d0d0d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  height: 100px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
  overflow: visible;
}

/* Logo that rises above the header for a “badge” effect */
.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 85%;
  max-height: 100%;               /* fits header vertically */
  width: auto;
  background: transparent;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 0 12px rgba(240,192,64,0.6);     /* gold glow around logo */
  filter: drop-shadow(0 0 6px rgba(255,153,0,0.6)); /* subtle warm edge */
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translate(-50%, -55%) scale(1.03);  /* smooth hover lift */
}

/* Navigation styling */
nav {
  display: flex;
  gap: 35px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #f0c040; /* EVO gold hover */
}

/* Main Content */
main {
  padding: 20px;
}

section {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0 ,0 ,0.1);
  margin: 20px auto;
  max-width: 1100px;
}

.product-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: wrap;
}


@media (max-width:600px) {
  .product-gallery {
    flex-direction: column;
    align-items: center;
  }
}

form {
  background-color:#f9f9f9;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  margin: auto;
}
button{
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}
button:hover {
  background-color: #555;
  cursor:pointer;
}

/* Footer */
footer {
  background-color:#222;
  color:#ccc;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

footer a {
  color: #f0c040;
  text-decoration: none;
  margin: 0 8px;
  font-size: 20px;
}

footer a :hover {
  color: #e4405f;
  text-decoration: underline;
}

footer .fa-brands {
  margin: 0 10px;
  transition: 0.3s ease;
}

footer .fa-brands:hover {
  transform: scale(1.2);
}

.hero {
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: auto;
}

.hero-text h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}


.hero-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #f0c040;
  color: #222;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #ffd65a;
}


@media (max-width: 768px) {
  .hero {
    padding: 80px 15px;
  }

  .hero-text h2 {
    font-size: 2em;
  }

  .hero-text p {
    font-size: 1em;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.95em;
  }
}


/* ===========================
UPGRADED PRODUCT CARDS
   =========================== */
.product {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 380px; 
  max-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.product img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.product:hover img {
  transform: scale(1.1);
  filter: brightness(60%);
}

.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 15px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  height: 100%; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product:hover .product-info {
  transform: translateY(0);
}

.product-info h3 {
  margin-bottom: 8px;
  font-size: 1.2em;
  font-weight: bold;
}

.product-info p {
  font-size: 0.95em;
  margin-bottom: 10px;
}

.product-btn {
  display: inline-block;
  background-color: #f0c040;
  color: #222;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.product-btn i {
  margin-right: 6px;
  transition: transform 0.3s;
}

.product-btn:hover {
  background-color: #ffd65a;
  transform: scale(1.05);
}

.product-btn:hover i {
  transform: translateX(3px);
}

/* Responsive layout tweak */
@media (max-width: 768px) {
  .product-gallery {
    flex-direction: column;
    align-items: center;
  }

  .product {
    max-width: 90%;
  }
}


/* color tint */

.product:nth-child(1) .product-info {
  background: rgba(255, 165, 0, 0.65); /* warm gold/orange for EVO X1 */
}

.product:nth-child(2) .product-info {
  background: rgba(0, 72, 255, 0.65); /* deep blue for EVO Velocity */
}

.product:nth-child(3) .product-info {
  background: rgba(255, 69, 0, 0.65); /* vivid orange for EVO Ignite */
}

.product:nth-child(4) .product-info {
  background: rgba(50, 205, 50, 0.65); /* lime green for EVO Swift */
}


/* =======================================
  SPORTS MANAGEMENT HERO
======================================= */
.management-hero {
  position: relative;
  height: 90vh;
  background: url('../images/management-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.8em;
  color: #f0c040;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2em;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* =======================================
  JOIN THE MOVEMENT SECTION
======================================= */
.join-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  background: linear-gradient(to right, #111, #1a1a1a);
  color: white;
  gap: 50px;
}

.join-content {
  flex: 1;
}

.join-content h2 {
  color: #f0c040;
  font-size: 2.2em;
  margin-bottom: 15px;
}

.join-content p {
  color: #ccc;
  margin-bottom: 25px;
  font-size: 1.1em;
  line-height: 1.6;
}

.join-form input,
.join-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  background-color: #222;
  color: white;
  outline: none;
}

.join-form input::placeholder,
.join-form textarea::placeholder {
  color: #aaa;
}

.join-form input:focus,
.join-form textarea:focus {
  border: 1px solid #f0c040;
}

.join-form button {
  background-color: #f0c040;
  color: #111;
  border: none;
  padding: 12px 25px;
  font-size: 1.1em;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.join-form button:hover {
  background-color: #ffd65a;
}

.join-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.join-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(240,192,64,0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .join-section {
    flex-direction: column;
    text-align: center;
  }
  .join-image img {
    max-width: 90%;
  }
}
