:root {
    --dark: #33020d;
    --dark-2: #210006;
    --cream: #f3d6bd;
    --cream-2: #f8ead8;
    --white-soft: #fff8ef;
}

@font-face {
    font-family: "Antonio";
    src: url("../fonts/Antonio.ttf") format("truetype");
    font-weight: 1000 900;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Antonio", sans-serif;
    background: var(--dark);
    color: var(--cream);
}

.courtesy-page {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background:
            linear-gradient(rgba(35, 0, 8, 0.35), rgba(35, 0, 8, 0.65)),
            url("../img/bg-logolone.jpg") center center / cover no-repeat;
}

.courtesy-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at top left, rgba(248, 234, 216, 0.12), transparent 35%),
            radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.25), transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.courtesy-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 18px;
}

.logo-wrap {
    max-width: 360px;
    margin: 0 auto 22px;
}

.logo-wrap img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.mascotte {
    max-width: 170px;
    margin: 0 auto 20px;
}

.mascotte img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.28));
}

.claim {
    font-size: clamp(1.25rem, 2.25vw, 1.5rem);
    line-height: 1.45;
    color: var(--cream-2);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.btn-courtesy {
    width: 100%;
    max-width: 340px;
    margin: 7px auto;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.btn-primary-courtesy {
    background: var(--cream);
    color: var(--dark);
    border: 2px solid var(--cream);
}

.btn-primary-courtesy:hover {
    background: var(--white-soft);
    border-color: var(--white-soft);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-outline-courtesy {
    background: rgba(255, 248, 239, 0.04);
    color: var(--cream);
    border: 2px solid var(--cream);
    backdrop-filter: blur(4px);
}

.btn-outline-courtesy:hover {
    background: var(--cream);
    color: var(--dark);
    transform: translateY(-2px);
}

.social-row {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(243, 214, 189, 0.78);
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.15rem;
    background: rgba(33, 0, 6, 0.25);
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: var(--cream);
    color: var(--dark);
    border-color: var(--cream);
    transform: translateY(-2px);
}

.info-footer {
    margin-top: 30px;
    color: var(--cream-2);
    font-size: 1.2rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.info-footer a {
    color: var(--cream-2);
    text-decoration: none;
}

.info-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .courtesy-content {
        padding: 34px 18px;
    }

    .logo-wrap {
        max-width: 290px;
    }

    .mascotte {
        max-width: 135px;
    }

    .btn-courtesy {
        max-width: 310px;
        padding: 12px 18px;
        font-size: 0.92rem;
    }

    .social-icon {
        width: 42px;
        height: 42px;
    }
}
