﻿:root {
    --primary-color: #B08958;
    --background-color: #141414;
    --background-color-2: #0E202D;
    --background-color-3: rgba(176, 136, 88, 0.301);
    --text-color: #f0f0f0;
    --heading-font: "Bebas Neue", sans-serif;
    --paragraph-font: "Aleo", serif;
    --nav-font: "Nunito", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    font-family: var(--heading-font);
    letter-spacing: 0.05em;
    font-size: 24px;
    padding: 10px 20px;
    margin-top: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(176, 136, 88, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin: 0;
}

h1 {
    font-size: 280px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 400;
}

h2 {
    font-size: 85px;
    color: var(--text-color);
    margin: 0;
    letter-spacing: 0.05em;
    font-weight: 300;
}

h3 {
    font-size: 72px;
    color: var(--text-color);
    margin: 0;
    letter-spacing: 0.02em;
    font-weight: 300;
    margin-bottom: 40px;
}

h6 {
    font-size: 24px;
    color: var(--text-color);
    margin: 0;
    letter-spacing: 0.05em;
    font-weight: 400;
}

p {
    font-family: var(--paragraph-font);
    color: #CACACA;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.main-title {
    line-height: 0.9;
    margin-bottom: 0;
    margin-top: auto;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2.5px var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(176, 137, 88, 0.25));
}

.main-subtitle {
    line-height: 1;
    margin-top: 0;
}

