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

body {
    overflow-x: hidden;
    width: 100%;
}
/* =====================
   LANDING Section!
===================== */
.landing {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.landing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile responsive for landing image */
@media (max-width: 768px) {
    .landing {
        min-height: 100vh;
        background: linear-gradient(to bottom, #C5ECFE 0%, #C5ECFE 30%, #82B75D 80%);
    }

    .landing-img {
        object-fit: contain;
        object-position: center;
        width: 200%;
        height: 100%;
    }
}

/* Register Button -> Handshake Register Form Link */
.register-btn {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #E07E2E;
    color: white;
    padding: 30px 50px;
    font-family: 'Chewy', cursive;
    font-size: 2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.register-btn:hover {
    background: #e05a48;
}

/* Mobile responsive for register button */
@media (max-width: 768px) {
    .register-btn {
        padding: 20px 35px;
        font-size: 1.5rem;
        width: auto;
        max-width: 80%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .register-btn {
        padding: 15px 25px;
        font-size: 1.3rem;
        max-width: 85%;
    }
}


/* =====================
   ABOUT Section!
===================== */
.about {
    width: 100vw;
    min-height: 100vh;
    background: url("images/tigerHaCCs_one.svg") center top no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 300px;
    gap: 30px;
    font-family: 'Chewy', cursive;
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    z-index: -1;
}

.about-label {
    background: #FFB71B;
    color: #333333;
    padding: 15px 40px;
    border-radius: 15px;
    font-size: 2.5rem;
    letter-spacing: 2px;
    z-index: 1;
    font-weight: bold;
}

.about-title {
    font-size: 3rem;
    color: #EFE1D3;
    text-align: center;
    z-index: 1;
}

.highlight-cc {
    color: #FFB71B;  
}

.about-columns {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.about-column {
    flex: 1;
    min-width: 250px;
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 2;
}

/* Mobile responsive for about section */
@media (max-width: 768px) {
    .about {
        padding-top: 200px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 60px;
    }

    .about-title {
        font-size: 2rem;
        padding: 0 20px;
    }

    .about-columns {
        gap: 40px;
        padding: 0 30px;
        margin-top: 20px;
    }

    .about-column {
        font-size: 1.2rem;
        line-height: 1.8;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .about {
        padding-top: 150px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .about-columns {
        gap: 35px;
        padding: 0 20px;
    }

    .about-column {
        font-size: 1.1rem;
        padding: 0 10px;
    }
}

/* =====================
   SCHEDULE Section!
===================== */
.schedule {
    width: 100vw;
    min-height: 100vh;
    background: #946755;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    font-family: 'Chewy', cursive;
    position: relative;
}

.schedule .section-label {
    background: #FFB71B;
    color: #333333;
    padding: 15px 40px;
    border-radius: 15px;
    font-size: 2.5rem;
    letter-spacing: 2px;
    z-index: 1;
    margin-bottom: 20px;
    font-weight: bold;
}

.schedule .section-title {
    font-size: 3rem;
    color: #EFE1D3;
    text-align: center;
    z-index: 1;
    margin-bottom: 40px;
}

.schedule-container {
    width: 100%;
    max-width: 1200px;
    overflow-x: auto;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    color: #333;
}

.schedule-table thead {
    background: #F3715A;
    color: white;
}

.schedule-table th {
    padding: 15px 10px;
    text-align: left;
    font-size: 1.1rem;
    border-bottom: 2px solid #e05a48;
}

.schedule-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.schedule-table tbody tr:hover {
    background: rgba(243, 113, 90, 0.1);
}

.day-cell {
    font-weight: bold;
    background: rgba(239, 225, 211, 0.5);
    color: #714E67;
    font-size: 1.2rem;
    text-align: center;
}

/* Mobile responsive for schedule */
@media (max-width: 768px) {
    .schedule {
        padding: 60px 10px;
    }

    .schedule .section-title {
        font-size: 2rem;
    }

    .schedule-container {
        padding: 10px;
    }

    .schedule-table {
        font-size: 0.85rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 8px 5px;
    }

    .schedule-table th {
        font-size: 0.95rem;
    }

    .day-cell {
        font-size: 1rem;
    }
}

/* =====================
   THEMES Section!
===================== */
.themes {
    width: 100vw;
    min-height: 100vh;
    background: linear-gradient(to bottom, #946755, #817972);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    font-family: 'Chewy', cursive;
    text-align: center;
}

.themes-box {
    background: rgba(55, 94, 106, 0.55);
    padding: 40px 40px;
    border-radius: 20px;
    max-width: 1000px;
    margin: 30px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    z-index: 2;
    position: relative;
}

.themes-box:first-of-type {
    margin-top: 0;
}

.themes .section-label {
    background: #FFB71B;
    color: #333333;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 15px;
    font-size: 2.5rem;
    margin-bottom: 20px;
    z-index: 1;
    letter-spacing: 2px;
    font-weight: bold;
}

.themes .section-title {
    font-size: 3rem;
    color: #EFE1D3;
    margin-bottom: 20px;
    z-index: 1;
}

.tracks-intro {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
    z-index: 1;
}

.track-guide-btn {
    background: #E07E2E;
    color: white;
    padding: 15px 35px;
    font-family: 'Chewy', cursive;
    font-size: 1.3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
    display: inline-block;
    margin-bottom: 40px;
    z-index: 1;
}

.track-guide-btn:hover {
    background: #e05a48;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.track-title {
    font-size: 2rem;
    color: #FFB71B;
    margin-bottom: 15px;
    font-family: 'Chewy', cursive;
}

.themes .section-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    line-height: 1.6;
}

/* =====================
   FAQs Section!
===================== */
.faqs {
    width: 100vw;
    min-height: 100vh;
    background: #B8DCEC;
    padding: 100px 20px 80px 20px;
    text-align: center;
    font-family: 'Chewy', cursive;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.faqs .section-label {
    background: #FFB71B;
    color: #333333;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 15px;
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: bold;
}

.faqs .section-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
}

.faq-item {
    width: 80%;
    max-width: 800px;
    margin: 10px auto;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 1.1rem;
    color: #333;
}

/* =====================
   SPONSORS Section!
===================== */
.sponsors {
    width: 100vw;
    min-height: 100vh;
    background-image: url('images/tigerHaCCs_three.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 200px 20px 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Chewy', cursive;
    text-align: center;
    position: relative;
}

.sponsors::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.sponsors .section-label {
    background: #FFB71B;
    color: #333333;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 15px;
    font-size: 2.5rem;
    margin-bottom: 20px;
    z-index: 1;
    letter-spacing: 2px;
    font-weight: bold;
}

.sponsors .section-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 800px;
    z-index: 1;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.sponsor-logo {
    flex: 0 0 calc(50% - 15px);
    max-width: 400px;
    height: auto;
    object-fit: contain;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    position: relative;
}

.sponsor-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Mobile responsive for sponsors */
@media (max-width: 768px) {
    .sponsors {
        padding: 60px 20px;
    }

    .sponsors-grid {
        gap: 20px;
        padding: 10px;
        max-width: 600px;
    }

    .sponsor-logo {
        flex: 0 0 calc(50% - 10px);
        max-width: 250px;
        padding: 20px;
    }
}

/* =====================
   FOOTER Section!
===================== */
.footer {
    width: 100vw;
    padding: 30px 20px;
    background: #333;
    color: white;
    text-align: center;
    font-family: 'Chewy', cursive;
    font-size: 1rem;
}
