/* =============================================
   WEIGHT ROOM PROJECT — Stylesheet
   ============================================= */

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

:root {
    --bg-primary:   #0d0d0d;
    --bg-secondary: #141414;
    --bg-card:      #1a1a1a;
    --accent:       #c8a84b;
    --accent-hover: #b8950d;
    --text-primary:   #f0f0f0;
    --text-secondary: #999999;
    --text-muted:     #555555;
    --border:         #282828;
    --shadow:    0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.7);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Bebas Neue', 'Inter', sans-serif; letter-spacing: 0.05em; }

/* Greek: Bebas Neue has no Greek support → use Inter */
body.lang-el h1,
body.lang-el h2,
body.lang-el h3,
body.lang-el h4,
body.lang-el .step-num,
body.lang-el .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Greek: text-transform: uppercase causes accent marks to render as
   separate apostrophe-like glyphs — disable it for all affected elements */
body.lang-el .service-overlay h3,
body.lang-el .nav-menu a,
body.lang-el .section-subtitle,
body.lang-el .contact-info-item h4,
body.lang-el .schedule-table thead th,
body.lang-el .footer-links a,
body.lang-el .pricing-table td,
body.lang-el .per-day,
body.lang-el .rules-thanks {
    text-transform: none;
}

/* =============================================
   HEADER & NAV
   ============================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar { padding: 0.5rem 0; }

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-brand { display: flex; align-items: center; }
.logo-img { height: 100px; width: auto; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--accent); }

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 2px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s, border-color 0.2s;
    line-height: 0;
}

.lang-btn img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }

.lang-btn.active {
    opacity: 1;
    border-color: var(--accent);
}

.lang-btn:hover { opacity: 1; }

/* Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* =============================================
   SECTION BASE
   ============================================= */
section { padding: 90px 0; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.hero-dot.active { background: var(--accent); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 13, 13, 0.92) 0%,
        rgba(13, 13, 13, 0.75) 50%,
        rgba(13, 13, 13, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(4.5rem, 12vw, 10rem);
    line-height: 0.9;
    color: var(--text-primary);
}

.hero-title .accent { color: var(--accent); }

/* =============================================
   BEGIN TODAY
   ============================================= */
.begin-today { background-color: var(--bg-secondary); }

.begin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.begin-step img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.step-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--accent);
}

.step-body p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =============================================
   SERVICES GALLERY
   ============================================= */
.services { background-color: var(--bg-primary); }

.services-gallery { margin-top: 0; }

