@import url(https://fonts.googleapis.com/css?family=Signika+Negative:400,700);

body{
    cursor: url('Logos/Old_English_D_Cursor_Tigers.png'), auto;
  }

/* Navbar container */
.signature-container {
    background-repeat: no-repeat;
    background-image: url('Logos/BG_Image_ANIMATED_STARS.gif'); /* Background image for the signature section */
    background-size: cover; /* Ensure the image covers the entire section */
    background-position: center; /* Center the image */
    display: flex;
    justify-content: center;
    margin-bottom: 10px; /* Space between signature and navbar */
    box-shadow: 0 10px 0 chartreuse; /* Adds a chartreuse-colored shadow to simulate margin color */
    border-top: chartreuse 10px solid;
    padding-top: 20px;
    padding-bottom: 20px; /* Adds a chartreuse-colored shadow to simulate margin color */
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-135deg, #0f2027, #141564, #1987f4); /* Subtle gradient background */
    padding: 15px;
    font-family: 'Signika Negative', sans-serif;
    margin-bottom: 10px; /* Space between signature and navbar */
    box-shadow: 0 10px 0 chartreuse; /* Adds a chartreuse-colored shadow to simulate margin color */
}

a {
    font-family: 'Signika Negative', sans-serif;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack items vertically */
        padding: 10px;
    }

    .navbar a {
        font-size: 10px; /* Reduce font size for smaller screens */
        margin: 5px 0; /* Add spacing between stacked links */
        padding: 10px;
    }
}

/* Even for ultra-small screens */
@media (max-width: 576px) {
    .navbar {
        justify-content: flex-start; /* Align items to the left (optional) */
    }

    .navbar a {
        font-size: 12px; /* Further reduce font size */
    }
}

.navbar a {
    margin: 0 12px;
    padding: 8px 16px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease-in-out;
    overflow: hidden;
}

/* Animated Underline */
.navbar a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: yellow;
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
}

/* Hover Effects */
.navbar a:hover {
    color: red;
}

.navbar a:hover::before {
    width: 100%;
    left: 0;
}

/* Subtle Scaling Effect */
.navbar a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.8);
    border-radius: 8px;
    transition: opacity 0.4s, transform 0.4s;
}

/* Hover Glow */
.navbar a:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Smooth Animation when Link is Clicked */
.navbar a:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}
/* Navbar container */

* {
    margin: 0;
    padding: 0;
  }
  
  .carousel-container {
    width: 100vw; /* Full viewport width */
    overflow: hidden; /* Hide images outside the container */
}

.carousel_items {
    display: flex; /* Arrange images in a single row */
    flex-wrap: nowrap; /* Prevent wrapping to the next line */
    transition: transform 1.5s ease-in-out; /* Smooth sliding effect */
    width: calc(100vw * 5); /* 100vw multiplied by the number of items (5 in this case) */
}

.carousel_item {
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    background-repeat: no-repeat;
    background-size: cover; /* Image covers its container */
    background-position: center; /* Center the image */
}

/* For medium screens (e.g., tablets) */
@media (max-width: 992px) {
    .carousel_item {
        height: 70vh; /* Reduce height for better fit */
        background-size: contain; /* Adjust to maintain aspect ratio */
    }
}

/* For small screens (e.g., mobile phones) */
@media (max-width: 576px) {
    .carousel_item {
        height: 50vh; /* Further reduce height for small screens */
        background-size: contain; /* Ensure the image is scaled down */
        background-position: center;
    }
}

.carousel_item img {
    position: absolute;
    width: 100%; /* Adjust to the container width */
    height: auto; /* Maintain the original aspect ratio */
    object-fit: cover; /* Adjust how the image is fitted within the container */
}
  
  .item1 {
    background-image: url("football_assets/CHASE_WINO_SLIDER.png");}
  .item2 {
    background-image: url("football_assets/AMONRA_SLIDER_1.png");  }
  .item3 {
    background-image: url("football_assets/AMONRA_SLIDER_2.png");  }
  .item4 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6042.JPG");  }
  .item5 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6131.JPG");  }


