/* LaPapa Website Styles */
/* Colors: Background: #F2E5D8, Font: #2F3338, Accent: #F7962D */

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

body {
    font-family: 'Fredoka', 'Comic Neue', sans-serif;
    background-color: #F2E5D8;
    color: #2F3338;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(242, 229, 216, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid #F7962D;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #F7962D;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #2F3338;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #F7962D;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    color: #2F3338;
    font-size: 20px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2F3338;
}

.highlight {
    color: #F7962D;
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #F7962D;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

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

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.btn-primary {
    background-color: #F7962D;
    color: white;
}

.btn-primary:hover {
    background-color: #e8851a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 150, 45, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2F3338;
    border: 2px solid #F7962D;
}

.btn-secondary:hover {
    background-color: #F7962D;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lapapa-main {
    width: 300px;
    height: auto;
    z-index: 2;
    position: relative;
}

.power-effects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.power-ring {
    position: absolute;
    border: 3px solid #F7962D;
    border-radius: 50%;
    opacity: 0.3;
}

.ring1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation: pulse 2s infinite;
}

.ring2 {
    width: 250px;
    height: 250px;
    top: -125px;
    left: -125px;
    animation: pulse 2s infinite 0.5s;
}

.ring3 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: pulse 2s infinite 1s;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star, .heart, .snow {
    position: absolute;
    color: #F7962D;
    opacity: 0.6;
}

.star1 { top: 20%; left: 10%; animation: float 3s ease-in-out infinite; }
.star2 { top: 30%; right: 15%; animation: float 3s ease-in-out infinite 1s; }
.heart1 { top: 60%; left: 5%; animation: bounce 2s ease-in-out infinite; }
.heart2 { top: 70%; right: 10%; animation: bounce 2s ease-in-out infinite 0.5s; }
.snow1 { top: 40%; left: 20%; animation: rotate 4s linear infinite; }
.snow2 { top: 80%; right: 25%; animation: rotate 4s linear infinite reverse; }

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2F3338;
    font-weight: 700;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #F2E5D8 0%, #f5ebe0 100%);
}

.about-story {
    margin-bottom: 50px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(47, 51, 56, 0.1);
}

.story-content h3 {
    font-size: 2rem;
    color: #F7962D;
    margin-bottom: 20px;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.personality-traits {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #F7962D;
}

.personality-traits h4 {
    color: #2F3338;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.personality-traits ul {
    list-style: none;
    padding: 0;
}

.personality-traits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.personality-traits li i {
    color: #F7962D;
    font-size: 1.1rem;
    width: 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(47, 51, 56, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: #F7962D;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2F3338;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(47, 51, 56, 0.1);
}

.stat-item i {
    font-size: 2rem;
    color: #F7962D;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2F3338;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Powers Section */
.powers {
    padding: 80px 0;
    background: #F2E5D8;
}

.powers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.power-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(47, 51, 56, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.power-card:hover {
    transform: translateY(-10px);
    border-color: #F7962D;
}

.power-icon {
    font-size: 3rem;
    color: #F7962D;
    margin-bottom: 20px;
}

.power-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2F3338;
}

/* Animation Section */
.animation {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5ebe0 0%, #F2E5D8 100%);
}

.coming-soon-box {
    background: white;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(47, 51, 56, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-box i {
    font-size: 4rem;
    color: #F7962D;
    margin-bottom: 20px;
}

.coming-soon-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2F3338;
}

.production-status {
    margin: 30px 0;
    text-align: left;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.status-item i {
    color: #F7962D;
    font-size: 1.2rem;
}

/* Merch Section */
.merch {
    padding: 80px 0;
    background: #F2E5D8;
}

.merch-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.merch-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.merch-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.merch-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(47, 51, 56, 0.1);
    transition: transform 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-5px);
}

.merch-item i {
    font-size: 2.5rem;
    color: #F7962D;
    margin-bottom: 15px;
}

.merch-item span {
    display: block;
    font-weight: 600;
    color: #2F3338;
}

/* Footer */
.footer {
    background: #2F3338;
    color: #F2E5D8;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F7962D;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #F2E5D8;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #F7962D;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(242, 229, 216, 0.2);
}

.footer-bottom .fa-heart {
    color: #ff4757;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

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

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

/* Animation Classes */
.bounce {
    animation: bounce 2s ease-in-out infinite;
}

.wobble {
    animation: wobble 3s ease-in-out infinite;
}

.snowflake {
    margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .lapapa-main {
        width: 250px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .powers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .coming-soon-box {
        padding: 30px;
        margin: 0 20px;
    }
    
    .merch-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .merch-content {
        padding-bottom: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-text {
        grid-template-columns: 1fr;
    }
    
    .powers-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card, .power-card {
        padding: 20px;
    }
    
    .merch-preview {
        grid-template-columns: 1fr;
    }
}

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

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid #F7962D;
    outline-offset: 2px;
}