/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    background: #050505;
    color: white;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
header {
    padding: 15px 0;
    background: rgba(0,0,0,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo span {
    color: #ff0050;
    font-size: 20px;
    font-weight: bold;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-links a:hover {
    color: #ff0050;
}

/* HERO */
.hero {

    min-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;

    background-color: #050505;

    position: relative;
}

.hero-text {
    padding: 40px 0 80px;
    text-align: center;
    background: #050505;
}

.hero-text h1 {
    font-size: 32px;
}

.hero-text p {
    color: #ccc;
    margin-top: 10px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.2),
        rgba(255,0,80,0.15)
    );
}

.hero-content {
    position: relative;
    text-align: center;
}

.hero h1 {
    font-size: 55px;
}

.hero p {
    color: #ccc;
    margin-top: 10px;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    margin: 5px;
}

.btn-primary {
    background: #ff0050;
    color: white;
}

.btn-secondary {
    border: 1px solid #333;
    color: white;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* GRIDS */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARDS */
.card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
}

/* IMAGES */
.image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* FOOTER */
footer {
    padding: 40px 0;
    text-align: center;
    color: #888;
}

footer a {
    color: #ff0050;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .nav-links {
        display: none;
    }
}