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

/* BODY */
body {
    min-height: 70vh;
    background-color: #f1d7d5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
    max-height: 956px;
}

/* MAIN WRAPPER */
.wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    text-align: center;
}

/* LOGO */
.logo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    margin-bottom: 35px;
}

/* INTRO TEXT (κάτω από logo) */
.intro {
    margin-bottom: 30px;
}

.intro h1 {
    font-size: 22px;
    font-weight: bold;
    color: #a31e22;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.intro h2 {
    font-size: 18px;
    font-weight: 500;
    color: #a31e22;
    margin-bottom: 5px;
    opacity: 0.85;
}

.intro p {
    font-size: 16px;
    letter-spacing: 1px;
    color: #a31e22;
    opacity: 0.75;
}

/* LINKS */
.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* κεντράρισμα */
    gap: 14px;
}

/* BUTTONS */
.links a {
    width: 80%;
    max-width: 300px;

    text-decoration: none;
    background: transparent;
    color: #a31e22;
    padding: 14px 16px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;

    border: 1px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* HOVER EFFECT */
.links a:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}



/* RESPONSIVE – μικρές οθόνες */
@media (max-width: 360px) {
    .logo img {
        width: 110px;
        height: 110px;
    }

    .links a {
        font-size: 16px;
        padding: 14px;
    }
}