/* === 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 {
    scroll-behavior: smooth;
}

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,
h3,
.header-text {
    font-family: 'GintoNord', 'Ginto', serif;
    margin: 0 0 16px 0;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #F28C8C;
}

h2 {
    font-family: 'Ginto', serif;
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    color: #F28C8C;
    text-align: center;
}

p,
.body-text {
    font-family: 'GG Sans', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.125rem);
    color: #555;
    margin-bottom: 16px;
}

/* === Hero Section === */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 80px 0;
}

.emoji {
    font-size: clamp(2rem, 8vw, 3rem);
    display: block;
    animation: float 2s ease-in-out infinite alternate;
    margin-bottom: 16px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-8px);
    }
}

/* === Buttons === */
.buttons a {
    display: inline-block;
    padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 28px);
    text-decoration: none;
    font-family: 'GG Sans', sans-serif;
    border-radius: 12px;
    border: 2px solid #F28C8C;
    color: #F28C8C;
    margin: 4px;
    transition: all 0.3s ease;
}

.buttons a:hover {
    background-color: #F28C8C;
    color: #fff;
    transform: translateY(-2px);
}

/* === Creator Grid === */
.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 60px;
}

.creator-card {
    padding: 24px;
    border-radius: 16px;
    background: #FFF8F0;
    border: 1px solid #E6E2DF;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.creator-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.creator-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 2px solid #F28C8C;
}

.creator-card h3 {
    font-family: 'GintoNord', 'Ginto', serif;
    font-size: 1.125rem;
    margin: 8px 0 4px 0;
    color: #333;
}

.creator-card p {
    font-family: 'GG Sans', sans-serif;
    font-size: 0.875rem;
    color: #666;
}

#creators {
    padding-top: 80px;
    margin-top: -40px;
    scroll-margin-top: 100px;
}

/* === Creator Card Links === */
.creator-card .links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.creator-card .creator-link {
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 10px;
    border: 2px solid #F28C8C;
    color: #F28C8C;
    font-family: 'GG Sans', sans-serif;
    font-size: 0.875rem;
    transition: all 0.25s ease;
}

.creator-card .creator-link:hover {
    background-color: #F28C8C;
    color: #FFF;
    transform: translateY(-2px);
}

/* === Footer === */
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.25s ease;
}

footer a:hover {
    color: #D76C6C;
}

/* Social links line */
footer .social-links {
    margin: 8px 0;
    display: inline-flex;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Policy links line */
footer .footer-links {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #999;
}

/* === Scroll Arrow === */
.scroll-arrow {
    display: inline-block;
    margin-top: 40px;
    width: 30px;
    height: 45px;
    position: relative;
    cursor: pointer;
}

.scroll-arrow span {
    display: block;
    width: 4px;
    height: 12px;
    margin: 4px auto;
    background: #F28C8C;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
    }

    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* === Mobile Adjustments === */
@media (max-width: 768px) {
    body {
        padding: 16px;
    }

    .hero {
        padding: 60px 0;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p.body-text {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .buttons a {
        padding: 12px 24px;
    }

    .creator-card {
        padding: 16px;
    }

    .creator-card img {
        width: 80px;
        height: 80px;
    }

    footer {
        padding: 20px 0;
    }

    .scroll-arrow {
        margin-top: 30px;
    }

    footer .footer-links {
        font-size: 0.875rem;
        display: block;
    }
}