@import url('/css/variables.css');

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

/* ================= BODY ================= */
body {
    font-family: var(--font-main);
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.5; /* ✅ better readability */
}

/* ================= LINKS ================= */
a {
    text-decoration: none;
    color: inherit;
}

/* ================= UTILITIES ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #145267;
    color: #ffffff;
}

.btn-secondary {
    background: #FFFFFF;
    color: #145267;
    border: 1px solid rgba(16, 186, 203, 0.22);
}

.btn-secondary:hover {
    background: rgba(16, 186, 203, 0.08);
}

.card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #E8EEF2;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}
