/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FULL SCREEN BASE */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* NAVBAR */
nav {
    width: 100%;
    max-width: 100%;
    background: #000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.sign-up-btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
}

.log-in-btn {
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
}

.sign-up-btn:hover {
	background: #222;	
}

.log-in-btn:hover {
  background: #222
}



/* HERO — FULL SCREEN */
.hero {
    width: 100%;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #B71C1C 0%, #D32F2F 50%, #FF5722 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 5%;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    color: white;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    word-break: break-word;
}

.hero p {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.hero h2 {
    color: white;
    font-size: 35px;
    margin-bottom: 1.5rem;
    word-break: break-word;
}

/* FOOTER */
footer {
    width: 100%;
    background: #000;
    color: white;
    padding: 2rem 5%;
    text-align: center;
}

/* =========================
   Responsive
========================= */

/* Large tablets / small laptops */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.3rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 3rem 5%;
        min-height: calc(100vh - 100px);
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero h2 {
        font-size: 24px;
    }
}

/* Small phones */
@media (max-width: 600px) {
    nav {
        padding: 15px 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero {
        padding: 2.5rem 5%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero h2 {
        font-size: 20px;
    }

    .sign-up-btn,
    .log-in-btn {
        padding: 0.6rem 1.4rem;
        font-size: 14px;
    }
}

/* Very small phones (below 400px) */
@media (max-width: 400px) {
    nav {
        padding: 12px 4%;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero {
        padding: 2rem 4%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero h2 {
        font-size: 18px;
    }

    .sign-up-btn,
    .log-in-btn {
        padding: 0.5rem 1rem;
        font-size: 13px;
    }
}

/* Extremely small screens (below 320px) */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 16px;
    }
}