.services-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.services-row-bottom {
    display: grid;
    grid-template-columns: 1fr;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-bg {
    height: 500px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.service-card:hover .service-bg { transform: scale(1.04); }

.service-bg-dual {
    display: flex;
    height: 500px;
}

.service-bg-dual .service-bg {
    flex: 1;
    height: 100%;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2.5rem;
}

.service-overlay h3 {
    font-size: clamp(1.4rem, 2vw, 2rem);
    color: var(--text-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

/* =============================================
   SCHEDULE TABLE
   ============================================= */
.schedule { background-color: var(--bg-secondary); }

.schedule-table-wrapper { overflow-x: auto; }

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
    border: 1px solid #1f1f1f;
    background: #000;
    text-align: center;
}

.schedule-table thead th {
    padding: 22px 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
    border-right: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
}

.schedule-table thead th:last-child { border-right: none; }

.schedule-table tbody tr td {
    text-align: center;
    border-right: 1px solid #171717;
    border-bottom: 1px solid #171717;
    padding: 22px 10px 24px;
    position: relative;
    z-index: 1;
    transition: color 0.25s;
}

.schedule-table tbody tr td:last-child { border-right: none; }

.ts-filled {
    cursor: default;
}

.ts-filled::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.25s;
}

.ts-filled:hover::after { opacity: 1; }

.ts-filled:hover span,
.ts-filled:hover strong { color: #fff; }

.ts-filled span {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 6px;
    transition: color 0.25s;
}

.ts-filled strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    color: var(--accent);
    transition: color 0.25s;
}

.ts-empty { background-color: #000; }

/* =============================================
   PEOPLE
   ============================================= */
.people { background-color: var(--bg-primary); }

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 820px;
    margin: 0 auto;
}

.person-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.person-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.person-photo {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top;
}

.person-info { padding: 1.5rem; }

.person-info h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.person-role {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.person-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* =============================================
   PHOTO DIVIDER
   ============================================= */
.photo-divider {
    height: 420px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* =============================================
   NO SHOE POLICY
   ============================================= */
.policy {
    background-color: var(--bg-secondary);
    padding: 80px 0;
}

.policy-content {
    max-width: 780px;
    text-align: center;
}

.policy-content h2,
h2.no-shoe-title.section-title {
    color: var(--accent) !important;
}

.policy-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background-color: var(--bg-primary); }

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-info-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 0 6px 6px 0;
    padding: 1.25rem 1.5rem;
}

.contact-info-item h4 {
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.contact-info-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.contact-info-item a:hover { color: var(--accent); }

/* =============================================
   MAP
   ============================================= */
.map-wrapper {
    margin-top: 2.5rem;
    height: 320px;
    overflow: hidden;
    border-radius: 6px;
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo { height: 100px; width: auto; margin-bottom: 0.5rem; }

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }

.footer-links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   PRICING CTA
   ============================================= */
.pricing-cta {
    background-color: var(--bg-secondary);
    padding: 80px 0;
    text-align: center;
}

.pricing-cta-content {
    max-width: 680px;
}

.pricing-cta-content .section-title {
    margin-bottom: 1.25rem;
}

.pricing-cta-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: var(--accent);
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.cta-btn:hover {
    background: var(--accent-hover);
    color: #000;
}

/* =============================================
   PRICING & HOUSE RULES
   ============================================= */
.pricing {
    background-color: var(--bg-primary);
    padding: 80px 0;
}

.pricing-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.pricing-col,
.rules-col { flex: 1; }

.pricing-col .section-title,
.rules-col .section-title { margin-bottom: 2rem; }

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table tr { border-bottom: 1px solid var(--border); }

.pricing-table tr.pricing-spacer { border-top: 2px solid var(--border); }

.pricing-table td {
    padding: 1rem 0.25rem;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-table .price {
    text-align: right;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    white-space: nowrap;
    vertical-align: middle;
}

.per-day {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
}

.rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rules-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.rules-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.rules-thanks {
    color: var(--text-muted);
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .begin-grid { grid-template-columns: 1fr; }
    .begin-step img { height: 220px; }
    .services-row-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 1.5rem 24px;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.active { display: flex; }
    .mobile-menu-toggle { display: flex; }

    section { padding: 70px 0; }

    .services-row-top { grid-template-columns: 1fr; }

    .pricing-layout { flex-direction: column; gap: 48px; }

    .photo-divider {
        background-attachment: scroll;
        height: 280px;
    }

    .footer-content { flex-direction: column; align-items: flex-start; }
    .footer-links { gap: 1.25rem; }

    .easter-banner { font-size: 0.82rem; letter-spacing: 0.02em; }

    .schedule-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .schedule-table { min-width: 460px; }
    .schedule-table thead th { font-size: 0.9rem; padding: 14px 6px; }
    .schedule-table tbody tr td { padding: 14px 6px 16px; font-size: 0.8rem; }
    .schedule-table .ts-filled span { font-size: 0.68rem; margin-bottom: 3px; }
    .schedule-table .ts-filled strong { font-size: 0.75rem; }
}

/* =============================================
   EASTER ANNOUNCEMENT BANNER
   ============================================= */
.easter-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    min-height: 64px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
}

.easter-banner p { margin: 0; }

.easter-banner a {
    color: #000;
    text-decoration: underline;
}

.banner-alert {
    color: #c0392b;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    display: inline-block;
    animation: banner-pulse 1.2s ease-in-out infinite;
}

.banner-alert:last-child {
    animation-delay: 0.6s;
}

@keyframes banner-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.4); color: #e74c3c; }
}

.easter-banner a:hover { opacity: 0.7; }


body.banner-visible .header { top: var(--banner-h, 64px); }
