/* NCPA Junior Registration Page Styles */

:root {
  --ncpa-blue: #7EADED;
  --ncpa-bg: #000;
  --ncpa-panel: #1a1a1a;
  --ncpa-text: #fff;
  --ncpa-muted: #b9c4d3;
  --ncpa-border: rgba(255,255,255,0.1);
  --beginner-color: #4CAF50;
  --intermediate-color: #FF9800;
  --advanced-color: #9C27B0;
}

.ncpa-junior-registration {
    background-color: var(--ncpa-bg);
    color: var(--ncpa-text);
    font-family: 'Lexend Peta', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 4rem 1rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    width: calc(100% - 2rem);
    height: auto;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    padding: 0 1rem;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--ncpa-blue);
    margin-bottom: 2rem;
    font-weight: 700;
    word-wrap: break-word;
    text-align: center;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
}

/* Hero Register Button */
.hero-register-button {
    margin-top: 2rem;
    text-align: center;
}

.hero-register-button .register-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    max-width: 300px;
}

/* Gallery Section */
.gallery-section {
    padding: 2rem 1rem;
    background: rgba(126, 173, 237, 0.05);
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--ncpa-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 1rem;
    background: rgba(126, 173, 237, 0.1);
}

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
    padding: 0 1rem;
}

/* Registration Costs */
.registration-costs {
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(126, 173, 237, 0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
}

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

.cost-item {
    padding: 1.5rem;
    background: var(--ncpa-panel);
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cost-item.beginner {
    border-color: var(--beginner-color);
}

.cost-item.intermediate {
    border-color: var(--intermediate-color);
}

.cost-item.advanced {
    border-color: var(--advanced-color);
}

.cost-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cost-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.cost-header i {
    font-size: 2em;
    margin-bottom: 0.5rem;
}

.cost-item.beginner .cost-header i {
    color: var(--beginner-color);
}

.cost-item.intermediate .cost-header i {
    color: var(--intermediate-color);
}

.cost-item.advanced .cost-header i {
    color: var(--advanced-color);
}

.cost-header h4 {
    margin: 0;
    color: var(--ncpa-text);
    font-size: 1.3em;
}

.cost-amount {
    color: var(--ncpa-blue);
    font-size: 2rem;
    font-weight: 700;
}

/* Registration Buttons */
.registration-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 0 0;
    padding: 0;
    width: 100%;
    text-align: center;
    position: relative;
    left: 0;
    right: 0;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    margin: 0;
    max-width: 200px;
    line-height: 1.3;
}

.register-btn i {
    font-size: 1.2rem;
}

.register-btn.primary {
    background: var(--ncpa-blue);
    color: #000;
    border: 2px solid var(--ncpa-blue);
}

.register-btn.primary:hover {
    background: transparent;
    color: var(--ncpa-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(126, 173, 237, 0.3);
}

.register-btn.secondary {
    background: transparent;
    color: var(--ncpa-blue);
    border: 2px solid var(--ncpa-blue);
}

.register-btn.secondary:hover {
    background: var(--ncpa-blue);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(126, 173, 237, 0.3);
}

/* Fees Section */
.fees-section {
    padding: 4rem 1rem;
}

.registration-info {
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
    padding: 0 1rem;
}

.registration-periods {
    margin-top: 1rem;
}

.period {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--ncpa-panel);
    border-radius: 10px;
    border: 1px solid var(--ncpa-border);
    transition: all 0.3s ease;
}

.period:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.period.early-bird {
    border-left: 4px solid var(--beginner-color);
}

.period.regular {
    border-left: 4px solid var(--intermediate-color);
}

.period-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.period-header i {
    color: var(--ncpa-blue);
    font-size: 1.2rem;
}

.period-header strong {
    color: var(--ncpa-blue);
    font-size: 1.2rem;
}

.period ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.period li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--ncpa-muted);
}

/* Discount Policy */
.discount-policy {
    background: rgba(126, 173, 237, 0.1);
    border: 1px solid var(--ncpa-blue);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.discount-policy h4 {
    color: var(--ncpa-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.discount-policy p {
    margin: 0;
    color: var(--ncpa-text);
    font-size: 1rem;
}

/* Season Outline Link */
.season-outline-link {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
}

.outline-btn {
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--ncpa-blue);
    padding: 0.8rem 1.5rem;
    background: var(--ncpa-blue);
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(126, 173, 237, 0.3);
    max-width: 250px;
    white-space: nowrap;
}

.outline-btn:hover {
    color: var(--ncpa-blue);
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 173, 237, 0.4);
}

/* Tour Section */
.tour-section, .questions-section {
    padding: 4rem 1rem;
}

.tour-content, .questions-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
    padding: 0 1rem;
}

.tour-content p, .questions-content p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--ncpa-muted);
}

/* Scholarship Button */
.scholarship-button {
    margin-top: 2rem;
}

.scholarship-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: var(--ncpa-blue);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--ncpa-blue);
    max-width: 250px;
    white-space: nowrap;
}

.scholarship-btn i {
    font-size: 1.2rem;
}

.scholarship-btn:hover {
    background: transparent;
    color: var(--ncpa-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(126, 173, 237, 0.3);
}

/* Questions Section */
.questions-content a {
    color: var(--ncpa-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.questions-content a:hover {
    color: #fff;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .cost-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .cost-item {
        padding: 1rem;
    }

    .registration-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .register-btn {
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-register-button {
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-register-button .register-btn {
        max-width: 280px;
        padding: 0.9rem 1.8rem;
        font-size: 1.05rem;
    }

    .period {
        padding: 1rem;
        margin: 0 0.5rem 1rem;
    }

    .period-header strong {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .discount-policy {
        margin: 2rem 0.5rem;
        padding: 1rem;
    }

    .discount-policy h4 {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .outline-btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
        max-width: 280px;
    }

    .scholarship-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        padding: 0 0.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .hero-register-button {
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-register-button .register-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        gap: 10px;
    }

    .gallery-section {
        padding: 1.5rem 0.5rem;
        margin-bottom: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }

    .benefits-section, .fees-section, .tour-section, .questions-section {
        padding: 2rem 0.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
        padding: 0 0.5rem;
        line-height: 1.2;
    }

    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .cost-item {
        padding: 0.8rem;
        margin: 0 0.5rem;
    }

    .cost-header h4 {
        font-size: 1.1rem;
    }

    .cost-amount {
        font-size: 1.6rem;
    }

    .registration-buttons {
        gap: 0.8rem;
    }

    .register-btn, .scholarship-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        max-width: 260px;
    }

    .period {
        padding: 0.8rem;
        margin: 0 0.5rem 1rem;
    }

    .period-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .period-header strong {
        font-size: 0.95rem;
        text-align: center;
    }

    .period li {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .discount-policy {
        margin: 1.5rem 0.5rem;
        padding: 1rem;
    }

    .discount-policy h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .discount-policy p {
        font-size: 0.9rem;
    }

    .outline-btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
        max-width: 260px;
    }

    .tour-content p, .questions-content p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .scholarship-button {
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }
} 