h4 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: 0;
    padding: 24px 0;
    background: linear-gradient(#000000ef 0%, rgba(0, 0, 0, 0) 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-100%);
    animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes navSlideDown {
    to {
        transform: translateY(0);
    }
}

nav.scrolled {
    padding: 12px 0;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(176, 136, 88, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

nav a {
    color: var(--text-color);
    font-family: var(--nav-font);
    font-size: 24px;
    margin-left: 20px;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

nav a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

nav a:hover::after {
    width: 100%;
}

.header-logo-link,
.header-logo-link:hover,
.header-logo-link:focus,
.header-logo-link:active {
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    text-decoration: none !important;
    margin-left: 0 !important;
}

.header-logo-link::after {
    display: none !important;
}

.container {
    padding: 80px 15%;
}

.header-content {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-button-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero {
    background: linear-gradient(180deg, rgba(1, 22, 39, 0.65) 0%, rgba(1, 22, 39, 0.65) 70%, var(--background-color) 100%), 
            url('./photos/hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    width: 100%;
    padding: 0 10%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    margin-top: 90px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content img {
    width: 60%;
    max-height: 500px;
    border-radius: 100px 100px 20px 20px;
    object-fit: cover;
}

.concerts {
    background-color: var(--background-color-2);
    box-sizing: border-box;
    text-align: center;
}

.concerts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.concert-card {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(176, 136, 88, 0.3);
}

.concert-card-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.4);
    transform: scale(1.1);
    z-index: 1;
}

.concert-card-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    display: block;
}

.concert-card.is-portrait .concert-card-bg {
    display: block;
}

.concert-card.is-portrait .concert-card-img {
    object-fit: contain;
}

.concert-card.is-landscape .concert-card-bg {
    display: none;
}

.concert-card.is-landscape .concert-card-img {
    object-fit: cover;
}

.band-members {
    background-color: var(--background-color-2);
    box-sizing: border-box;
    text-align: center;
}

.band-member {
    width: 100%;
    text-align: left;
}

.band-member img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.band-member h4 {
    font-size: 32px;
    margin-bottom: 10px;
}

.band-member p {
    font-size: 16px;
}

.band-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.school-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    line-height: 0.95;
}

.school-title .title-primary {
    font-size: 72px;
    color: var(--text-color);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.school-title .title-secondary {
    font-size: 32px;
    color: var(--primary-color);
    letter-spacing: 0.15em;
    font-weight: 300;
    margin-top: 8px;
    position: relative;
    padding-bottom: 15px;
}

.school-title .title-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.school-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.school-container img {
    width: 30%;
    max-height: 400px;
    height: auto;
    object-fit: contain;
}

.school-text p {
    margin: 0 0 80px 0;
}

.school-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.school-benefit-item {
    font-family: var(--paragraph-font);
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.school-benefit-item i {
    color: var(--primary-color);
}

.school-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    background-color: var(--background-color-3);
    border: solid 1px var(--primary-color);
    padding: 10px 20px;
    border-radius: 10px;
}

.school-info p {
    margin: 0;
}

.school-info i {
    color: var(--primary-color);
    font-size: 24px;
}

.school-button-container {
    display: flex;
    gap: 20px;
}

.school-button-container button {
    margin: 0;
}

.contact-content h3 {
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-item p {
    font-size: 18px;
    color: #CACACA;
    margin: 0;
    font-family: var(--paragraph-font);
}

.contact-item a {
    font-size: 18px;
    color: #CACACA;
    margin: 0;
    font-family: var(--paragraph-font);
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item a:hover::after {
    width: 100%;
}

.socials {
    margin-top: 100px;
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: center;
}

.socials a {
    color: var(--text-color);
    font-family: var(--heading-font);
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: color 0.3s ease;
}

.socials a img,
.socials a i {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.socials a:hover {
    color: var(--primary-color);
}

.socials a:hover img,
.socials a:hover i {
    transform: scale(1.1);
}

.socials i {
    font-size: 50px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 1005;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hamburger-menu:hover,
.hamburger-menu:focus,
.hamburger-menu:active,
.hamburger-menu.active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    outline: none !important;
}

.hamburger-menu:hover span {
    background-color: var(--primary-color);
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary-color);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary-color);
}

@media (min-width: 1201px) {
    .hamburger-menu {
        display: none !important;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .header-content {
        width: 92%;
    }
    .header-content h4 {
        font-size: 32px;
    }
    nav a {
        font-size: 20px;
    }
    .header-button-container {
        gap: 24px;
    }
    .header-button-container .header-button {
        margin-left: 0;
    }
    .container {
        padding: 80px 10%;
    }
    .about-content img {
        width: 50%;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 60px 8%;
    }

    h1 {
        font-size: 280px;
    }

    h2 {
        font-size: 90px;
    }

    h3 {
        font-size: 48px;
    }

    .school-title .title-primary {
        font-size: 56px;
    }

    .school-title .title-secondary {
        font-size: 26px;
    }

    .hero {
        padding: 0 8%;
    }

    .hero-titles {
        width: 100%;
        text-align: center;
    }

    .audio-player-wrapper {
        align-items: center;
        align-self: center;
    }

    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        z-index: 999;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, backdrop-filter 0.4s ease, visibility 0.4s;
    }

    body:has(.hamburger-menu.active)::after {
        opacity: 1;
        visibility: visible;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        pointer-events: auto;
    }

    nav {
        width: 100%;
        z-index: 1010;
    }

    nav a::after {
        display: none !important;
    }

    nav:has(.hamburger-menu.active) {
        background: rgba(20, 20, 20, 0.98);
    }

    .hamburger-menu {
        display: flex;
    }

    .header-button-container {
        display: flex;
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        width: 100%;
        background-color: rgba(20, 20, 20, 0.98);
        border-bottom: 2px solid var(--primary-color);
        padding: 0;
        gap: 0;
        z-index: 1000;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                    opacity 0.3s ease, 
                    visibility 0.4s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .header-button-container.active {
        max-height: 380px;
        opacity: 1;
        visibility: visible;
        padding: 15px 0;
    }

    .header-button-container .header-button {
        height: 48px;
        line-height: 48px;
        padding: 0 !important;
        display: block;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        margin: 0 !important;
        border: none;
        font-size: 18px;
        color: var(--text-color);
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
        text-decoration: none;
    }

    .header-button-container.active .header-button {
        opacity: 1;
        transform: translateY(0);
    }

    .header-button-container.active .header-button:nth-child(1) { transition-delay: 0.1s; }
    .header-button-container.active .header-button:nth-child(2) { transition-delay: 0.15s; }
    .header-button-container.active .header-button:nth-child(3) { transition-delay: 0.2s; }
    .header-button-container.active .header-button:nth-child(4) { transition-delay: 0.25s; }
    .header-button-container.active .header-button:nth-child(5) { transition-delay: 0.3s; }
    .header-button-container.active .header-button:nth-child(6) { transition-delay: 0.35s; }

    .header-button-container .header-button:hover {
        color: var(--primary-color);
        text-decoration: none;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-content img {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border-radius: 40px 40px 15px 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .concerts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .band-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .school-container {
        flex-direction: column;
        gap: 40px;
        position: relative;
    }

    .school-container img {
        display: block;
        width: 50%;
        max-width: 220px;
        height: auto;
        margin: 20px auto 0 auto;
        filter: drop-shadow(0 10px 20px rgba(176, 136, 88, 0.3));
    }

    .contact-info {
        flex-direction: column;
        width: 100%;
        gap: 40px;
    }

    .socials {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 5%;
    }

    h1 {
        font-size: 180px;
    }

    h2 {
        font-size: 65px;
    }

    h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .school-title .title-primary {
        font-size: 44px;
    }

    .school-title .title-secondary {
        font-size: 22px;
    }

    h4 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .hero {
        padding: 0 5%;
        height: 80vh;
    }

    .band-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .band-member h4 {
        font-size: 24px;
    }

    .band-member p {
        font-size: 16px;
    }

    .concert-card {
        max-height: 350px;
    }

    .school-benefits {
        gap: 20px;
    }

    .school-benefit-item {
        font-size: 18px;
    }

    .socials {
        flex-direction: column;
        gap: 30px;
    }

    .socials i {
        font-size: 40px;
    }

    .audio-player-label {
        text-align: center;
        width: 100%;
    }

    .custom-audio-player {
        width: 310px;
        padding: 8px 16px;
        gap: 10px;
        margin: 0 auto;
    }

    .audio-play-btn {
        width: 38px;
        height: 38px;
        font-size: 14px !important;
    }

    .audio-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 60px 4%;
    }

    h1 {
        font-size: 130px;
    }

    h2 {
        font-size: 48px;
    }

    h3 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .school-title .title-primary {
        font-size: 36px;
    }

    .school-title .title-secondary {
        font-size: 18px;
    }

    p {
        font-size: 16px;
    }

    button {
        font-size: 20px;
        padding: 8px 16px;
    }

    .hero {
        padding: 0 4%;
        height: 80vh;
    }

    .hero-titles {
        text-align: center;
    }

    .audio-player-label {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .custom-audio-player {
        width: 260px;
        padding: 6px 12px;
        gap: 8px;
    }

    .audio-play-btn {
        width: 32px;
        height: 32px;
        font-size: 12px !important;
    }

    .audio-title {
        font-size: 11px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-content img {
        display: block;
        width: 100%;
        max-width: 320px;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border-radius: 25px 25px 10px 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        margin-bottom: 10px;
    }

    .band-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .band-member h4 {
        font-size: 20px;
    }

    .concerts-grid {
        grid-template-columns: 1fr;
    }

    .concert-card {
        max-height: 280px;
    }

    .school-container img {
        display: block;
        width: 60%;
        max-width: 180px;
        margin: 20px auto 0 auto;
        filter: drop-shadow(0 8px 16px rgba(176, 136, 88, 0.25));
    }

    .contact-item {
        align-items: center;
        text-align: center;
    }

    .socials {
        gap: 20px;
    }

    .socials a {
        font-size: 18px;
        gap: 10px;
    }
}

footer {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(176, 136, 88, 0.15);
    padding: 80px 0 40px 0;
    margin-top: 100px;
    font-family: var(--paragraph-font);
}

.footer-grid {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

@media (max-width: 1200px) {
    .footer-grid {
        width: 90%;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-col h4 {
    font-family: var(--heading-font);
    font-size: 32px;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-col h6 {
    font-family: var(--heading-font);
    font-size: 20px;
    color: var(--text-color);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-col p {
    font-size: 16px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.brand-col .brand-desc {
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(176, 136, 88, 0.2);
    color: var(--text-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a0a0a0;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col.contact-col p {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-col.contact-col p i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.footer-col.contact-col p a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col.contact-col p a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 1200px) {
    .footer-bottom {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.footer-bottom p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.footer-link {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

.footer-link:hover {
    color: var(--primary-color);
}

.admin-link {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.admin-link:hover {
    color: var(--primary-color);
}

.admin-body {
    background-color: var(--background-color);
    background: radial-gradient(circle at 50% 50%, #172836 0%, var(--background-color) 100%);
    color: var(--text-color);
    font-family: var(--nav-font);
    min-height: 100vh;
}

.admin-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-header {
    background: rgba(14, 32, 45, 0.75) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(176, 136, 88, 0.25) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(176, 136, 88, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header-content {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-family: var(--heading-font);
    font-size: 54px;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(176, 136, 88, 0.3);
}

.back-link {
    color: var(--text-color) !important;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(176, 136, 88, 0.3);
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(176, 136, 88, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.back-link:hover {
    background: var(--primary-color);
    color: var(--background-color) !important;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(176, 136, 88, 0.3);
}

.admin-main {
    flex: 1;
    padding: 50px 0;
}

.admin-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-card {
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 136, 88, 0.1) !important;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.admin-card:hover {
    border-color: rgba(176, 136, 88, 0.25) !important;
}

.admin-card h2 {
    font-family: var(--heading-font);
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.admin-card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-card-header-flex h2 {
    margin-bottom: 0 !important;
}

.admin-card-header-flex .admin-btn-toggle {
    margin: 0 !important;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    color: #bbb;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group input[type="datetime-local"] {
    background-color: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    padding: 0 18px;
    height: 50px;
    line-height: 48px;
    box-sizing: border-box;
    border-radius: 8px;
    font-family: var(--nav-font);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="datetime-local"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(176, 136, 88, 0.2);
    background-color: rgba(20, 20, 20, 0.95);
}

.form-group input[type="date"],
.form-group input[type="datetime-local"] {
    display: inline-flex;
    align-items: center;
}

.form-group input[type="date"]::-webkit-datetime-edit,
.form-group input[type="datetime-local"]::-webkit-datetime-edit {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 100%;
}

.form-group input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.form-group input[type="datetime-local"]::-webkit-datetime-edit-fields-wrapper {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 100%;
}

.form-group input[type="date"]::-webkit-datetime-edit-text,
.form-group input[type="date"]::-webkit-datetime-edit-month-field,
.form-group input[type="date"]::-webkit-datetime-edit-day-field,
.form-group input[type="date"]::-webkit-datetime-edit-year-field,
.form-group input[type="datetime-local"]::-webkit-datetime-edit-text,
.form-group input[type="datetime-local"]::-webkit-datetime-edit-month-field,
.form-group input[type="datetime-local"]::-webkit-datetime-edit-day-field,
.form-group input[type="datetime-local"]::-webkit-datetime-edit-year-field,
.form-group input[type="datetime-local"]::-webkit-datetime-edit-hour-field,
.form-group input[type="datetime-local"]::-webkit-datetime-edit-minute-field {
    font-family: var(--nav-font);
    font-size: 16px;
    color: var(--text-color);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-group input[type="file"] {
    color: #bbb;
    font-family: var(--nav-font);
    font-size: 16px;
}

.admin-btn,
.admin-btn-logout,
.admin-btn-toggle {
    background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--text-color) !important;
    font-family: var(--heading-font) !important;
    letter-spacing: 0.05em !important;
    font-size: 20px !important;
    padding: 10px 20px !important;
    margin: 10px 0 0 0 !important;
    border-radius: 0px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: none !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.admin-btn:hover,
.admin-btn-logout:hover,
.admin-btn-toggle:hover {
    background-color: var(--primary-color) !important;
    color: var(--background-color) !important;
}

.admin-welcome-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.admin-welcome-actions .admin-btn-toggle,
.admin-welcome-actions .admin-btn-logout {
    margin: 0 !important;
}

.admin-modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.admin-modal.active {
    opacity: 1;
    visibility: visible;
}

.admin-modal-content {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 35px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(176, 136, 88, 0.1);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.admin-modal-content h2 {
    font-family: var(--heading-font);
    font-size: 34px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.admin-modal.active .admin-modal-content {
    transform: scale(1);
}

.admin-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #888;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.admin-modal-close:hover {
    color: var(--primary-color);
}

.alert {
    padding: 15px 22px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.alert-danger {
    background-color: rgba(255, 74, 74, 0.12);
    border: 1px solid #ff4a4a;
    color: #ff6b6b;
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.12);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.login-card {
    max-width: 450px;
    margin: 60px auto;
    border-top: 4px solid var(--primary-color) !important;
}

.admin-welcome-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    background-color: rgba(14, 32, 45, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 28px;
    border-radius: 12px;
    font-family: var(--nav-font);
    backdrop-filter: blur(5px);
}

.admin-welcome-bar p {
    font-size: 18px;
    margin: 0;
    color: #ccc;
}

.admin-welcome-bar strong {
    color: var(--text-color);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.admin-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 900px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

.admin-events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
}

.admin-events-list::-webkit-scrollbar {
    width: 6px;
}

.admin-events-list::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.admin-event-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(30, 30, 30, 0.4);
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.admin-event-item:hover {
    background-color: rgba(35, 35, 35, 0.65);
    border-color: rgba(176, 136, 88, 0.2);
}

.admin-event-img {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(176, 136, 88, 0.15);
}

.admin-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-event-details {
    flex: 1;
}

.admin-event-details h4 {
    font-family: var(--nav-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.admin-event-details p {
    font-family: var(--paragraph-font);
    font-size: 14px;
    color: #888;
}

.admin-btn-delete {
    color: #ff4a4a;
    font-size: 20px;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-btn-delete:hover {
    background-color: rgba(255, 74, 74, 0.1);
}

.admin-info-note {
    font-family: var(--paragraph-font);
    font-size: 14px;
    color: #888;
    margin-top: -15px;
    margin-bottom: 20px;
}

.no-data {
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 20px;
    font-family: var(--paragraph-font);
}

.no-events-message {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 22px;
    color: #888;
    font-family: var(--paragraph-font);
    padding: 100px 0;
    width: 100%;
}

.enrollment-modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.enrollment-modal.active {
    opacity: 1;
    visibility: visible;
}

.enrollment-modal-content {
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(176, 136, 88, 0.15);
    border-radius: 24px 24px 0 0;
    padding: 40px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.enrollment-modal-content::-webkit-scrollbar {
    display: none;
}

.enrollment-modal.active .enrollment-modal-content {
    transform: translateY(0);
}

.enrollment-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #888;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10;
}

.enrollment-modal-close:hover {
    color: var(--primary-color);
}

.enrollment-modal-content h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 1.2;
    padding-right: 50px;
}

.enrollment-note {
    font-family: var(--paragraph-font);
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.enrollment-note strong {
    color: var(--text-color);
}

.form-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.form-section h3 {
    font-family: var(--heading-font);
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.radio-options-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-options-row {
    display: flex;
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: var(--paragraph-font);
    font-size: 16px;
    color: #ccc;
    user-select: none;
}

.radio-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked {
    border-color: var(--primary-color);
    background-color: transparent;
}

.radio-label input[type="radio"]::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform: scale(0);
    transition: transform 0.2s ease;
}

.radio-label input[type="radio"]:checked::before {
    transform: scale(1);
}

.radio-label:hover {
    color: var(--text-color);
}

.radio-label:hover input[type="radio"] {
    border-color: var(--primary-color);
}

.weekly-schedule-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.day-accordion {
    border: 1px solid rgba(176, 136, 88, 0.15);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(14, 32, 45, 0.2);
}

.day-accordion-header {
    width: 100%;
    background: rgba(176, 136, 88, 0.03);
    border: none;
    color: var(--text-color);
    font-family: var(--heading-font);
    font-size: 22px;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 0 !important;
    text-align: left;
    box-sizing: border-box;
}

.day-accordion-header:hover {
    background: rgba(176, 136, 88, 0.08);
    color: var(--text-color) !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.day-accordion-header i {
    font-size: 16px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.day-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    background: rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    padding: 0 20px;
}

.day-accordion-body.active {
    max-height: 500px;
    padding: 20px;
}

.schedule-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

.slot-checkbox {
    display: block;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.slot-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.slot-checkbox span {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-family: var(--nav-font);
    font-size: 14px;
    color: #ccc;
    transition: all 0.25s ease;
}

.slot-checkbox:hover span {
    border-color: var(--primary-color);
    background: rgba(176, 136, 88, 0.05);
    color: var(--text-color);
}

.slot-checkbox input:checked + span {
    background: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(176, 136, 88, 0.3);
}

.enrollment-footer-note {
    font-family: var(--paragraph-font);
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 25px;
}

.enrollment-btn-submit {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    font-family: var(--heading-font);
    letter-spacing: 0.05em;
    font-size: 22px;
    padding: 12px 24px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.enrollment-btn-submit:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.admin-apps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-app-item {
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid rgba(176, 136, 88, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.admin-app-item:hover {
    background: rgba(35, 35, 35, 0.65);
    border-color: rgba(176, 136, 88, 0.25);
}

.admin-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-app-header h3 {
    font-family: var(--nav-font);
    font-size: 22px;
    color: var(--primary-color);
    margin: 0;
}

.app-date {
    font-family: var(--paragraph-font);
    font-size: 14px;
    color: #888;
}

.admin-app-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 15px;
}

.admin-app-details-grid p,
.admin-app-experience p,
.admin-app-availability p {
    margin: 0;
    font-family: var(--paragraph-font);
    font-size: 15px;
    color: #ccc;
    line-height: 1.5;
}

.admin-app-details-grid strong,
.admin-app-experience strong,
.admin-app-availability strong {
    color: var(--text-color);
}

.admin-app-experience {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.admin-app-availability {
    background: rgba(176, 136, 88, 0.05);
    border-left: 3px solid var(--primary-color);
    padding: 10px 15px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 20px;
}

.admin-app-actions {
    display: flex;
    justify-content: flex-end;
}

.admin-btn-delete-app {
    color: #ff4a4a;
    font-family: var(--heading-font);
    font-size: 18px;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 74, 74, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
}

.admin-btn-delete-app:hover {
    background: rgba(255, 74, 74, 0.1);
    border-color: #ff4a4a;
}

.custom-alert {
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-alert.active {
    opacity: 1;
    visibility: visible;
}

.custom-alert-content {
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

.custom-alert.active .custom-alert-content {
    transform: scale(1);
}

.custom-alert-content i {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

.custom-alert-content i.success {
    color: #2ecc71;
}

.custom-alert-content i.error {
    color: #ff4a4a;
}

.custom-alert-content p {
    font-family: var(--paragraph-font);
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.5;
    margin-top: 0;
}

.custom-alert-content button {
    margin: 0 !important;
    padding: 8px 24px !important;
    font-size: 18px !important;
}

@media (max-width: 768px) {
    .admin-header-content {
        width: 92%;
    }
    .admin-header h1 {
        font-size: 32px;
    }
    .back-link {
        font-size: 14px;
        padding: 6px 12px;
    }
    .admin-main {
        padding: 20px 0;
    }
    .admin-container {
        width: 92%;
    }
    .admin-welcome-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    .admin-welcome-actions {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    .admin-welcome-actions .admin-btn-toggle,
    .admin-welcome-actions .admin-btn-logout {
        flex: 1;
        max-width: 200px;
        font-size: 16px !important;
        padding: 8px 12px !important;
        margin: 0 !important;
        width: auto;
    }
    .admin-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    .admin-card h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .admin-modal-content {
        padding: 25px 15px;
        width: 95%;
    }
    .admin-modal-content h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .login-card {
        margin: 30px auto;
    }
    .enrollment-modal {
        align-items: center !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }
    .enrollment-modal-content {
        padding: 30px 20px;
        border-radius: 20px !important;
        width: 100% !important;
        max-width: 550px !important;
        max-height: calc(100vh - 40px) !important;
        margin: auto !important;
        border: 1px solid rgba(176, 136, 88, 0.25) !important;
    }
    .enrollment-modal-content h2 {
        font-size: 28px;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .form-section h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .admin-app-item {
        padding: 15px;
    }
    .admin-app-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .admin-app-actions {
        justify-content: flex-start;
    }
    .admin-btn-delete-app {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .admin-header h1 {
        font-size: 22px;
    }
    .back-link {
        font-size: 12px;
        padding: 5px 10px;
    }
    .admin-event-item {
        padding: 10px;
        gap: 10px;
    }
    .admin-event-img {
        width: 50px;
        height: 50px;
    }
    .admin-event-details h4 {
        font-size: 16px;
    }
    .admin-event-details p {
        font-size: 12px;
    }
    .admin-btn-delete {
        font-size: 18px;
        padding: 6px;
    }
    .enrollment-modal-content {
        padding: 25px 15px;
        max-height: calc(100vh - 30px) !important;
        border-radius: 16px !important;
    }
    .enrollment-modal-content h2 {
        font-size: 24px;
    }
    .schedule-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 8px;
    }
    .slot-checkbox span {
        font-size: 13px;
        padding: 8px 3px;
    }
    .day-accordion-header {
        font-size: 18px;
        padding: 10px 15px;
    }
    .day-accordion-body.active {
        padding: 15px;
    }
    .enrollment-note {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    .enrollment-modal-content .form-group input[type="text"],
    .enrollment-modal-content .form-group input[type="email"],
    .enrollment-modal-content .form-group input[type="password"],
    .enrollment-modal-content .form-group input[type="date"],
    .enrollment-modal-content .form-group input[type="datetime-local"] {
        background-color: rgba(35, 35, 35, 0.95) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
    }
    .enrollment-modal-content .form-group input[type="text"]:focus,
    .enrollment-modal-content .form-group input[type="email"]:focus,
    .enrollment-modal-content .form-group input[type="password"]:focus,
    .enrollment-modal-content .form-group input[type="date"]:focus,
    .enrollment-modal-content .form-group input[type="datetime-local"]:focus {
        background-color: rgba(45, 45, 45, 0.98) !important;
        border-color: var(--primary-color) !important;
    }
    .radio-label input[type="radio"] {
        border-color: rgba(255, 255, 255, 0.35) !important;
    }
}

html.modal-open,
body.modal-open {
    overflow: hidden !important;
}

.admin-dashboard {
    display: flex;
    min-height: 100vh;
    background: radial-gradient(circle at 50% 50%, #172836 0%, var(--background-color) 100%);
    width: 100%;
}

.admin-sidebar {
    width: 300px;
    background: rgba(14, 32, 45, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-right: 1px solid rgba(176, 136, 88, 0.25);
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    height: 100vh;
    flex-shrink: 0;
}

.admin-sidebar-header {
    margin-bottom: 30px;
}

.admin-sidebar-header h2 {
    font-family: var(--heading-font);
    font-size: 44px;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(176, 136, 88, 0.3);
}

.admin-sidebar-header p {
    font-size: 14px;
    color: #888;
    margin: 5px 0 0 0;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 30px;
}

.admin-user-info i {
    font-size: 30px;
    color: var(--primary-color);
}

.admin-user-info div {
    display: flex;
    flex-direction: column;
}

.admin-user-info span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.admin-user-info strong {
    font-size: 15px;
    color: var(--text-color);
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.admin-nav-item {
    background: transparent !important;
    border: 1px solid transparent !important;
    color: #bbb !important;
    padding: 14px 18px !important;
    border-radius: 8px !important;
    font-family: var(--nav-font) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    text-align: left !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important;
    margin: 0 !important;
}

.admin-nav-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-color) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.admin-nav-item.active {
    background: rgba(176, 136, 88, 0.15) !important;
    color: var(--primary-color) !important;
    border-color: rgba(176, 136, 88, 0.25) !important;
    font-weight: 600 !important;
}

.admin-nav-item .admin-badge {
    margin-left: auto;
    background: var(--primary-color);
    color: var(--background-color);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.admin-sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.admin-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.admin-sidebar-btn.back-btn {
    border: 1px solid rgba(176, 136, 88, 0.3);
    color: var(--text-color);
    background: rgba(176, 136, 88, 0.03);
}

.admin-sidebar-btn.back-btn:hover {
    background: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
}

.admin-sidebar-btn.logout-btn {
    border: 1px solid rgba(255, 74, 74, 0.3);
    color: #ff6b6b;
    background: rgba(255, 74, 74, 0.03);
}

.admin-sidebar-btn.logout-btn:hover {
    background: #ff4a4a;
    color: #fff;
    border-color: #ff4a4a;
}

.admin-content {
    flex: 1;
    padding: 40px;
    box-sizing: border-box;
    overflow-y: auto;
    height: 100vh;
}

.admin-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.admin-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    padding: 0 20px;
    background: rgba(14, 32, 45, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(176, 136, 88, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.admin-mobile-logo h2 {
    font-family: var(--heading-font);
    font-size: 24px;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.admin-hamburger {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    display: none;
}

.admin-sidebar-backdrop.open {
    display: block;
}

@media (max-width: 900px) {
    .admin-mobile-header {
        display: flex;
    }

    .admin-dashboard {
        flex-direction: column;
        padding-top: 55px;
    }
    
    .admin-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-right: 1px solid rgba(176, 136, 88, 0.25);
        border-bottom: none;
        padding: 80px 20px 20px 20px;
        background: rgba(10, 24, 34, 0.98);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.6);
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }
    
    .admin-nav {
        flex-direction: column;
        flex-wrap: nowrap;
        margin-top: 10px;
        gap: 8px;
    }
    
    .admin-nav-item {
        width: 100% !important;
    }
    
    .admin-sidebar-footer {
        flex-direction: column;
        margin-top: 20px;
        gap: 8px;
    }
    
    .admin-sidebar-btn {
        width: 100%;
    }
    
    .admin-content {
        height: auto;
        padding: 20px;
    }
}

.admin-welcome-hero {
    background: linear-gradient(135deg, rgba(176, 136, 88, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 136, 88, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.admin-welcome-hero h1 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 32px;
    margin: 0 0 10px 0;
}

.admin-welcome-hero p {
    font-family: var(--paragraph-font);
    color: #ccc;
    font-size: 16px;
    margin: 0;
}

.dashboard-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.dashboard-nav-card {
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 136, 88, 0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.dashboard-nav-card:hover {
    background: rgba(35, 35, 35, 0.8);
    border-color: rgba(176, 136, 88, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.dashboard-card-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dashboard-nav-card h3 {
    font-family: var(--nav-font);
    color: var(--text-color);
    font-size: 20px;
    margin: 0 0 10px 0;
}

.dashboard-card-value {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1;
}

.dashboard-card-value-text {
    font-family: var(--nav-font);
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.dashboard-card-desc {
    font-family: var(--paragraph-font);
    color: #888;
    font-size: 14px;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.dashboard-card-link {
    font-family: var(--nav-font);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.dashboard-nav-card:hover .dashboard-card-link {
    color: #c59d6e;
}

.dashboard-card-link i {
    transition: transform 0.2s ease;
}

.dashboard-nav-card:hover .dashboard-card-link i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .dashboard-cards-grid {
        grid-template-columns: 1fr;
    }
}

.audio-player-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    margin-top: 40px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.2s;
}

.audio-player-label {
    font-family: var(--nav-font);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(176, 136, 88, 0.3);
    text-transform: uppercase;
}

.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(176, 136, 88, 0.4);
    border-radius: 50px;
    padding: 12px 24px;
    width: 360px;
    max-width: 90%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(176, 136, 88, 0.15);
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-audio-player:hover {
    border-color: var(--primary-color);
}

.audio-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: var(--primary-color) !important;
    color: var(--background-color) !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(176, 136, 88, 0.4);
    position: relative;
}

.audio-play-btn:hover {
    background-color: #c59d6e !important;
}

.audio-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.audio-title {
    font-family: var(--nav-font);
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.audio-progress-container {
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    margin-bottom: 4px;
}

.audio-progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    width: 0%;
    position: relative;
}

.audio-time-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--paragraph-font);
    font-size: 10px;
    color: #888;
}

.lightbox-modal {
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 44px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 3100;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.lightbox-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    max-height: 80vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    border: 1px solid rgba(176, 136, 88, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    object-fit: contain;
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 15px;
    letter-spacing: 0.05em;
    text-align: center;
}

.lightbox-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(176, 136, 88, 0.3);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lightbox-download-btn:hover {
    background-color: #c59d6e;
    box-shadow: 0 6px 20px rgba(176, 136, 88, 0.5);
    transform: translateY(-2px);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2100;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.lightbox-arrow:hover {
    background: rgba(176, 136, 88, 0.8);
    border-color: var(--primary-color);
    color: #000;
}

.lightbox-arrow-left {
    left: 40px;
}

.lightbox-arrow-right {
    right: 40px;
}

.lightbox-arrow i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .lightbox-arrow {
        width: 44px;
        height: 44px;
        background: rgba(15, 15, 15, 0.8);
    }
    .lightbox-arrow-left {
        left: 15px;
    }
    .lightbox-arrow-right {
        right: 15px;
    }
    .lightbox-arrow i {
        font-size: 18px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    background: rgba(14, 32, 45, 0.95);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 99999;
    font-family: var(--paragraph-font);
    backdrop-filter: blur(10px);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner h5 {
    font-family: var(--heading-font);
    font-size: 24px;
    margin: 0 0 10px 0;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.cookie-banner p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: #ccc;
}

.cookie-banner p a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner p a:hover {
    color: #fff;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
}

.cookie-banner-btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
    font-family: var(--heading-font);
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cookie-banner-btn-accept {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--background-color);
}

.cookie-banner-btn-accept:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.cookie-banner-btn-decline {
    background-color: transparent;
    border: 2px solid #555;
    color: #aaa;
}

.cookie-banner-btn-decline:hover {
    border-color: #777;
    color: #fff;
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 12px;
        right: 12px;
        left: 12px;
        max-width: calc(100% - 24px);
        padding: 16px;
    }
}

.subpage-hero {
    height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(1, 22, 39, 0.75) 0%, rgba(1, 22, 39, 0.75) 75%, var(--background-color) 100%), 
                url('./photos/hero-image.jpg');
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    padding: 0 20px;
}

.subpage-hero h1 {
    font-size: 130px;
    line-height: 1;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    filter: drop-shadow(0 0 15px rgba(176, 137, 88, 0.25));
}

.subpage-hero p {
    font-family: var(--nav-font);
    font-size: 24px;
    color: #CACACA;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.subpage-container {
    padding: 80px 5%;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.header-button.active {
    color: var(--primary-color) !important;
}

.header-button.active::after {
    width: 100% !important;
}

@media (max-width: 1400px) {
    .subpage-container {
        padding: 80px 6%;
    }
}

@media (max-width: 900px) {
    .subpage-hero h1 {
        font-size: 90px;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        height: 45vh;
    }
    .subpage-hero h1 {
        font-size: 80px;
    }
    .subpage-hero p {
        font-size: 18px;
    }
    .subpage-container {
        padding: 60px 20px;
    }
}
