@font-face {
    font-family: 'Relaxe';
    src: url('Relaxe.ttf') format('truetype');
}

@font-face {
    font-family: 'Commune';
    src: url('GC commune.ttf') format('truetype');
}

:root {
    --beige: #DDD5C7;
    --terracotta: #C2573A;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Commune', serif;
    background-color: var(--beige);
    color: var(--terracotta);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Relaxe', serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav {
    padding: 2rem 0;
    border-bottom: 2px solid var(--terracotta);
}

.nav-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.nav-links a {
    font-family: 'Relaxe', serif;
    color: var(--terracotta);
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

footer {
    padding: 2rem 0;
    border-top: 2px solid var(--terracotta);
    margin-top: 4rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer p {
    color: var(--terracotta);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: var(--terracotta);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.separator {
    color: var(--terracotta);
    opacity: 0.5;
}

@media (max-width: 768px) {
    nav {
        padding: 1.5rem 0;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Index Page ===== */

main {
    flex: 1;
}

.hero {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 4rem 0;
}

.main-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: normal;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--terracotta);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.letter {
    display: inline-block;
}

.skull-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    position: relative;
    margin: 0;
}

.skull-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotate 4s linear infinite;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tagline {
    font-family: 'Commune', serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--terracotta);
    opacity: 0.9;
}

/* ===== Policy Pages (Privacy & Terms) ===== */

.policy-content {
    padding: 4rem 0;
}

.policy-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    color: var(--terracotta);
}

.policy-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--terracotta);
}

.policy-content h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--terracotta);
}

.policy-content p,
.policy-content ul,
.policy-content ol {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--terracotta);
}

.policy-content ul,
.policy-content ol {
    margin-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
}

.policy-content a {
    color: var(--terracotta);
    text-decoration: underline;
}

.policy-content a:hover {
    opacity: 0.7;
}

.last-updated {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .policy-content ul,
    .policy-content ol {
        margin-left: 1.5rem;
    }
}

/* ===== Help Center Page ===== */

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 3rem;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid var(--terracotta);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    font-family: 'Relaxe', serif;
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1.15rem;
    color: var(--terracotta);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: rgba(194, 87, 58, 0.08);
}

.faq-question .icon {
    font-size: 1.4rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.faq-answer-inner p {
    margin-bottom: 0.5rem;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.contact-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--terracotta);
}

.contact-section p {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.contact-section a {
    color: var(--terracotta);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.25rem;
    }
}
