/* ============================================
   Pokemaobr Landing Page - Custom Styles
   ============================================ */

:root {
    --primary-color: #FFD700;
    --primary-dark: #FFC700;
    --dark-bg: #1a1a2e;
    --dark-bg-secondary: #16213e;
    --text-light: #f0f0f0;
    --text-muted: #a0a0a0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pokemon-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.8s ease-out;
}

.hero-section .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-section .btn {
    animation: slideInUp 0.8s ease-out 0.4s both;
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-bg);
}

.card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-bg);
}

.testimonials-section .card {
    border-radius: 12px;
    border: none;
}

.testimonials-section .card-body {
    padding: 30px;
}

.text-warning {
    color: var(--primary-color) !important;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.8);
}

.cta-section .btn-dark {
    background-color: var(--dark-bg);
    border-color: var(--dark-bg);
    color: var(--primary-color);
    font-weight: 600;
}

.cta-section .btn-dark:hover {
    background-color: var(--dark-bg-secondary);
    border-color: var(--dark-bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-bg);
}

.accordion-button {
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.accordion-body {
    padding: 20px;
    color: #555;
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-bg);
}

.about-section h3 {
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.about-section .lead {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

footer h5 {
    color: var(--primary-color);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .features-section h2,
    .testimonials-section h2,
    .cta-section h2,
    .faq-section h1,
    .about-section h1 {
        font-size: 1.8rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 400px;
        padding: 40px 0;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section .lead {
        font-size: 0.9rem;
    }

    .features-section,
    .testimonials-section,
    .cta-section,
    .faq-section,
    .about-section {
        padding: 40px 0;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    nav, footer {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }
}
