/* ========================================= */
/* ========== GLOBAL FONTS & VARIABLES ===== */
/* ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Share+Tech+Mono&display=swap');

:root {
    --primary-color: #00ffff;
    --secondary-color: #ff00ff;
    --text-color: #f0f0f0;
    --background-color: #0d0d0d;
    --container-bg: #1a1a1a;
    --border-color: #00ffff;
    --label-color: #a0a0a0;
    --font-title: 'Orbitron', sans-serif;
    --font-body: 'Share Tech Mono', monospace;
}

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

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 #00ffff, -0.05em 0 0 #ff00ff; }
    14% { text-shadow: 0.05em 0 0 #00ffff, -0.05em 0 0 #ff00ff; }
    15% { text-shadow: -0.05em -0.025em 0 #00ffff, 0.025em 0.025em 0 #ff00ff; }
    49% { text-shadow: -0.05em -0.025em 0 #00ffff, 0.025em 0.025em 0 #ff00ff; }
    50% { text-shadow: 0.025em 0.05em 0 #00ffff, 0.05em 0 0 #ff00ff; }
    99% { text-shadow: 0.025em 0.05em 0 #00ffff, 0.05em 0 0 #ff00ff; }
    100% { text-shadow: -0.025em 0 0 #00ffff, -0.025em -0.05em 0 #ff00ff; }
}

/* ========================================= */
/* ========== GLOBAL TEXT HIERARCHY ======== */
/* ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}
a, button {
    font-family: var(--font-body);
    cursor: pointer;
    color: var(--text-color);
}

/* ========================================= */
/* ========== GLOBAL LAYOUT ================ */
/* ========================================= */
body {
    background-color: var(--background-color);
    background-image:
        linear-gradient(rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.9)),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0iIzBkMGQwZCI+PC9yZWN0Pgo8cmVjdCB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIGZpbGw9IiMxNzE3MTciPjwvcmVjdD4KPC9zdmc+');
    font-family: var(--font-body);
    color: var(--text-color);
    animation: fadeIn 1s ease-out;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ========================================= */
/* ========== HEADER & NAVIGATION ========== */
/* ========================================= */
.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 10;
}
.header-logo {
    width: 70px;
    height: auto;
    transition: transform 0.3s ease;
}
.header-logo:hover { transform: scale(1.1); }
nav { display: flex; gap: 30px; }
.nav-link {
    text-decoration: none;
    font-size: 1.2em;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* ========================================= */
/* ========== FOOTER & SOCIAL LINKS ======== */
/* ========================================= */
footer {
    width: 100%;
    text-align: center;
    padding: 40px 20px 20px;
    margin-top: auto;
    border-top: 1px solid #222;
}
.social-links { margin-bottom: 20px; }
.social-links a {
    color: var(--label-color);
    font-size: 1.8em;
    margin: 0 15px;
    transition: all 0.3s ease;
}
.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    text-shadow: 0 0 10px var(--primary-color);
}

/* ========================================= */
/* ========== HERO SECTION ================= */
/* ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -117px;
}
#particles-js { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0; }
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(13, 13, 13, 0.4) 0%, #0d0d0d 70%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.main-header { z-index: 3; }
.main-title {
    font-size: 5em;
    font-weight: 700;
    text-shadow: 0 0 5px var(--primary-color), 0 0 15px var(--primary-color), 0 0 30px var(--primary-color), 0 0 50px var(--secondary-color);
}
.main-title:hover { animation: glitch 0.25s infinite; }
.tagline { font-size: 1.5em; margin-top: 10px; letter-spacing: 3px; color: var(--text-color); }
.cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 15px 35px;
    margin-top: 40px;
    font-size: 1.3em;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px var(--primary-color), inset 0 0 8px var(--primary-color);
}
.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    box-shadow: 0 0 15px var(--primary-color), inset 0 0 15px var(--primary-color);
    text-shadow: none;
}

/* ========================================= */
/* ========== GENERIC PAGE STYLES ========== */
/* ========================================= */
.page-body .main-header { background-color: rgba(13, 13, 13, 0.8); backdrop-filter: blur(5px); position: sticky; top: 0; }
.content-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 40px; animation: fadeIn 1s ease-out; }
.page-title { font-size: 3em; text-align: center; margin-bottom: 50px; }
.content-section { padding: 80px 40px; text-align: center; background-color: var(--container-bg); }
.content-section h2 { font-size: 2.5em; margin-bottom: 20px; }
.content-section p { max-width: 800px; margin: 0 auto; font-size: 1.2em; line-height: 1.8; }

