:root{
    --club-red:#801818;
    --club-cream:#F5E9D3;
    --club-blue:#3E92CC;
    --club-light:#F5F7FA;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--club-light);
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:100;

    background:rgba(0,0,0,0.25);

    backdrop-filter:blur(6px);

    color:white;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:20px;
}

.logo img{
    width:90px;
}

.logo h1{
    font-size:1.2rem;
}

.logo p{
    color:var(--club-cream);
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav a:hover{
    color:var(--club-blue);
}

.hero{
    position:relative;

    height:80vh;

    background-image:url("../images/hero2.png");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;
}

.hero-overlay{
    position:absolute;

    top:0;
    left:0;
    right:0;
    bottom:0;

    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    z-index:2;

    max-width:800px;

    padding:20px;
}

.hero-logo{
    width:120px;
    margin-bottom:20px;
}

.hero-motto{
    letter-spacing:4px;
    color:#F5E9D3;
    margin-bottom:15px;
}

.hero h2{
    font-size:3.2rem;
    line-height:1.25;
    max-width:800px;
    margin:0 auto 20px;
}

.hero-text{
    font-size:1.2rem;
}

.match-wrapper{
    position:relative;
    margin-top:-120px;
    z-index:20;
}

.match-card{

    width:90%;
    max-width:700px;
    margin:auto;
    margin-bottom:100px;

    background:white;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.match-label{

    display:inline-block;

    background:#801818;

    color:white;

    padding:8px 18px;

    border-radius:30px;

    font-size:0.8rem;

    letter-spacing:2px;

    margin-bottom:20px;
}

.versus{

    color:#3E92CC;

    font-size:1.5rem;

    margin:15px 0;
}

.section-title{
    text-align:center;
    font-size:2.5rem;
    color:#801818;
    margin-bottom:50px;
}

.news{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding-bottom:100px;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.news-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.news-image{
    height:200px;

    background-image:url("../images/harbour.jpg");

    background-size:cover;
    background-position:center;
}

.news-card h3{
    padding:20px 20px 10px;
}

.news-card p{
    padding:0 20px 25px;
}

.club-story{

    background:white;

    padding:100px 20px;
}

.story-content{

    max-width:800px;

    margin:auto;

    text-align:center;
}

.story-content h2{

    color:#801818;

    margin-bottom:30px;

    font-size:2.5rem;
}

.story-content p{

    margin-bottom:20px;

    font-size:1.1rem;

    line-height:1.8;
}

.supporters{

    background:#801818;

    color:white;

    padding:100px 20px;

    text-align:center;
}

.supporters-content{

    max-width:800px;

    margin:auto;
}

.supporters-content h2{

    font-size:2.5rem;

    margin-bottom:25px;
}

.supporters-content p{

    margin-bottom:20px;

    line-height:1.8;
}

.supporters-button{

    display:inline-block;

    margin-top:20px;

    padding:15px 35px;

    background:white;

    color:#801818;

    text-decoration:none;

    font-weight:bold;

    border-radius:50px;
}

.sponsors{

    width:90%;

    max-width:1200px;

    margin:auto;

    padding:100px 0;
}

.sponsor-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.sponsor-card{

    background:white;

    height:150px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.footer{

    background:#1f1f1f;

    color:white;

    text-align:center;

    padding:60px 20px;
}

.footer img{

    width:80px;

    margin-bottom:15px;
}

.footer h3{

    margin-bottom:10px;
}

.footer p{

    margin-bottom:8px;
}

.menu-button{

    display:none;

    background:none;

    border:none;

    color:white;

    font-size:2rem;

    cursor:pointer;
}

@media (max-width: 768px){

    .menu-button{
        display:block;
    }

    nav{

        display:none;

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#801818;

        flex-direction:column;

        padding:20px;
    }

    nav.show{
        display:flex;
    }
}

.join-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:80px 20px;

    background:#F5F7FA;
}

.join-container{

    max-width:700px;

    width:100%;

    background:white;

    padding:50px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,0.1);

    text-align:center;
}

.join-container img{

    width:120px;

    margin-bottom:20px;
}

.join-container h1{

    color:#801818;

    margin-bottom:15px;
}

.join-container p{

    margin-bottom:30px;
}

.join-container form{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.join-container input,
.join-container select,
.join-container textarea{

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:1rem;
}

.join-container button{

    padding:15px;

    border:none;

    border-radius:10px;

    background:#801818;

    color:white;

    font-size:1rem;

    cursor:pointer;
}

/* ABOUT PAGE */

.page-header{

    background:#801818;

    color:white;

    text-align:center;

    padding:100px 20px 80px;
}

.page-header h1{

    font-size:3rem;

    margin-bottom:10px;
}

.page-header p{

    font-size:1.2rem;

    opacity:0.9;
}

.content-section{

    background:#F5F7FA;

    padding:80px 20px;
}

.container{

    max-width:900px;

    margin:0 auto;
}

.content-section h2{

    color:#801818;

    margin-top:50px;

    margin-bottom:20px;
}

.content-section p{

    line-height:1.8;

    margin-bottom:20px;
}

.content-section ul{

    margin-left:25px;

    line-height:1.8;
}

.content-section li{

    margin-bottom:10px;
}

/* ABOUT NAVIGATION */

.about-nav{

    background:#1e1e1e;

    padding:20px 0;
}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.nav-logo{

    color:white;

    text-decoration:none;

    font-weight:700;

    font-size:1.3rem;
}

.about-nav nav{

    display:flex;

    gap:25px;
}

.about-nav nav a{

    color:white;

    text-decoration:none;

    font-weight:600;
}

.about-cta{

    text-align:center;

    background:#801818;

    color:white;

    padding:60px 30px;

    border-radius:20px;

    margin-top:60px;
}

.about-cta h2{

    color:white;

    margin-bottom:20px;
}

.about-cta p{

    margin-bottom:30px;
}

.cta-button{

    display:inline-block;

    background:white;

    color:#801818;

    padding:15px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;
}

.roadmap{

    margin-top:80px;

    margin-bottom:80px;

    text-align:center;
}

.roadmap h2{

    color:#801818;

    margin-bottom:50px;
}

.timeline{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    max-width:900px;

    margin:0 auto;
}

@media (max-width: 768px){

    .timeline{

        grid-template-columns:1fr;
    }

}

.timeline-item{

    background:white;

    padding:30px;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.timeline-item span{

    display:inline-block;

    background:#801818;

    color:white;

    padding:8px 15px;

    border-radius:50px;

    margin-bottom:15px;

    font-weight:bold;
}

.timeline-item h3{

    margin-bottom:15px;

    color:#801818;
}

/* FOUNDING ROVERS */

.founding-progress{

background:white;

padding:40px;

border-radius:20px;

text-align:center;

margin:50px 0;

}

.progress-bar{

width:100%;

height:25px;

background:#ddd;

border-radius:50px;

overflow:hidden;

margin:20px 0;

}

.progress-fill{
    width:5.4%;
    height:100%;
    background:#801818;
}

}

.founding-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

margin-top:40px;

}

.founding-card{

background:white;

padding:30px;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,0.08);

text-align:center;
```

}

.founding-card h3{

color:#801818;

margin-bottom:15px;

}

/* PARTNERS PAGE */

.partners-hero{

background:
linear-gradient(rgba(0,0,0,0.55),
rgba(0,0,0,0.55)),
url('../images/hero.png');

background-size:cover;

background-position:center;

color:white;

text-align:center;

padding:140px 20px;

}

.partners-hero h1{

font-size:3rem;

margin-bottom:20px;

}

.partners-hero p{

font-size:1.2rem;

max-width:700px;

margin:0 auto 30px;

}

.partner-highlight{

background:#801818;

color:white;

text-align:center;

padding:80px 20px;

}

.partner-highlight h2{

color:white;

margin-bottom:20px;

}

.partner-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:25px;

margin-top:40px;

}

.partner-card{

    background:white;

    color:#222;

    padding:35px;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

}

.partner-card h3{

color:#801818;

margin-bottom:15px;

}

.vision-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.vision-card{
background:white;
padding:35px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
text-align:center;
}

.vision-card h3{
color:#801818;
margin-bottom:15px;
}

.early-partner-box{
background:white;
padding:40px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
margin-top:30px;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:30px;
}

.benefit-card{
background:#801818;
color:white;
padding:25px;
border-radius:15px;
text-align:center;
}

.benefit-card h3{
color:white;
margin-bottom:10px;
}

.partner-wall-intro{
max-width:800px;
margin-bottom:40px;
}

.logo-wall{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:25px;
margin-top:30px;
}

.logo-placeholder{
background:white;
height:140px;
display:flex;
align-items:center;
justify-content:center;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
font-weight:700;
color:#801818;
border:2px dashed #801818;
}

