/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* === MAIN HEADER === */
.main-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #eb008b 0%, #ff69b4 100%);
    color: white;
}

.main-header h1 {
    font-size: 4em;
    margin-bottom: 10px;
    font-weight: 700;
}

.tagline {
    font-size: 1.5em;
    font-style: italic;
    font-weight: 300;
}

/* === NAVIGATION === */
nav {
    background-color: #f8f8f8;
    border-top: 3px solid #eb008b;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: 10px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #eb008b;
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu li {
    margin: 5px 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #eb008b;
    font-weight: 600;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s;
    border-radius: 4px;
}

.nav-menu a:hover {
    color: #eb008b;
    background-color: rgba(233, 30, 99, 0.1);
}

/* === BANNER IMAGE === */
.header-banner {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    max-height: 300px;
}

.header-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 300px;
}

/* === MAIN CONTENT === */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 60px;
}

.content h2 {
    font-size: 2.2em;
    color: #eb008b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #eb008b;
}

.content h3 {
    color: #eb008b;
    margin: 25px 0 15px 0;
    font-size: 1.5em;
}

.content h4 {
    color: #333;
    margin: 20px 0 10px 0;
    font-size: 1.2em;
}

.content p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

.content strong {
    color: #eb008b;
    font-weight: 600;
}

/* === HIGHLIGHT BOX === */
.highlight-box {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    border-left: 5px solid #eb008b;
    padding: 10px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.1);
}

/* === EVENT DATE BOX === */
.event-date-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    border-radius: 12px;
    margin: 40px 0;
    border: 3px solid #eb008b;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.date-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.event-date-box h3 {
    font-size: 2em;
    color: #eb008b;
    margin: 10px 0;
}

.date-details {
    font-size: 1.2em;
    color: #666;
    margin: 10px 0;
}

.participant-goal {
    text-align: center;
    font-size: 1.3em;
    color: #333;
    margin-top: 20px;
}

.countdown-container {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #eb008b;
}

.countdown-container h4 {
    font-size: 1.3em;
    color: #eb008b;
    margin-bottom: 20px;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: white;
    border: 3px solid #eb008b;
    border-radius: 12px;
    padding: 20px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.2);
}

.countdown-value {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #eb008b;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

/* === COURSES GRID === */
/* === COURSES GRID === */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.course-card {
    background: white;
    padding: 0;
    border-radius: 12px;
    border: 2px solid #e91e63;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.2);
}

.course-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
}

.course-image a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-image a::after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(233, 30, 99, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    opacity: 0;
    transition: opacity 0.3s;
}

.course-card:hover .course-image a::after {
    opacity: 1;
}

.course-card h3 {
    color: #e91e63;
    font-size: 1.5em;
    margin: 20px 0 15px 0;
    padding: 0 20px;
}

.course-card p {
    padding: 0 20px 20px 20px;
    margin: 0;
}

.distance {
    font-size: 2.5em;
    font-weight: bold;
    color: #e91e63;
    margin: 15px 0;
}

/* === REGISTRATION SECTION === */
.registration-box {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    padding: 40px;
    border-radius: 12px;
    border: 3px solid #eb008b;
    margin: 30px 0;
}

.reg-header {
    text-align: center;
    margin-bottom: 30px;
}

.reg-header h3 {
    font-size: 2em;
    color: #eb008b;
    margin-bottom: 10px;
}

.reg-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.reg-info h4 {
    color: #eb008b;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #eb008b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

.btn-primary:hover {
    background-color: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: #eb008b;
    text-decoration: none;
    border: 2px solid #eb008b;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #eb008b;
    color: white;
}

.qr-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: white;
    border: 3px solid #eb008b;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pickup-info {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.pickup-info h4 {
    color: #eb008b;
    margin-bottom: 15px;
}

.important-note {
    color: #eb008b;
    font-weight: 600;
    margin-top: 15px;
}

/* === RESULTS SECTION === */
.results-section {
    margin: 40px 0;
}

.results-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.results-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: #eb008b;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
    font-weight: 600;
}

.results-link:hover {
    background-color: #c2185b;
}
/* === SOCIAL MEDIA === */

.social-media-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.social-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* === TESTIMONIALS === */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.testimonial-card {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #eb008b;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    text-align: right;
    color: #eb008b;
    font-weight: 600;
}

/* === PARTNERS === */
.partners-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #eb008b;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.become-partner {
    text-align: center;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.become-partner h3 {
    color: #eb008b;
    margin-bottom: 20px;
}

.charity-section {
    margin-top: 50px;
}

.charity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.charity-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #eb008b;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.charity-card h4 {
    color: #eb008b;
    margin-bottom: 15px;
}

.charity-card img {
    width: 200px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

/* === NEWSLETTER === */
.newsletter-section {
    text-align: center;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    padding: 50px 30px;
    border-radius: 12px;
    margin: 50px 0;
}

.newsletter-section h2 {
    border: none;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    border: 2px solid #eb008b;
    border-radius: 8px;
    font-size: 1em;
}

/* === CONTACT === */
.contact-section {
    margin-top: 20px;
}

.contact-box {
    background-color: #fff0f5;
    padding: 40px;
    margin: 20px 0;
    border-radius: 12px;
    text-align: center;
    border: 3px solid #eb008b;
}

.contact-image{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 600px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4em;
    color: #eb008b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.email-link:hover {
    color: #c2185b;
}

.email-icon {
    font-size: 1.8em;
}

/* === FOOTER === */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.footer-col h4 {
    color: #eb008b;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ff69b4;
}

.footer .social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .social-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .social-links a:hover {
    color: #ff69b4;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

.footer-note {
    font-size: 0.9em;
    margin-top: 10px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .main-header h1 {
        font-size: 2.5em;
    }

    .tagline {
        font-size: 1.1em;
    }

    nav {
        position: fixed;
        top: 10vh;
        right: 0;
        left: auto;
        width: auto;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

    .burger-menu {
        display: flex;
        position: fixed;
        right: 15px;
        top: 10vh;
        left: auto;
        transform: none;
        z-index: 101;
        background-color: #eb008b;
        border-radius: 8px;
        padding: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .burger-menu span {
        background-color: white;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        left: auto;
        top: calc(10vh + 60px);
        flex-direction: column;
        background-color: #f8f8f8;
        width: 80%;
        max-width: 300px;
        text-align: center;
        transition: right 0.3s;
        box-shadow: -4px 4px 12px rgba(0,0,0,0.15);
        padding: 20px 0;
        max-height: calc(90vh - 10vh - 60px);
        overflow-y: auto;
        border-radius: 8px 0 0 8px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 10px 0;
        width: 100%;
    }

    .nav-menu a {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .site-title h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1.1em;
    }

    .header-banner {
        max-height: 200px;
    }

    .header-banner img {
        object-fit: contain;
        max-height: 200px;
    }

    .container {
        padding-top: 20px;
    }

    .content h2 {
        font-size: 1.6em;
    }

    .event-date-box {
        padding: 25px;
    }

    .event-date-box h3 {
        font-size: 1.5em;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }

    .countdown-value {
        font-size: 2em;
    }

    .countdown-label {
        font-size: 0.75em;
    }

    .reg-details {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    .language-toggle {
        top: 10px;
        right: 10px;
    }

    .header-banner {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .site-title h1 {
        font-size: 1.6em;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .registration-box {
        padding: 25px;
    }

    .social-media-links {
        flex-direction: column;
    }
}