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

/* ----- Body ----- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #111;
    color: #f4f4f4;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* ----- Main ----- */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ----- Sections General ----- */
section {
    padding: 6rem 2rem;
    text-align: center;
}

section h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 0.5px;
}

section p {
    font-size: 1.1rem;
    color: #bbb;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ----- Home Section ----- */
.home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #111 0%, #181818 100%);
    position: relative;
}

.home h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.home p {
    font-size: 1.2rem;
    color: #bbb;
}

/* ----- Auth Buttons ----- */
.auth-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: transparent;
    color: #f4f4f4;
    border: 1px solid #f4f4f4;
}

.btn-login:hover {
    background-color: #f4f4f4;
    color: #111;
}

.btn-signup {
    background-color: #f4f4f4;
    color: #111;
    border: 1px solid #f4f4f4;
}

.btn-signup:hover {
    background-color: #ccc;
}

.auth-page { display: flex; justify-content: center; align-items: center; min-height: 100vh; }
.auth-container { background: #181818; padding: 2rem; border-radius: 8px; border: 1px solid #222; width: 100%; max-width: 400px; text-align: center; }
.auth-container form { display: flex; flex-direction: column; gap: 1rem; }
.auth-container input { padding: 0.8rem; border-radius: 4px; border: 1px solid #333; background: #222; color: #fff; }
.auth-container hr { margin: 2rem 0; border-color: #333; }

/* ----- Down Arrow ----- */
.down-arrow {
    position: absolute;
    bottom: 2rem;
    font-size: 2rem;
    color: #eaeaea;
    text-decoration: none;
    transition: color 0.3s ease;
    transform: scaleX(2);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scaleX(2);
    }
    50% {
        transform: translateY(-10px) scaleX(2);
    }
}

.down-arrow:hover {
    color: #fff;
}

/* ----- About Section ----- */
.about {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #181818;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

/* ----- Footer ----- */
footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #f4f4f4;
    border-top: 1px solid #222;
    background-color: #0d0d0d;
}

/* ----- Responsive Adjustments ----- */
@media (max-width: 600px) {
    section {
        padding: 3rem 1rem;
    }
    .home h1 {
        font-size: 2rem;
    }
    header {
        justify-content: center;
    }
}