/* CSS for the card boxes section */
/* CSS for the card boxes section */
/* CSS for the card boxes section */


.card-boxes {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    background-image: url('HomepageAssets/Holofoil_ANIMATED.gif');
    border-bottom: chartreuse 10px solid; 
    border-top: chartreuse 10px solid;
}

.card-boxes h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-item {
    background-color: #f9f9f9;
    border: 3px solid chartreuse;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 24px 8px gold, 0 0 40px 16px chartreuse;
    border-color: gold;
}

/* Sparkle effect only on first hover, not continuous, and card returns to unhovered state after animation */
.card-item::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(255,255,224,0.6) 0%, rgba(255,255,224,0.1) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.card-item.sparkle::after {
    opacity: 1;
    animation: sparkle 0.8s linear;
}

@keyframes sparkle {
    0% {
        opacity: 0.7;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 0;
        transform: scale(1.3) rotate(-10deg);
    }
}

/* Card returns to unhovered state after animation ends, even if still hovered.
   This requires JS to remove the .sparkle class and the :hover effect after animation. */
.card-item:not(.sparkle):hover {
    transform: translateY(-5px);
    box-shadow: 0 0 24px 8px gold, 0 0 40px 16px chartreuse;
    border-color: gold;
}
.card-item.sparkle {
    /* Remove hover effect while sparkling */
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    border-color: chartreuse !important;
}


