/* css/startside.css */

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f0f4f8;
}

.container {
    max-width: 800px;
    width: 100%;
}

.logo-container {
    margin-bottom: 15px;
}

.logo-title {
    font-size: 3em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.logo-subtitle {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 50px;
}

.role-selection-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.btn-role {
    background-color: #ffffff;
    border: 1px solid #dde2e7;
    border-radius: 16px;
    padding: 25px 30px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-role:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.btn-role .btn-icon-wrapper {
    font-size: 2.5em;
    color: #FFA726;
    /* Varm oransje for pårørende-ikon */
    margin-right: 25px;
    flex-shrink: 0;
}

.btn-role:last-child .btn-icon-wrapper {
    color: #3498DB;
    /* Dus blå for skjerm-ikon */
}

.btn-role .btn-text-wrapper h2 {
    margin: 0 0 5px 0;
    font-size: 1.5em;
    color: #2c3e50;
}

.btn-role .btn-text-wrapper p {
    margin: 0;
    font-size: 1em;
    color: #7f8c8d;
    line-height: 1.5;
}

/* Media query for større skjermer - knapper side om side */
@media (min-width: 768px) {
    .role-selection-container {
        flex-direction: row;
    }

    .btn-role {
        flex: 1;
        /* Får begge knappene til å ta lik plass */
    }
}