/* ----------------- General ----------------- */
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

footer {
    padding: 20px 0;
    text-align: center;
}

footer a {
    margin: 0 1rem;
    text-decoration: none;
    color: #007BFF;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

/* ----------------- Index Page ----------------- */
body.index-page .main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

body.index-page h1#orio {
    font-size: 5rem; /* large logo */
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

body.index-page p#tagline {
    display: inline-block;  /* keeps it directly under the logo */
    margin: 0;
    margin-top: 0.3rem;     /* small gap under logo */
    opacity: 0;
    transform: scaleX(1);   /* horizontal scaling only */
    transition: transform 0.8s ease, opacity 0.8s ease;
    white-space: nowrap;    /* prevent wrapping */
}


/* ----------------- Privacy Policy Page ----------------- */
main.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0; /* revealed after logo animation */
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

main.content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

main.content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

main.content p,
main.content li {
    font-size: 1rem;
    margin-bottom: 1rem;
}

main.content ul {
    padding-left: 1.5rem;
}

/* ----------------- Animations ----------------- */
@keyframes fadeIn {
    to { opacity: 1; }
}

.logo-container {
    opacity: 0;
    animation: logoFadeUp 1.6s ease-out forwards;
    margin-bottom: 3rem;
}

.logo {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    color: black;
    letter-spacing: 0.1rem;
    animation: logoShadow 1.6s ease-out forwards;
}

@keyframes logoFadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes logoShadow {
    0% { text-shadow: 0px 8px 18px rgba(0, 0, 0, 0.15); }
    100% { text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08); }
}
