:root {
    --black: #000;
    --orange: #ff410d;
    --dark-gray: #2c3a40;
    --white: #fff;
    --font-family: 'Futura', sans-serif;
    /* Fallback to sans-serif */
}

html {
    box-sizing: border-box;
    height: 100%;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    font-family: var(--font-family);
    font-size: clamp(16px, 2vw, 20px);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    position: relative;
}

body.no-scroll {
    overflow: hidden;
}

h1 {
    font-weight: 500;
}

a {
    color: var(--white);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Header --- */
.site-header {
    display: flex;
    width: 100%;
    min-height: 25vh;
    position: relative;
    z-index: 10;
}

.header-left {
    flex: 1;
    background: var(--dark-gray) url('../images/backgrounds/tec-website-bg-gray.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
}

.header-right {
    flex: 1;
    background: var(--orange) url('../images/backgrounds/tec-website-bg-red.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.4;
    text-align: left;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

/* Mobile styles */
@media (max-width: 767px) {
    .site-header {
        flex-direction: column;
        height: auto;
        min-height: 35vh;
    }

    .header-left,
    .header-right {
        width: 100%;
        min-height: 12.5vh;
    }

    .header-right {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .logo-container {
        justify-content: center;
    }

    .logo-icons {
        min-height: 100px;
    }
}

.header-right span {
    color: #2c3a40;
}

.logo-icons {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.section-content {
    width: 100%;
}

/* --- Hamburger Menu --- */
.hamburger-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.hamburger-menu::before,
.hamburger-menu::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger-menu::before {
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    border: 3px solid var(--white);
    /* 33% thicker */
}

.hamburger-menu::after {
    width: calc(100% + 35px);
    height: calc(100% + 35px);
    border: 7px solid var(--white);
    /* 33% thicker */
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 2px 0;
    transition: background-color 0.3s;
    z-index: 1;
}

.hamburger-menu:hover span {
    background-color: var(--dark-gray);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dark-gray) url('../images/backgrounds/tec-website-bg-gray.jpg') no-repeat center center/cover;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left align content */
    padding: 20px 40px;
}

.mobile-menu-overlay.open {
    left: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--orange);
    background: none;
    border: 6px solid var(--orange);
    /* 3x thicker */
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.mobile-nav {
    width: 100%;
}

.mobile-nav a {
    display: block;
    margin: 15px 0;
    font-size: clamp(30px, 6vw, 40px);
    /* Larger responsive font size */
    text-transform: uppercase;
    text-align: left;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

.mobile-nav a:hover {
    color: var(--orange);
}

.mobile-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.mobile-social-icons a {
    color: var(--white);
    font-size: 24px;
    transition: color 0.3s ease;
}

.mobile-social-icons a:hover {
    color: var(--orange);
}

/* --- Main Content --- */
.site-main {
    display: flex;
    flex-direction: column;
    /* Mobile-first: stacks sections vertically */
    width: 100%;
    flex: 1;
    /* This is key for filling height */
    background: var(--black) url('../images/backgrounds/tec-website-bg-black.jpg') no-repeat center center/cover;
}

.split-section {
    flex: 1;
    /* Each section will take up equal space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3vh 2vw;
    text-align: center;
}

/* Desktop layout: side-by-side */
@media (min-width: 768px) {
    .site-main {
        flex-direction: row;
    }
}

/* Main section logos */
.site-main .tribute-logo-cure {
    width: clamp(200px, 30vw, 200px);
    height: auto;
    margin: 0 auto 2vh;
}

.site-main .tribute-logo-ylc {
    width: clamp(400px, 30vw, 450px);
    height: auto;
    margin: 3vh auto 3vh;
}

.enter-site-btn {
    border: 1px solid var(--white);
    padding: 10px 20px;
    margin-bottom: 25px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
    font-size: clamp(14px, 1.5vw, 18px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: #000;
    color: var(--white);
    font-family: futura, sans-serif;
}

.enter-site-btn:hover {
    background-color: var(--orange);
    color: var(--black);
    border-color: var(--orange);
}

.show-list {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 25px;
}

.show-list .show-item {
    display: flex;
    width: 100%;
    margin-bottom: 1.5vh;
    font-size: clamp(10px, 1.2vw, 14px);
}

.show-list .show-item .date {
    flex: 0 0 110px;
    text-align: left;
}

.show-list .show-item .venue {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.show-list .show-item .city {
    flex: 0 0 140px;
    text-align: right;
}

/* --- Footer --- */
.site-footer-main {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 20px 200px 20px 200px;
    background-color: var(--black);
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 100px 20px 100px;
    background-color: var(--black);
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-fine-print,
.footer-logo {
    flex: 1;
    text-align: center;
}

.footer-fine-print {
    text-align: left;
    font-size: 0.6em;
    /* 25% smaller than parent */
}

.footer-social-icons {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* Desktop styles */
@media (min-width: 768px) {

    .footer-fine-print,
    .footer-logo,
    .footer-social-icons {
        flex: 1;
    }

    .footer-fine-print {
        order: 1;
        text-align: left;
    }

    .footer-logo {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .footer-social-icons {
        order: 3;
        text-align: right;
        justify-content: flex-end;
    }
}

.footer-social-icons a {
    color: var(--white);
    font-size: 25px;
    /* Increased from 20px to 25px (25% larger) */
    transition: color 0.3s ease;
    width: 37.5px;
    /* Increased from 30px to 37.5px (25% larger) */
    height: 37.5px;
    /* Increased from 30px to 37.5px (25% larger) */
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons a:hover {
    color: var(--orange);
}

.email-link,
.contact-link {
    text-transform: uppercase;
    color: var(--orange);
    transition: color 0.3s;
}

.email-link:hover,
.contact-link:hover {
    color: var(--dark-gray);
}

.logo-link-cure {
    max-width: 250px;
    width: 60%;
}

.logo-link-ylc {
    max-width: 400px;
    width: 60%;
}

/* Base state: show normal image, hide hover image */
.logo-link img.hover {
    display: none;
}

/* On hover: hide normal image, show hover image */
.logo-link:hover img:not(.hover) {
    display: none;
}

.logo-link:hover img.hover {
    display: inline;
}

.about-content,
.contact-content {
    margin: 0 auto;
    text-align: center;
    width: 1000px;
    max-width: 90%;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    padding: 0 20px;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: center;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    font-size: 16px;
    color: var(--white);
    background: #2c3a40;
    border: 1px solid #3a4a50;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Futura', sans-serif;
    margin: 0 auto;
    display: block;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Main ENTER SITE buttons */
.enter-site-btn {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Futura', sans-serif;
    margin: 0 auto;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    min-width: 200px;
}

.enter-site-btn:hover {
    background: var(--orange);
    color: var(--black);
    transform: translateY(-2px);
    border-color: var(--orange);
}

/* Contact form specific button */
.contact-form .enter-site-btn {
    margin: 20px auto 0;
    padding: 12px 40px;
    font-size: 16px;
    letter-spacing: 1px;
    display: block;
    min-width: auto;
    width: auto;
}

.contact-alternative {
    margin-top: 2rem;
    font-size: clamp(14px, 3.5vw, 16px);
    color: var(--white);
    line-height: 1.6;
    max-width: 100%;
    overflow-wrap: break-word;
    padding: 0 15px;
}

.contact-alternative a {
    color: var(--orange);
    transition: color 0.3s;
    text-decoration: none;
}

.contact-alternative a:hover {
    color: #ff6b35;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .contact-form {
        padding: 0;
    }

    .contact-form input,
    .contact-form textarea {
        max-width: 100%;
    }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    body {
        min-height: 100vh;
        /* Ensure body takes full height */
    }

    .site-header {
        background: var(--dark-gray);
        /* Solid color on mobile */
    }

    .site-main {
        flex-direction: column;
        height: auto;
    }

    .split-section {
        width: 100%;
        /* min-height: 50vh; */
        /* Give sections some height */
        padding: 40px 20px;
    }

    .site-footer-main {
        flex-direction: column;
        padding: 20px;
    }

    .footer-fine-print,
    .footer-logo,
    .footer-social-icons {
        flex: none;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-fine-print {
        order: 3;
    }

    .footer-logo {
        order: 1;
    }

    .footer-social-icons {
        order: 2;
    }

    .ylc-section {
        padding-top: 0;
    }

    .section-content {
        width: 100%;
    }
}