.card-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.kick-game { position: relative; overflow: hidden; padding: 34px clamp(18px,5vw,72px) 42px; color: #fff; font-family: 'Signika Negative', sans-serif; background: radial-gradient(circle at 50% -20%,#1d58a5 0,#071329 50%,#030815 100%); border-block: 10px solid chartreuse; }
.stadium-lights { position:absolute; inset:0; pointer-events:none; opacity:.28; background: radial-gradient(ellipse at 8% 5%,#fff 0,transparent 12%),radial-gradient(ellipse at 92% 5%,#fff 0,transparent 12%); }
.game-hud { position:relative; z-index:2; max-width:1100px; margin:auto; display:flex; justify-content:space-between; align-items:end; gap:24px; }
.game-eyebrow { color:chartreuse; font-size:.78rem; letter-spacing:.22em; font-weight:700; }
.game-hud h2 { margin:4px 0; font-size:clamp(1.8rem,4vw,3.6rem); text-transform:uppercase; font-style:italic; }
#game-message { color:#b9c8df; }
.game-stats { display:flex; gap:10px; }
.game-stats span { min-width:88px; padding:10px 14px; text-align:center; border:1px solid #334665; border-radius:8px; background:#071329cc; }
.game-stats small,.game-stats strong { display:block; }.game-stats small { color:#91a3bc; font-size:.65rem; letter-spacing:.12em; }.game-stats strong { margin-top:3px; color:chartreuse; font-size:1.1rem; }
.field-scene { position:relative; max-width:1100px; height:330px; margin:24px auto 20px; overflow:hidden; border:2px solid #52627a; border-radius:14px; perspective:600px; background:linear-gradient(#09142b 0 36%,#276d32 36% 100%); box-shadow:0 24px 50px #0008,inset 0 0 40px #0008; }
.crowd { height:36%; background-color:#071020; background-image:radial-gradient(circle,#d7e0ed 1px,transparent 2px); background-size:10px 9px; opacity:.65; }
.field-lines { position:absolute; inset:36% -12% -20%; transform:rotateX(58deg); transform-origin:top; background:repeating-linear-gradient(0deg,transparent 0 48px,#ffffffaa 49px 52px),linear-gradient(90deg,transparent 49.7%,#fff 49.7% 50.3%,transparent 50.3%); }
.goalpost { position:absolute; z-index:2; left:50%; top:50px; width:210px; height:195px; transform:translateX(-50%); }.goalpost span { position:absolute; display:block; background:#f6dc27; box-shadow:0 0 8px #fff85c; }.goalpost .upright { bottom:74px; width:9px; height:120px; }.goalpost .left{left:0}.goalpost .right{right:0}.goalpost .crossbar{left:0;bottom:70px;width:100%;height:9px}.goalpost .post{left:calc(50% - 5px);bottom:0;width:10px;height:74px}
.kick-ball { position:absolute; z-index:4; left:calc(50% - 23px); bottom:23px; width:46px; height:28px; border-radius:50%; background:#783819; border:2px solid #d89259; transform:rotate(-15deg); transition:none; }.kick-ball span { position:absolute; width:18px; height:3px; left:12px; top:11px; background:#fff; }.kick-ball span::before,.kick-ball span::after { content:""; position:absolute; top:-4px; width:2px; height:11px; background:#fff; }.kick-ball span::before{left:4px}.kick-ball span::after{right:4px}
.kick-ball.is-good { animation:kickGood .85s ease-in forwards; }.kick-ball.is-left { animation:kickLeft .85s ease-in forwards; }.kick-ball.is-right { animation:kickRight .85s ease-in forwards; }
@keyframes kickGood { to { left:calc(50% - 8px); bottom:225px; transform:scale(.35) rotate(500deg); } } @keyframes kickLeft { to { left:20%; bottom:205px; transform:scale(.35) rotate(500deg); } } @keyframes kickRight { to { left:80%; bottom:205px; transform:scale(.35) rotate(500deg); } }
.kick-result { position:absolute; z-index:8; inset:42% 0 auto; text-align:center; font-size:clamp(2rem,6vw,5rem); font-weight:700; font-style:italic; opacity:0; transform:scale(.5); text-shadow:0 5px 20px #000; }.kick-result.good,.kick-result.miss { animation:resultPop .8s ease forwards; }.kick-result.good{color:chartreuse}.kick-result.miss{color:#ff4d4d}@keyframes resultPop{50%,100%{opacity:1;transform:scale(1)}}
.kick-controls { position:relative; z-index:2; max-width:900px; margin:auto; display:grid; grid-template-columns:1fr 1fr auto; align-items:end; gap:18px; }.meter-label { display:flex; justify-content:space-between; margin-bottom:7px; color:#aebbd0; font-size:.75rem; letter-spacing:.08em; }.meter-label span:first-child{color:#fff;font-weight:bold}.game-meter{position:relative;height:20px;overflow:hidden;border:2px solid #4e607d;border-radius:20px;background:linear-gradient(90deg,#c42d35,#e7a828 35%,#62cf43 44% 56%,#e7a828 65%,#c42d35)}.power-meter{background:linear-gradient(90deg,#c42d35,#e7a828 46%,#62cf43 63% 82%,#c42d35)}.meter-marker{position:absolute;top:-5px;left:0;width:7px;height:30px;background:#fff;box-shadow:0 0 10px #fff;animation:meterMove 1.25s ease-in-out infinite alternate}.power-meter .meter-marker{animation-duration:1s}.meter-marker.paused{animation-play-state:paused}@keyframes meterMove{to{left:calc(100% - 7px)}}
.kick-action { min-width:140px; padding:14px 22px; border:0; border-radius:7px; color:#07111f; background:chartreuse; font:800 .9rem 'Signika Negative',sans-serif; letter-spacing:.08em; cursor:pointer; box-shadow:0 5px 0 #55a400; transition:.15s; }.kick-action:hover{filter:brightness(1.12);transform:translateY(-2px)}.kick-action:active{transform:translateY(3px);box-shadow:0 2px 0 #55a400}.kick-action:disabled{opacity:.55;cursor:wait}
.game-finale { position:relative; z-index:5; max-width:720px; margin:28px auto 0; padding:24px; display:flex; align-items:center; justify-content:center; gap:32px; border:1px solid #52627a; border-radius:14px; background:#071329ee; box-shadow:0 0 40px #7fff0055; }.game-finale[hidden]{display:none}.game-finale h3{margin:3px 0;font-size:clamp(1.8rem,4vw,3rem);color:#fff}.game-finale p:not(.game-eyebrow){margin:0 0 18px;color:#b9c8df}.reward-card{width:150px;padding:8px;border:3px solid chartreuse;border-radius:10px;background:#fff;animation:cardReveal .8s ease both}.reward-card img{display:block;width:100%;height:auto}@keyframes cardReveal{from{opacity:0;transform:rotateY(90deg) scale(.7)}to{opacity:1;transform:none}}
@media(max-width:760px){.game-hud{align-items:start;flex-direction:column}.game-stats{width:100%}.game-stats span{min-width:0;flex:1}.field-scene{height:280px}.goalpost{transform:translateX(-50%) scale(.82);transform-origin:bottom}.kick-controls{grid-template-columns:1fr}.kick-action{width:100%}.game-finale{flex-direction:column;text-align:center}.reward-card{width:120px}}

.center-container {
    display: flex; /* Enables Flexbox */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    background-color: #f4f4f4; /* Optional background for clarity */
    border-bottom: 10px solid chartreuse;
    margin: 0;
    padding: 0;
  }

  body, html {
    margin: 0; /* Removes default body margin */
    padding: 0; /* Removes default body padding */
}

  @keyframes glowMove {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(10px);
    }
    100% {
      transform: translateX(0);
    }
  }

  @keyframes colorPulse {
    0% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
    25% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
    50% {
      text-shadow: 0 0 20px chartreuse, 0 0 30px #ff4d4d, 0 0 40px #ff4d4d,
        0 0 50px #ff4d4d;
    }
    75% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
    100% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
  }

/* LISTING ITEMS */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 100px; /* Increased left and right padding */
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.gallery-item {
    flex: 1 0 15%; /* Adjust to allow flexibility */
    text-align: center;
    margin-bottom: 10px; /* Reduced margin-bottom */
    max-width: 200px; /* Ensure images don't get too large */
}
.gallery-item img {
    width: 200px; /* Set image width to 200px */
    height: 200px; /* Set image height to 200px */
    object-fit: cover; /* Ensure images cover the container without stretching */
    display: block; /* Ensures the image behaves as a block element */
    margin-bottom: 20px; /* Adds space between the image and the description */
}
.description {
    margin-top: 5px; /* Reduced margin-top */
    font-family: Arial, sans-serif; /* Clean font */
    font-weight: bold; /* Bold text */
    color: chartreuse;
}

.price {
    color: chartreuse; /* Green text for price */
    font-weight: bold;
    margin-top: 5px;
    font-size: 1.5rem;
}

.description, .price {
    margin-top: 0;
    margin-bottom: 10px; /* Adjusts spacing between descriptions and prices */
}

@media (max-width: 1200px) {
    .gallery-item {
        flex: 1 0 25%; /* Adjust width to fit 4 items in a row */
    }
}
@media (max-width: 992px) {
    .gallery-item {
        flex: 1 0 30%; /* Adjust width to fit 3 items in a row */
    }
}
@media (max-width: 769px) {
    .gallery-item {
        flex: 1 0 45%; /* Adjust width to fit 2 items in a row */
    }
}
@media (max-width: 576px) {
    .gallery-item {
        flex: 1 0 100%; /* Make it full-width on very small screens */
    }
}

.popOutHover { 
    transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out; /* Smooth transition for the scaling and shadow */ 
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 1); /* Larger and darker initial shadow */ 
} 

.popOutHover:hover { 
    transform: scale(1.1); /* Pop out effect on hover */ 
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 1); /* Larger and darker shadow on hover */ 
}

#siteseal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 18px auto 0;
}

