/* Root variables */
:root {
    --primary: #F5F5F5;
    --secondary: #696969;
    --font: #000000;
}

/* Fonts */
@font-face {
    font-family: 'Eagle Lake';
    src: url(/fonts/EagleLake-Regular.ttf);
    font-display: swap;
}
@font-face {
    font-family: 'Roboto Regular';
    src: url(fonts/Roboto-Regular.ttf);
    font-display: swap;
}
@font-face {
    font-family: 'Roboto Bold';
    src: url(fonts/Roboto-Bold.ttf);
    font-display: swap;
}
@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    src: url(/fonts/MaterialSymbolsOutlined.ttf);
    font-display: swap;
}
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

/* Base Styles */
body {
    margin: 0;
    background: var(--primary);
}
.content {
    margin: 0 auto;
    padding: 0 25px;
    max-width: 500px;
}
p, span {
    font-family: 'Roboto Regular', sans-serif;
    font-size: 1rem;
    color: var(--font);
    margin: 0;
}
button, .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px;
    font-family: 'Roboto Bold', sans-serif;
    font-size: 1rem;
    color: var(--tertiary);
    text-decoration: none;
    border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.2s;

    background: #ffffff;
    border: none;
}
button:hover, .btn:hover {
    background: var(--secondary);
    color: #ffffff !important;
}
input, textarea {
    min-width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 5px;
    padding: 8px 14px;
    margin-bottom: 5px;
    background-color: #CFCFC5;
    font-family: 'Roboto Regular', sans-serif;
    font-size: 16px;
    color: #696969;
    box-sizing: border-box;
}
input:focus, textarea:focus {
    outline: 2px solid #696969;
    outline-offset: 0px;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: #ffffff;
}
.navbar span {
    font-family: 'Eagle Lake', sans-serif;
    font-size: 24px;
    color: var(--font);
}

/* Body */
#back-home {
    width: fit-content;
    font-family: 'Roboto Regular', sans-serif;
    color: var(--secondary);
    margin-top: 25px;
    padding: 8px 12px;
    border-radius: 5px;
    gap: 5px;
}

/* Main Area */
.main {
    background: #ffffff;
    border-radius: 5px;
    padding: 12px;
    margin-top: 20px;
}
.top {
    display: flex;
    padding: 0 10px;
    gap: 15px;
}
.icon {
    background: var(--primary);
    padding: 8px;
    border-radius: 5px;
}
.icon > span {
    font-size: 30px;
}
.text {
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 2px;
}
.text h1 {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}
.text span {
    font-size: 0.75rem;
    line-height: normal;
    color: var(--secondary);
}
#selected-sum {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-left: auto;
    padding-top: 8px;
}

.separator {
    border-top: solid 1px var(--primary);
    margin: 15px 0;
}

.select-sum {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0 10px;
}
.sum {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    background: var(--primary);
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}
.sum:hover {
    background: var(--secondary);
    color: #ffffff;
}
.active {
    background: var(--secondary);
    color: #ffffff; 
}

.benefits {
    margin-top: 25px;
    margin-bottom: 10px;
    padding: 0 10px;
}
.benefits > span {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 0.875rem;
    color: var(--tertiary);
}
.list-item {
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.list-item span {
    font-size: 20px;
    color: var(--tertiary);
}
.list-item p {
    line-height: normal;
    margin: 0;
    margin-left: 10px;
}

.disclaimer {
    font-size: 0.625rem;
    color: var(--secondary);
    margin: 8px 10px;
}

.payment-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}
.payment-separator .separator {
    width: 30%;
    border-top: 1px solid var(--secondary);
    margin: 0;
}
.payment-separator span {
    color: var(--secondary);
}
form {
    margin-top: 30px;
}
#response {
    font-family: 'Roboto Regular', sans-serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--font);
    margin: 0 5px;
}
#paypal-btn {
    margin-top: 10px;
    border: 1px solid var(--secondary);
}