/* ACE Winter Camp Registration Form Styles */

.ace-winter-camp-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    padding: 40px 20px;
    margin: 40px 0;
}

.ace-winter-camp-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.ace-winter-camp-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 60px;
    align-items: center;
}

.ace-winter-camp-form-section {
    animation: aceSlideInLeft 0.8s ease-out;
}

.ace-winter-camp-form-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 10px;
    line-height: 1.2;
}

.ace-highlight {
    color: #1e40af;
}

.ace-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 15px;
    font-style: italic;
}

.ace-cta-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 40px;
}

.ace-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.ace-form-group {
    position: relative;
}

.ace-form-group input,
.ace-form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 3px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ace-form-group input:focus,
.ace-form-group select:focus {
    outline: none;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.2);
}

.ace-submit-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e40af;
    border: none;
    padding: 18px 60px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.ace-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.ace-submit-btn:active {
    transform: translateY(-1px);
}

.ace-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ace-image-section {
    position: relative;
    animation: aceSlideInRight 0.8s ease-out;
}

.ace-camp-poster {
    width: 100%;
    height: 600px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(30, 64, 175, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.ace-camp-poster::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: aceRotate 20s linear infinite;
}

.ace-decorative-elements {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    animation: aceFloat 3s ease-in-out infinite;
    z-index: 1;
}

.ace-decorative-elements:first-of-type {
    top: 20px;
    right: 20px;
}

.ace-decorative-elements:nth-of-type(2) {
    top: auto;
    bottom: 20px;
    left: 20px;
    animation-delay: 1s;
}

.ace-poster-header {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e40af;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.ace-poster-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-align: center;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.ace-poster-year {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.ace-poster-location {
    font-size: 1.8rem;
    color: white;
    font-style: italic;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ace-message {
    display: none;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    animation: aceSlideInLeft 0.5s ease-out;
}

.ace-message.ace-success {
    display: block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.ace-message.ace-error {
    display: block;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

/* Animations */
@keyframes aceSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aceSlideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aceFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes aceRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ace-winter-camp-content {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .ace-winter-camp-form-section h1 {
        font-size: 2.5rem;
    }

    .ace-poster-title {
        font-size: 4rem;
    }

    .ace-poster-year {
        font-size: 5rem;
    }

    .ace-image-section {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .ace-form-grid {
        grid-template-columns: 1fr;
    }

    .ace-winter-camp-form-section h1 {
        font-size: 2rem;
    }

    .ace-cta-text {
        font-size: 1.4rem;
    }

    .ace-poster-title {
        font-size: 3rem;
    }

    .ace-poster-year {
        font-size: 4rem;
    }

    .ace-poster-header {
        font-size: 1.5rem;
        padding: 10px 25px;
    }

    .ace-poster-location {
        font-size: 1.4rem;
    }

    .ace-camp-poster {
        height: 500px;
    }

    .ace-submit-btn {
        padding: 15px 40px;
        font-size: 1rem;
    }
    
    .ace-decorative-elements {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .ace-winter-camp-wrapper {
        padding: 20px 10px;
    }

    .ace-winter-camp-content {
        padding: 30px 20px;
    }

    .ace-poster-title {
        font-size: 2.5rem;
    }

    .ace-poster-year {
        font-size: 3rem;
    }
    
    .ace-poster-header {
        font-size: 1.2rem;
        padding: 8px 20px;
    }
}