/* ---------------------------
   FONT LOADING
---------------------------- */
@font-face {
    font-family: "Sailors";
    src: url("../font/sailors.otf") format("opentype");
}

@font-face {
    font-family: "Proxima";
    src: url("../font/proxima.otf") format("opentype");
}

/* ---------------------------
   PAGE BASE
---------------------------- */
body {
    margin: 0;
    padding: 0;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* ---------------------------
   CONTAINER
---------------------------- */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------------------------
   ELEMENT STYLING
---------------------------- */
.logo {
    width: 220px;
    max-width: 70%;
    opacity: 0;
}

.title {
    font-family: "Sailors", sans-serif;
    font-size: 3rem;
    color: white;
    margin-top: 25px;
    opacity: 0;
}

.subtitle {
    font-family: "Proxima", sans-serif;
    font-size: 1.1rem;
    color: white;
    margin-top: 15px;
    opacity: 0;
}

/* ---------------------------
   ANIMATIONS
---------------------------- */
.fade-in {
    animation: fadeIn 1.4s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 1.4s ease forwards;
    animation-delay: 1.2s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------------
   MOBILE RESPONSIVE
---------------------------- */
@media (max-width: 600px) {
    .title {
        font-size: 2.2rem;
    }
    .subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}
