/* ===========================
   A.C.R.I.P.
   Site în construcție
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, Helvetica, sans-serif;

    background: linear-gradient(
        135deg,
        #f4f9ff,
        #dbeeff
    );

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    padding: 30px 0;
}

/* ===========================
      Container principal
=========================== */

.container {
    width: 900px;
    max-width: 90%;

    background: white;

    padding: 50px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    animation: aparitie 1s ease;
}

/* ===========================
          Logo
=========================== */

.logo {
    width: 180px;

    margin-bottom: 25px;

    transition: 0.4s;

    animation: logoApare 1.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* ===========================
          Titluri
=========================== */

h1 {
    color: #0056a6;

    font-size: 50px;

    margin-bottom: 10px;
}

h2 {
    color: #555;

    font-size: 24px;

    font-weight: normal;

    line-height: 1.6;

    margin-bottom: 35px;
}

/* ===========================
        Linie despărțitoare
=========================== */

hr {
    border: none;

    height: 1px;

    background: #d7d7d7;

    margin: 35px auto 0;

    width: 100%;
}

/* ===========================
    Site în construcție
=========================== */

.constructie {
    display: inline-block;

    background: #ff9800;

    color: white;

    padding: 18px 40px;

    border-radius: 40px;

    font-size: 32px;

    font-weight: bold;

    margin-top: 0;
    margin-bottom: 35px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);

    animation: puls 2s infinite;

    transition: 0.3s;
}

.constructie:hover {
    background: #e67e22;
}

/* ===========================
        Paragrafe
=========================== */

p {
    font-size: 22px;

    color: #444;

    line-height: 1.8;

    margin-top: 20px;
}

/* ===========================
        Informații
=========================== */

.info {
    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.info div {
    background: #f5f8fc;

    padding: 14px 22px;

    border-radius: 15px;

    font-size: 17px;

    color: #333;

    transition: 0.3s;
}

.info div:hover {
    background: #0b5fa5;

    color: white;

    transform: translateY(-3px);
}

.info a {
    color: inherit;

    text-decoration: none;
}

/* ===========================
        Buton Facebook
=========================== */

.social {
    margin-top: 35px;
}

.facebook-button {
    display: inline-block;

    background: #1877f2;

    color: white;

    text-decoration: none;

    padding: 15px 35px;

    border-radius: 30px;

    font-size: 18px;

    font-weight: 600;

    transition: 0.3s;

    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.25);
}

.facebook-button:hover {
    background: #0f5ec7;

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(24, 119, 242, 0.35);
}

/* ===========================
          Footer
=========================== */

footer {
    margin-top: 40px;

    color: #777;

    font-size: 15px;

    line-height: 1.6;
}

/* ===========================
          Animații
=========================== */

@keyframes aparitie {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoApare {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes puls {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* ===========================
        Responsive
=========================== */

@media (max-width: 768px) {

    body {
        align-items: flex-start;

        padding: 20px 0;
    }

    .container {
        width: 95%;

        max-width: 95%;

        padding: 30px 20px;

        border-radius: 20px;
    }

    .logo {
        width: 130px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 19px;
    }

    .constructie {
        font-size: 22px;

        padding: 14px 20px;
    }

    p {
        font-size: 17px;
    }

    .info {
        flex-direction: column;

        gap: 15px;
    }

    .info div {
        width: 100%;
    }

    .facebook-button {
        width: 100%;

        padding: 14px 20px;
    }

    footer {
        font-size: 14px;
    }
}