/*
Theme Name: Cimahi Muncul
Theme URI: https://cimahimuncul.com
Description: Custom theme for Cimahi Muncul website
Author: GitHub Copilot
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cimahi-muncul
*/

:root {
    --primary-color: #049c9c;
    --secondary-color: #1e1e2e;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
    color: #fff;
}

.page {
    margin: 0 auto;
    max-width: 1200px;
    padding-top: 0.5rem !important;
}

/* Header Styles */
.site-header {
    background-color: var(--secondary-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
}

/* Footer Styles */
.site-footer {
    background-color: #151523;
    padding: 2rem 0;
    text-align: center;
    margin-top: 2rem;
}

/* Footer Links */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}



/* Author Profile */
.author-profile {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Movement Category */
.movement-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Quest Stories */
.quest-stories {
    margin: 2rem 0;
}

/* Profile Sections */
.profile-section {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* QR Code Section */
.mitra-qr-code {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 8px;
    margin: 2rem 0;
}

/* Dashboard Content */
.dashboard-content {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

/* Common Button Style */
.button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.button:hover {
    background-color: #038383;
}

/* Common utility classes */
.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* Terms and Conditions Page */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.terms-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.terms-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-content ul li {
    margin-bottom: 0.5rem;
}

.terms-content hr {
    margin: 3rem 0;
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
    }
}