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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(141.23deg, #667EEA 0%, #764BA2 100%);
    min-height: 100vh;
}

button {
    border: none;
    outline: none;
    background: none;
}

.hero {
    padding: 12rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-title {
    font-size: 3rem; 
    margin-bottom: 1rem; 
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem; 
    text-align: center; 
    opacity: 0.9;
}

.header {
    font-family: 'Arial', sans-serif;
    padding: 0.5rem 0;
    background: rgb(85 91 161 / 70%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header--hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    font-stretch: 60%;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    white-space: nowrap;
    font-size: 1.2rem;
}

.nav-links a:hover {
    opacity: 0.6;
}

.logout-link-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: white;
    font-weight: 300;
    letter-spacing: 1px;
    white-space: nowrap;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
}

.logout-link-button:hover {
    opacity: 0.6;
}

.section {
    padding: 5rem 0;
    background: white;
    color: #333;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: opacity 0.3s;
    font-size: 1rem;
}

.logo a:hover {
    opacity: 0.8;
}

.name a {
    max-width: 20%;
    margin: 0;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    font-size: 3rem;
}

@media (max-width: 900px) {
    .nav {
        padding: 0;
    }

    .nav-links {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .nav {
        padding: 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}