/* ========================================= */
/* ========== EVENTS SECTION =============== */
/* ========================================= */
.event-list { display: flex; flex-direction: column; gap: 30px; }
.event-card {
    display: flex;
    background-color: var(--container-bg);
    border: 1px solid #222;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}
.event-card:hover { border-color: var(--primary-color); box-shadow: 0 0 15px rgba(0, 255, 255, 0.2); }
.event-date {
    background-color: #222;
    padding: 20px;
    text-align: center;
    color: var(--primary-color);
    border-radius: 5px 0 0 5px;
    font-family: var(--font-title);
}
.event-date .month { display: block; font-size: 1em; }
.event-date .day { display: block; font-size: 2.5em; line-height: 1; }
.event-details { padding: 20px; text-align: left; }
.event-title {
    font-size: 1.8em;
    color: var(--text-color);
    margin-bottom: 10px;
    text-shadow: none;
}
.event-time { color: var(--label-color); margin-bottom: 15px; }
.event-description { line-height: 1.6; }
.event-card-past { opacity: 0.6; border-left-color: var(--label-color); transition: opacity 0.3s ease; }
.event-card-past:hover { opacity: 1; }
.event-card-past .event-date { color: var(--label-color); }

/* ========================================= */
/* ========== GALLERY SECTION ============== */
/* ========================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { display: block; border: 2px solid #333; overflow: hidden; border-radius: 5px; transition: all 0.3s ease; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.gallery-item:hover { border-color: var(--primary-color); box-shadow: 0 0 10px var(--primary-color); }
.gallery-item:hover img { transform: scale(1.1); }

/* ========== LIGHTBOX FOR GALLERY ========== */
.lightbox { display: none; position: fixed; z-index: 999; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); text-decoration: none; }
.lightbox:target { display: flex; align-items: center; justify-content: center; }
.lightbox span { display: block; width: 90%; max-width: 1200px; height: 90%; background-position: center; background-repeat: no-repeat; background-size: contain; }

/* ========================================= */
/* ========== TEAM SECTION ================= */
/* ========================================= */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.team-card { background-color: var(--container-bg); padding: 20px; text-align: center; border: 1px solid #333; border-radius: 5px; transition: all 0.3s ease; cursor: pointer; }
.team-card:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2); }
.team-avatar { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-color); margin-bottom: 20px; }
.team-name { font-size: 1.8em; color: var(--text-color); margin-bottom: 5px; text-shadow: none; }
.team-role { color: var(--secondary-color); margin-bottom: 15px; font-weight: bold; }
.team-bio { font-size: 0.9em; line-height: 1.6; color: var(--label-color); }
.team-subtitle { font-size: 2.5em; text-align: center; margin-top: 60px; margin-bottom: 50px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; box-shadow: 0 5px 15px -15px var(--border-color); }

/* ========== TEAM MODAL ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: var(--container-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s ease;
}
.modal-overlay.open .modal-content {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5em;
    color: var(--label-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.modal-close:hover {
    color: var(--primary-color);
}
.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}
.profile-name {
    font-size: 2.5em;
    margin-bottom: 5px;
    color: var(--text-color);
    text-shadow: none;
}
.profile-role {
    font-family: var(--font-body);
    font-size: 1.2em;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-shadow: 0 0 8px var(--secondary-color);
}
.profile-bio {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--label-color);
    text-align: left;
}

/* ========================================= */
/* ========== PARTNERS SECTION ============= */
/* ========================================= */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.partner-card { background-color: var(--container-bg); border: 1px solid #333; border-radius: 5px; text-align: center; text-decoration: none; overflow: hidden; transition: all 0.3s ease; }
.partner-card:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2); }
.partner-logo { width: 100%; height: 150px; object-fit: cover; display: block; }
.partner-name { font-size: 1.5em; color: var(--text-color); padding: 20px 15px; text-shadow: none; }

/* ========================================= */
/* ========== MENU SECTION ================= */
/* ========================================= */
.menu-page-body .main-header { position: static; }
.button-container { text-align: center; margin-bottom: 40px; }
.menu-button { background-color: transparent; border: 2px solid var(--label-color); color: var(--label-color); padding: 10px 20px; font-size: 1.2em; margin: 5px 10px; transition: all 0.3s ease; }
.menu-button:hover, .menu-button.active { color: var(--primary-color); border-color: var(--primary-color); box-shadow: 0 0 10px var(--primary-color); text-shadow: 0 0 5px var(--primary-color); }
.menu-container { max-width: 900px; margin: 40px auto; background: var(--container-bg); border: 2px solid var(--border-color); padding: 30px 50px; box-shadow: 0 0 25px rgba(0, 255, 255, 0.2); border-radius: 5px; }
.category-title { font-size: 2.2em; text-align: center; padding-bottom: 15px; margin: 50px 0 30px; position: relative; }
.category-title:first-child { margin-top: 0; }
.category-title::after { content: ' '; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 1px; background: linear-gradient(to right, transparent, var(--border-color), transparent); }
.drink-item { margin-bottom: 30px; border-bottom: 1px solid #2a2a2a; padding: 20px; transition: background-color 0.3s ease; border-radius: 4px; }
.drink-item:last-child { border-bottom: none; }
.drink-item:hover { background-color: rgba(0, 255, 255, 0.05); }
.drink-name { font-size: 1.8em; color: var(--text-color); margin-bottom: 15px; text-shadow: none; }

/* ========================================= */
/* ========== APPLICATION/CONTACT FORM ===== */
/* ========================================= */
.application-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.application-form label {
    font-family: var(--font-body);
    color: var(--label-color);
    font-size: 1.1em;
    text-align: left;
}
.application-form input,
.application-form textarea,
.application-form select {
    width: 100%;
    padding: 12px;
    background-color: var(--container-bg);
    border: 1px solid #333;
    border-radius: 4px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1em;
    transition: all 0.3s ease;
}
.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}
.application-form button {
    margin-top: 20px;
    padding: 15px;
    font-size: 1.2em;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}
