/* Reset margins/padding to avoid jumps */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url("/static/GFX/GCBG001.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    text-align: center;
    color: white;
}

/* Top green marble stripe */
.top-stripe {
    background: url("/static/GFX/greenMarble.jpeg") repeat-x;
    background-size: cover;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: flex-start; /* <-- STOP CENTERING EVERYTHING */

    position: relative; /* <-- ALLOWS ABSOLUTE CHILDREN TO POSITION CORRECTLY */
}

/* Footer green marble stripe */
.footer-stripe {
    background: url("/static/GFX/greenMarble.jpeg") repeat-x;
    background-size: cover;
    height: 40px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

img.logo {
    height: 70px;
    width: auto;
    cursor: pointer;
}

/* Shared options/sections styling */
.options, .sections {
    margin-top: 40px; /* spacing below top stripe */
    margin-bottom: 60px; /* spacing above footer stripe */
    font-size: 36px;
    line-height: 2.5;
    text-shadow: 0 0 5px #ffff99, 0 0 10px #ffffff;
}
.options {
    margin-top: 20px !important;
}

/* Links */
a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: text-shadow 0.3s ease;
}

a:hover {
    text-shadow: 0 0 10px #ffff99, 0 0 20px #ffffff;
}

/* Dish names (bright glow, no stroke) */
.dish-name {
    font-size: 26px;
    margin-top: 15px;
    color: white;
    text-shadow: 0 0 5px #ffff99, 0 0 10px #ffffff;
    position: relative;
    display: inline-block;
}

/* Tooltip standard */
.tooltip {
    visibility: hidden;
    opacity: 0;
    background: rgba(0,0,0,0.33); /* soft black */
    color: #ffff99; /* pale yellow text */
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 2000;
    top: -5px;
    left: 105%;
    width: 280px;
    font-size: 18px; /* larger text */
    line-height: 1.5;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    white-space: pre-wrap;
    transition: opacity 0.3s ease;
}

.has-tooltip:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
/* Transparent capsule login button */
#auth-button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
    z-index: 2000;
}

#auth-button:hover {
    background: rgba(255,255,255,0.25);
}
.top-stripe {
    background: url("/static/GFX/greenMarble.jpeg") repeat-x;
    background-size: cover;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between; /* key change */
    padding: 0 20px; /* spacing for left/right zones */
}

.header-left,
.header-center,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-center {
    justify-content: center; /* keeps logo centered */
}

.header-right {
    justify-content: flex-end; /* button stays on the right */
}
/* Comments section wrapper */
.comments-section {
    margin: 40px auto;
    margin-bottom: 120px;
    width: 33%;
    max-width: 600px;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* Neon purple button */
.neon-comment-btn {
    margin-top: 20px;
    padding: 12px 28px;
    border-radius: 999px;
    border: 2px solid rgba(180, 90, 255, 0.8);
    background: rgba(80, 0, 120, 0.3);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 0 8px rgba(180, 90, 255, 0.6),
                0 0 16px rgba(180, 90, 255, 0.4);
}

.neon-comment-btn:hover {
    background: rgba(120, 0, 200, 0.4);
    box-shadow: 0 0 12px rgba(200, 120, 255, 0.9),
                0 0 24px rgba(200, 120, 255, 0.7);
}
.version-tag {
    position: fixed;
    bottom: 45px; /* slightly above the 40px footer stripe */
    left: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    z-index: 2001; /* above footer */
    pointer-events: none; /* so it never blocks clicks */
}
/* ========================================================= */
/* ===== WORKSHOPS PAGE ====================================== */
/* ========================================================= */

.workshops-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px 100px;
}

.workshop-section p.workshops-intro {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
}

.workshop-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.workshop-section {
    background-color: rgba(0, 0, 0, 0.55);
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    text-align: right;
}

.workshop-section .dish-name {
    display: block;
    margin-bottom: 16px;
}

.workshop-body {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.workshop-photo {
    display: block;
    width: 180px;
    height: 180px;
    max-width: 180px;
    max-height: 180px;
    flex: 0 0 180px;
    border-radius: 10px;
    object-fit: cover;
}

.workshop-body ul {
    margin: 0;
    padding-left: 20px;
    font-size: 16px;
    text-shadow: none;
    flex: 1;
}

.workshop-body li {
    margin-bottom: 6px;
}

.workshop-section .neon-comment-btn {
    display: inline-block;
    margin-top: 16px;
}

@media (max-width: 560px) {
    .workshop-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .workshop-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 220px;
    }
}
/* ===== Contact links with icon (used on contact.html) ===== */
.contact-link {
    margin: 12px 0;
}

.contact-link a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    height: 32px;
    width: 32px;
    border-radius: 6px;
    object-fit: cover;
    vertical-align: middle;
}
/* ===== WORKSHOPS PAGE — English/LTR alignment override ===== */

.workshops-wrapper .workshop-section {
    text-align: left;
}

.workshops-wrapper > .workshop-section:first-of-type .workshops-intro {
    text-align: center;
}