/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', sans-serif;
    background-color: #f6c457;
    color: #1b1b1b;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Halftone grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0,0,0,0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    background: #fff8e8;
    border-bottom: 4px solid #1b1b1b;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 60px;
    height: 60px;
    border: 3px solid #1b1b1b;
    border-radius: 50%;
    background: #fff8e8;
    padding: 5px;
}

.title-group {
    text-align: left;
}

.main-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b1b1b;
    text-shadow: 2px 2px 0 #e44a3d;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.1rem;
    color: #1b1b1b;
    font-weight: 500;
    margin-bottom: 5px;
}

.revival-stamp {
    background: #e44a3d;
    color: #fff8e8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    border: 2px solid #1b1b1b;
    transform: rotate(-2deg);
}

.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-link {
    color: #1b1b1b;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid #1b1b1b;
    border-radius: 25px;
    background: #fff8e8;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: #1b1b1b;
    color: #fff8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f6c457 0%, #f0b84a 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border: 4px solid #1b1b1b;
    border-radius: 20px;
    background: #fff8e8;
    padding: 20px;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
}

.hero-stamp {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #1fa2a3;
    color: #fff8e8;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    border: 3px solid #1b1b1b;
    transform: rotate(5deg);
    font-size: 0.9rem;
}

.hero-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #e44a3d;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #1b1b1b;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: 3px solid #1b1b1b;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #e44a3d;
    color: #fff8e8;
}

.btn-primary:hover {
    background: #1b1b1b;
    transform: translateY(-3px);
    box-shadow: 0 6px 0 rgba(0,0,0,0.3);
}

.btn-secondary {
    background: #1fa2a3;
    color: #fff8e8;
}

.btn-secondary:hover {
    background: #1b1b1b;
    transform: translateY(-3px);
    box-shadow: 0 6px 0 rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff8e8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border: 4px solid #1b1b1b;
    border-radius: 20px;
    background: #f6c457;
    padding: 20px;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
}

.section-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 #e44a3d;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: #1fa2a3;
    color: #fff8e8;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid #1b1b1b;
    font-size: 0.9rem;
}

/* Why Section */
.why {
    padding: 80px 0;
    background: #f6c457;
    text-align: center;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: #fff8e8;
    border: 4px solid #1b1b1b;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border: 4px solid #1b1b1b;
    border-radius: 50%;
    position: relative;
    background: #f6c457;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

/* Variants for icon dots (replacing emojis) */
.icon-historic { background: radial-gradient(circle at 60% 40%, #f6c457 40%, #e44a3d 41%); }
.icon-iconic { background: radial-gradient(circle at 50% 50%, #f6c457 45%, #1fa2a3 46%); }
.icon-community {
    background: #f6c457;
}
.icon-community::before,
.icon-community::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: 3px solid #1b1b1b;
    border-radius: 50%;
    background: #1fa2a3;
}
.icon-community::before { left: -18px; }
.icon-community::after { right: -18px; }

.card-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1.1rem;
    color: #1b1b1b;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #fff8e8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    text-align: center;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 4px solid #1b1b1b;
    border-radius: 15px;
    background: #f6c457;
    margin-bottom: 15px;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
}

.gallery-caption {
    font-weight: 600;
    color: #1b1b1b;
    font-size: 1.1rem;
}

/* Community Section */
.community {
    padding: 80px 0;
    background: #f6c457;
    text-align: center;
}

.community-content {
    max-width: 600px;
    margin: 0 auto;
}

.speech-bubble {
    background: #fff8e8;
    border: 4px solid #1b1b1b;
    border-radius: 25px;
    padding: 20px 30px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
}

.speech-bubble p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0;
}

.speech-tail {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #1b1b1b;
}

.speech-tail::after {
    content: '';
    position: absolute;
    top: -19px;
    left: -11px;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #fff8e8;
}

.community-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-twitter {
    background: #1da1f2;
    color: #fff8e8;
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #fff8e8;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 3px solid #1b1b1b;
    border-radius: 15px;
    overflow: hidden;
    background: #f6c457;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #1fa2a3;
    color: #fff8e8;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #1b1b1b;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    font-size: 1rem;
    color: #1b1b1b;
}

/* Footer */
.footer {
    background: #1b1b1b;
    color: #fff8e8;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-border {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-icon {
    width: 30px;
    height: 30px;
    filter: invert(1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .why-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .community-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        gap: 10px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .badges {
        justify-content: center;
    }
}