.application-form button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    box-shadow: 0 0 15px var(--primary-color);
}

/* ========================================= */
/* ========== JOIN THE TEAM SECTION ======== */
/* ========================================= */
.join-team-section {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--background-color);
    border-top: 1px solid #222;
}
.join-team-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.join-team-section p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--label-color);
}

/* ========================================= */
/* ========== RADIO BUTTONS ================ */
/* ========================================= */
.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    margin-bottom: 10px;
}
.radio-group input[type="radio"] { display: none; }
.radio-group label {
    flex-grow: 1;
    text-align: center;
    padding: 12px;
    border: 2px solid var(--label-color);
    border-radius: 5px;
    color: var(--label-color);
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}
.radio-group label:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.radio-group input[type="radio"]:checked + label {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
    text-shadow: 0 0 5px var(--background-color);
    box-shadow: 0 0 15px var(--primary-color);
}

/* ========================================= */
/* ========== CUSTOM CHECKBOXES ============ */
/* ========================================= */
.checkbox-group {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    margin-bottom: 10px;
}
.checkbox-group input[type="checkbox"] { display: none; }
.checkbox-group label {
    flex-grow: 1;
    text-align: center;
    padding: 12px;
    border: 2px solid var(--label-color);
    border-radius: 5px;
    color: var(--label-color);
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}
.checkbox-group label:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.checkbox-group input[type="checkbox"]:checked + label {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
    text-shadow: 0 0 5px var(--background-color);
    box-shadow: 0 0 15px var(--primary-color);
}

/* ========================================= */
/* ========== FOCUS MODE =================== */
/* ========================================= */
.focus-mode-toggle-container {
    text-align: right;
    margin-top: -50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 20;
}
#focus-mode-button {
    background: transparent;
    border: 2px solid var(--label-color);
    color: var(--label-color);
    font-size: 1.2em;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#focus-mode-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
body.focus-mode .main-header,
body.focus-mode footer {
    display: none;
}

/* ========================================= */
/* ========== BLOG / NEWS ================== */
/* ========================================= */
.post-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.post-card {
    background-color: var(--container-bg);
    border: 1px solid #333;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
}
.post-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}
.post-date, .post-full-meta {
    color: var(--label-color);
    font-size: 0.9em;
    margin-bottom: 10px;
}
.post-title {
    font-size: 2em;
    color: var(--text-color);
    text-shadow: none;
    margin-bottom: 15px;
}
.post-excerpt {
    line-height: 1.7;
    color: var(--text-color);
}
.post-read-more {
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 1.1em;
}

/* ========== FULL ARTICLE PAGE ========== */
.post-full-title {
    font-size: 3.5em;
    text-align: left;
    margin-bottom: 10px;
}
.post-full-meta {
    text-align: left;
    margin-bottom: 40px;
}
.post-full-content {
    font-size: 1.2em;
    line-height: 1.8;
    text-align: left;
}
.post-full-content p {
    margin-bottom: 20px;
}
.post-full-content .post-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

/* ========================================= */
/* ========== SCHEDULE SECTION ============= */
/* ========================================= */
.schedule-container {
    text-align: center;
    padding: 20px 40px;
    margin: -40px auto 40px auto;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    max-width: 500px;
    background-color: var(--container-bg);
    position: relative;
    z-index: 5;
}
.schedule-title { font-size: 1.8em; margin-bottom: 15px; }
.schedule-days { font-size: 1.2em; margin-bottom: 10px; }
.schedule-times ul { list-style: none; padding: 0; margin-top: 10px; }
.schedule-times li { margin-bottom: 8px; font-size: 1.1em; }

/* ========================================= */
/* ========== LANGUAGE SWITCHER ============ */
/* ========================================= */
.language-switcher button {
    background-color: transparent;
    border: 1px solid var(--label-color);
    color: var(--label-color);
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.language-switcher button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ========================================= */
/* ========== RESPONSIVENESS =============== */
/* ========================================= */
@media (max-width: 768px) {
    .main-header { flex-direction: column; gap: 15px; }
    nav { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .nav-link { margin: 0; }
    .main-title { font-size: 3em; }
    .content-container { padding: 20px; }
    .event-card { flex-direction: column; }
    .event-date { border-radius: 5px 5px 0 0; border-right: none; border-bottom: 5px solid var(--primary-color); }
}