*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins, sans-serif;
}

/* VIDEO BACKGROUND */
#bgVideo{
position:fixed;
right:0;
bottom: -280px;
min-width:100%;
min-height:100%;
object-fit:fill;
z-index:-2;
}

.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
z-index:-1;
}

body{ color:#f5c542; }

/* NAVBAR */
header{
position:fixed;
width:100%;
background:#000000cc;
padding:15px 40px;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li a{
color:#f5c542;
text-decoration:none;
margin:0 15px;
}

.social i{
margin-left:15px;
cursor:pointer;
}

/* HERO */
.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.hero h2{ font-size:50px; }

button{
padding:10px 25px;
background:#f5c542;
border:none;
margin-top:15px;
cursor:pointer;
}

/* SECTIONS */
section{
padding:100px 50px;
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
}

.card{
background:#111;
padding:30px;
border-radius:15px;
}

input,textarea{
width:100%;
padding:12px;
margin:10px 0;
background:#111;
border:none;
color:#fff;
}
/* Highlight S&C Card */
.highlight {
    border: 2px solid #ffe601;
    background: rgba(194, 178, 0, 0.079);
    transform: scale(1.03);
}

/* Gallery Section */
#gallery {
    padding: 60px 8%;
    background:transparent;
    text-align: center;
}

#gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    color: #222;
    letter-spacing: 1px;
}

/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

/* Image Styling */
.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Hover Effects */
.gallery-grid img:hover {
    transform: scale(1.06);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

/* Mobile Optimization */
@media (max-width: 600px) {
    #gallery {
        padding: 40px 5%;
    }

    #gallery h2 {
        font-size: 2rem;
    }

    .gallery-grid img {
        height: 220px;
    }
}

footer{
text-align:center;
padding:20px;
background:#000;
}

/* TEAM SECTION */
#team {
    padding: 70px 8%;
    background: transparent;
    text-align: center;
}

#team h2 {
    font-size: 2.5rem;
    margin-bottom: 45px;
    color: #efa315;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* Card */
.team-card {
    background: #ffffff48;
    border-radius: 18px;
    padding: 25px 20px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.35s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* Coach Image */
.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: fill;
    margin-bottom: 18px;
    border: 4px solid #f1f1f1;
}

/* Text */
.team-card h3 {
    margin: 10px 0 6px;
    font-size: 1.3rem;
    color: #111;
}

.team-card .role {
    color: #13004d;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 0.95rem;
    color: #efa315;
    line-height: 1.5;
}

/* Mobile */
@media (max-width:600px){
    #team { padding:50px 6%; }
}

.team-title{
    color:#efa315;
}
.contact-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-info,
.map-container {
  flex: 1;
  min-width: 300px;
  background: rgba(0, 0, 0, 0.605);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(15, 15, 15);
}

/* Optional: make map fill tile */
.map-container iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  border: none;
}

.team-dr {
    background: #ffffff48;
    border-radius: 18px;
    padding: 25px 20px 30px;
    height: 400px;
    width: 300px;
    align-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.35s;
    margin-bottom: 40px;
    line-height: 1.5;
}