/* === Fonts === */
@font-face {
    font-family: 'GintoNord';
    src: url('/fonts/gintonord/GintoNord-Bold.woff2') format('woff2'),
        url('/fonts/gintonord/GintoNord-Bold.woff') format('woff'),
        url('/fonts/gintonord/Ginto-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Ginto';
    src: url('/fonts/ginto/Ginto-Medium.ttf') format('truetype'),
        url('/fonts/ginto/Ginto-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GG Sans';
    src: url('/fonts/ggsans/ggsans-Normal.ttf') format('truetype'),
        url('/fonts/ggsans/ggsans-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* === Global Styles === */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'GG Sans', sans-serif;
    background: #FDF6E3;
    color: #222;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
}

.container {
    max-width: 1000px;
    width: 100%;
    padding: 0 16px;
}

h1,
h2,
p {
    font-family: 'GintoNord', 'Ginto', serif;
    color: #F28C8C;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
}

p {
    font-size: clamp(0.9rem, 2.5vw, 1.125rem);
    color: #555;
    margin-bottom: 16px;
}

/* === Terms of Service Specific === */
ul {
    list-style-type: none;
    padding-left: 0;
    text-align: center;
    margin: 0 auto;
    width: 80%;
}

ul li::before {
    content: "•";
    color: #F28C8C;
    font-size: 1.2rem;
    padding-right: 8px;
}

ul li {
    text-align: left;
    font-size: clamp(0.9rem, 2.5vw, 1.125rem);
    color: #555;
    margin-bottom: 12px;
    display: inline-block;
    margin-right: 15px;
}

ul li:nth-child(odd) {
    margin-left: 15px;
}

/* === Footer Styles === */
footer {
    padding: 40px 0;
    text-align: center;
    font-family: 'GG Sans', sans-serif;
    color: #666;
    margin-top: 80px;
}

footer a {
    text-decoration: none;
    color: #F28C8C;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #D76C6C;
}

/* === Mobile Adjustments === */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    ul {
        width: 100%;
        margin-top: 20px;
    }

    ul li {
        display: block;
        text-align: center;
        margin: 8px 0;
    }

    footer {
        padding: 20px 0;
    }
}