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

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

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

/* Color Variables */
:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --primary-gray: #6c6c6c;
    --light-gray: #e0e0e0;
    --white: #ffffff;
}

/* Header */
.header {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
}

.logo h1 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.logo p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-orange);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('foto2.png'), url('foto3.png');
    background-position: top -50px left -80px, bottom -50px right -80px;
    background-repeat: no-repeat;
    background-size: 35%, 45%;
    opacity: 0.5;
    z-index: 0;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.age-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 400px;
}

.age-info h3 {
    font-size: 1.3rem;
    color: var(--white);
}

.access-notice {
    background-color: var(--primary-black);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 600px;
    border: 2px solid var(--primary-orange);
}

.access-notice p {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-black);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-black);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('foto2.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
}

/* Mascot Section */
.mascot {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.mascot h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 3rem;
}

.mascot-info p {
    font-size: 1.1rem;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Method Section */
.method {
    padding: 80px 0;
    background-color: var(--white);
}

.method h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.method-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin-bottom: 3rem;
    font-weight: bold;
}

.method-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.method-item {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-orange);
}

.method-item h3 {
    color: var(--primary-black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.method-item p {
    color: var(--primary-gray);
    line-height: 1.8;
}

.ninja-warriors {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.ninja-warriors h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--primary-black);
    color: var(--white);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-black);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: var(--white);
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.schedule h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 3rem;
}

.schedule-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.schedule-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--primary-orange);
}

.schedule-item h3 {
    color: var(--primary-black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.schedule-item p {
    color: var(--primary-gray);
    font-size: 1.1rem;
    font-weight: bold;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background-color: var(--white);
}

.plans h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.plan-card.featured {
    border-color: var(--primary-orange);
    background-color: var(--primary-orange);
    color: var(--white);
}

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

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.plan-card.featured h3 {
    color: var(--white);
}

.plan-frequency {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.plan-card.featured .plan-frequency {
    color: var(--white);
}

.payment-options {
    margin-bottom: 2rem;
}

.payment-options p {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.payment-options ul {
    list-style: none;
    padding: 0;
}

.payment-options li {
    margin-bottom: 0.5rem;
    color: var(--primary-gray);
}

.plan-card.featured .payment-options li {
    color: var(--white);
}

.plan-button {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.plan-button:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-2px);
}

.plan-card.featured .plan-button {
    background-color: var(--white);
    color: var(--primary-orange);
}

.plan-card.featured .plan-button:hover {
    background-color: var(--light-gray);
}

.personal-plan {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.personal-plan h3 {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.personal-plan p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--primary-black);
    color: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-black);
    border-radius: 15px;
}

.contact-item i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-item p {
    color: var(--light-gray);
}

.contact-item a {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-gray);
    color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav ul {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .method-content {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .schedule-info {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .about,
    .benefits,
    .plans,
    .contact,
    .method,
    .mascot,
    .schedule {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item,
.plan-card,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}
