﻿body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    min-height: 100vh;
}

.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.logo-circle {
    width: 90px;
    height: 90px;
    background: #FF8A00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.35);
}

.main-title {
    font-weight: 800;
    color: #4E342E;
    margin-bottom: 8px;
}

.sub-title {
    color: #795548;
    font-size: 1.1rem;
}

.role-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    color: #4E342E;
    height: 100%;
}

    .role-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        color: #4E342E;
    }

.role-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.role-card h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.role-card p {
    color: #8D6E63;
    font-size: 0.9rem;
    margin: 0;
}

.card-restaurant {
    border-bottom: 5px solid #FF7043;
}

.card-beneficiary {
    border-bottom: 5px solid #66BB6A;
}

.card-admin {
    border-bottom: 5px solid #42A5F5;
}
