CSS
:root {
    --primary: #FF6B00; /* Basketball Orange */
    --dark: #1a1a1a;
    --light: #f4f4f4;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--light);
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    background: rgba(0,0,0,0.8);
    position: sticky;
    top: 0;
}

nav .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary);
}

nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 20px; }
nav ul li a { color: white; text-decoration: none; font-weight: bold; }

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/gaston.png');
    background-size: cover;
}

h1 { font-family: 'Bebas Neue', cursive; font-size: 5rem; margin: 0; }
.highlight { color: var(--primary); }

.stats { display: flex; justify-content: center; gap: 30px; margin-top: 30px; }
.stat-box { border: 2px solid var(--primary); padding: 15px; min-width: 100px; }
.stat-box span { font-size: 1.5rem; font-weight: bold; color: var(--primary); }

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 40px 5%;
}

.photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    border: 2px solid #333;
}

.photo img:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.gallery-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}