:root {
--club-blue: #80ccff;
--club-red: #cc0000;
--white: #ffffff;
--light-grey: #f5f7fa;
--dark: #222222;
}

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

body {
font-family: "Segoe UI", Arial, sans-serif;
background: var(--white);
color: var(--dark);
line-height: 1.6;
}

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

/* HEADER */

header {
background: var(--club-blue);
color: white;
padding: 18px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

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

header h1 {
font-size: 1.8rem;
}

nav ul {
display: flex;
gap: 25px;
list-style: none;
}

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

nav a:hover {
opacity: 0.8;
}

/* HERO BANNER */

.hero {
height: 350px;

```
background: url("images/rtrcmain.jpg");
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
background-color: white;
```

}

/* BUTTONS */

.btn {
display: inline-block;
background: var(--club-red);
color: white;
text-decoration: none;
padding: 15px 35px;
border-radius: 5px;
font-weight: bold;
transition: 0.3s;
}

.btn:hover {
background: #990000;
transform: translateY(-2px);
}

/* WELCOME */

.welcome {
padding: 80px 0;
text-align: center;
}

.welcome h2 {
color: var(--club-blue);
margin-bottom: 25px;
font-size: 2.5rem;
}

.welcome p {
max-width: 900px;
margin: 0 auto 20px auto;
font-size: 1.05rem;
}

/* HIGHLIGHT CARDS */

.highlights {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
padding-bottom: 80px;
}

.card {
background: white;
padding: 35px;
border-top: 6px solid var(--club-blue);
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

.card h3 {
color: var(--club-blue);
margin-bottom: 15px;
}

/* JOIN SECTION */

.cta {
background: var(--club-blue);
color: white;
text-align: center;
padding: 80px 0;
}

.cta h2 {
font-size: 2.4rem;
margin-bottom: 15px;
}

.cta p {
margin-bottom: 30px;
}

/* PHOTO GALLERY */

.gallery {
background: var(--light-grey);
padding: 80px 0;
}

.gallery h2 {
text-align: center;
color: var(--club-blue);
font-size: 2.4rem;
margin-bottom: 40px;
}

.photo-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.photo-card {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,.08);
text-align: center;
}

.photo-card img {
width: 100%;
height: 280px;
object-fit: cover;
display: block;
}

.photo-card h3 {
color: var(--club-blue);
padding: 20px;
}

/* FOOTER */

footer {
background: #111;
color: white;
text-align: center;
padding: 30px;
}

/* MOBILE */

@media (max-width: 900px) {

```
header .container {
    flex-direction: column;
    gap: 15px;
}

nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hero {
    height: 200px;
}

.welcome h2,
.cta h2,
.gallery h2 {
    font-size: 2rem;
}

.photo-card img {
    height: 220px;
}
```

}
