/* Registration Page Styles */

/* Registration Hero Section */
.register-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.register-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.register-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.register-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}

.register-hero-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 12px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(132, 24, 24, 0.6);
    animation: none;
}

.register-hero-subtitle {
    font-size: 24px;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: none;
}

.register-date {
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.4s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.date-days {
    font-size: 96px;
    font-weight: 900;
    color: var(--color-red);
    letter-spacing: 8px;
    line-height: 1;
    text-shadow: 
        0 0 20px rgba(132, 24, 24, 0.8),
        0 0 40px rgba(132, 24, 24, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.5);
}

.date-month {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Registration Info Section */
.register-info-section {
    background: #000000;
    padding: 60px 0;
}

.register-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.info-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(132, 24, 24, 0.3);
    border-radius: 0;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: none; /* disabled pop-up */
    border-color: rgba(132, 24, 24, 0.3);
    box-shadow: none;
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(132, 24, 24, 0.2), rgba(132, 24, 24, 0.4));
    border-radius: 0;
    color: var(--color-red);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.info-card p {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.6;
}

/* Registration Steps Section */
.register-steps-section {
    background: rgba(0, 0, 0, 0.95);
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(132, 24, 24, 0.2);
    border-radius: 0;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: scale(1.05);
    border-color: rgba(132, 24, 24, 0.5);
    background: rgba(26, 26, 26, 0.8);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-red), #a82020);
    color: var(--color-white);
    font-size: 28px;
    font-weight: 900;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(132, 24, 24, 0.4);
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
}

/* Registration CTA Section */
.register-cta-section {
    background: #000000;
    padding: 80px 0;
}

.register-cta-box {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(132, 24, 24, 0.4);
}

.cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(132,24,24,0.3));
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 40px;
    max-width: 700px;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-content > p {
    font-size: 18px;
    color: rgba(250, 250, 250, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.register-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--color-red), #a82020);
    color: var(--color-white);
    padding: 20px 50px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(132, 24, 24, 0.5);
    position: relative;
    overflow: hidden;
}

.register-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.register-main-btn:hover::before {
    left: 100%;
}

.register-main-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(132, 24, 24, 0.7);
}

.register-main-btn svg {
    transition: transform 0.3s ease;
}

.register-main-btn:hover svg {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(250, 250, 250, 0.6);
    font-style: italic;
}

/* Register Contact Section */
.register-contact-section {
    background: rgba(0, 0, 0, 0.95);
    padding: 80px 0;
}

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(250, 250, 250, 0.7);
    margin-top: 15px;
    margin-bottom: 50px;
}

.contact-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card-compact {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(132, 24, 24, 0.3);
    border-radius: 0;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card-compact:hover {
    transform: translateY(-5px);
    border-color: rgba(132, 24, 24, 0.6);
    box-shadow: 0 15px 35px rgba(132, 24, 24, 0.3);
}

.contact-card-compact h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(132, 24, 24, 0.3);
}

.coordinator-info p {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.85);
    margin: 10px 0;
    line-height: 1.6;
}

.coordinator-info strong {
    color: var(--color-white);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-hero {
        height: 40vh;
        min-height: 350px;
        margin-top: 70px;
    }

    .register-hero-title {
        font-size: 42px;
        letter-spacing: 6px;
    }

    .register-hero-subtitle {
        font-size: 18px;
    }

    .register-date {
        margin-top: 30px;
        animation: none;

    .date-days {
        font-size: 64px;
        letter-spacing: 4px;
    }

    .date-month {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .register-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        padding: 30px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content > p {
        font-size: 16px;
    }

    .register-main-btn {
        padding: 16px 40px;
        font-size: 16px;
    }

    .contact-grid-compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .register-hero {
        height: 35vh;
        min-height: 300px;
    }

    .register-hero-title {
        font-size: 32px;
        letter-spacing: 4px;
    }

    .register-hero-subtitle {
        font-size: 16px;
    }

    .register-date {
        margin-top: 15px;
    }

    .date-days {
        font-size: 52px;
        letter-spacing: 2px;
    }

    .date-month {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .info-card {
        padding: 25px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .step-card {
        padding: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .cta-content {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .register-main-btn {
        padding: 14px 30px;
        min-height: 44px;
        font-size: 14px;
    }

    /* Better text readability on mobile */
    .info-card h3,
    .step-card h3 {
        font-size: 18px;
    }

    .info-card p,
    .step-card p {
        font-size: 15px;
    }

    /* Ensure contact cards are touch-friendly */
    .contact-card-compact {
        padding: 20px;
    }

    .coordinator-phone a,
    .coordinator-email a {
        font-size: 15px;
        padding: 8px 0;
        display: block;
    }
}

/* Very small screens */
@media (max-width: 375px) {
    .register-hero-title {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .register-hero-subtitle {
        font-size: 14px;
    }

    .info-card,
    .step-card {
        padding: 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .register-main-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .contact-card-compact {
        padding: 30px 20px;
    }
}

/* Location Map Styles */
.location-map-container {
    margin-bottom: 60px;
    background: rgba(132, 24, 24, 0.05);
    border: 2px solid rgba(132, 24, 24, 0.2);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.location-map-container:hover {
    border-color: var(--color-red);
    box-shadow: 0 0 30px rgba(132, 24, 24, 0.3);
}

.map-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(20%) contrast(1.1);
}

.map-address {
    text-align: center;
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
}

.map-address strong {
    color: var(--color-red);
    font-size: 18px;
}

/* Responsive Map Styles */
@media (max-width: 768px) {
    .location-map-container {
        padding: 25px 20px;
        margin-bottom: 40px;
    }

    .map-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .map-wrapper iframe {
        height: 300px !important;
    }

    .map-address {
        font-size: 14px;
    }

    .map-address strong {
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .location-map-container {
        padding: 20px 15px;
    }

    .map-title {
        font-size: 20px;
    }

    .map-wrapper iframe {
        height: 250px !important;
    }
}
