/*
 * ************************************************************
 * ************************************************************
 * ** Copyright (c) flavio.ferrara.it
 * ** All rights reserved.
 * **
 * ** Strict Proprietary Notice:
 * ** This website data, source code, and associated
 * ** assets are the exclusive property of flavio.ferrara.it.
 * ** Unauthorized copying, modification,
 * ** or distribution via any medium is strictly prohibited.
 * ************************************************************
 * ************************************************************
 */

/* ==========================
   COMPONENTS / BUTTONS
========================== */

.btn{
    padding:14px 24px;
    border-radius:999px;
    font-weight:600;
    transition:0.3s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-primary{
    background:var(--white);
    color:var(--navy);
}

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

.btn-secondary{
    border:1px solid rgba(255,255,255,0.3);
    color:var(--white);
}

.btn-secondary:hover{ background:rgba(255,255,255,0.08); }

.toggle-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 16px;
    display: inline-block;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease;
}

.toggle-btn:hover {
    color: var(--navy);
    text-decoration: underline;
}

.top-toggle {
    margin-top: 0;
    margin-bottom: 20px;
}
