/*
Theme Name: ASSK Theme
Author: Panagiotis
Version: 1.0
Description: Custom theme for ASSK.
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f6f4ef;
    color: #11151b;
    zoom: 0.80;
}

.container {
    width: 92%;
    max-width: 1500px;
    margin: 0 auto;
}

/* HEADER */

.site-header {
    background: linear-gradient(135deg, rgba(212,175,55,.07), transparent 32%), #11151b;
    border-bottom: 1px solid rgba(212,175,55,.38);
    padding: 18px 0;
}

.header-inner {
    min-height: 150px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 40px;
}

.header-left {
    justify-self: start;
    align-self: end;
    padding-bottom: 18px;
}

.header-brand-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: none;
    color: #d4af37;
    border-top: none;
    padding-top: 0;
    white-space: nowrap;
}

.header-emblem-link {
    justify-self: center;
    align-self: center;
}

.header-emblem {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

.header-right {
    justify-self: end;
    align-self: end;
    height: 150px;
    min-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 18px;
}

.header-cta {
    text-decoration: none;

    padding: 12px 24px;

    background: #d4af37;
    color: #11151b;

    font-weight: 900;

    border-radius: 15px;

    box-shadow:
        0 10px 25px rgba(212,175,55,.16);

    transition:
        background-color .22s ease,
        color .22s ease,
        transform .22s ease,
        box-shadow .22s ease;
}


.header-cta:hover {
    background: #ffffff;
    color: #11151b;

    transform: scale(1.08);

    box-shadow:
        0 0 12px rgba(255,255,255,.20),
        0 10px 25px rgba(212,175,55,.16);
}

.header-nav a {
    position: relative;
    color: #d4af37;
    text-decoration: none;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    padding: 0;
}

.header-nav a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    width: 1px;
    height: 18px;
    background: rgba(212,175,55,.55);
    transform: translateY(-50%) rotate(18deg);
}

.header-nav a:hover {
    color: #ffffff;
}

/* HERO */

.hero-slider {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #11151b;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    animation: sliderFade 18s infinite;
}

.slide-1 {
    background-image: url("assets/images/Slides/slide-1.jpg");
    animation-delay: 0s;
}

.slide-2 {
    background-image: url("assets/images/Slides/slide-2.jpg");
    animation-delay: 6s;
}

.slide-3 {
    background-image: url("assets/images/Slides/slide-3.jpg");
    animation-delay: 12s;
}

@keyframes sliderFade {
    0% { opacity: 0; transform: scale(1.05); }
    8% { opacity: 1; }
    33% { opacity: 1; transform: scale(1); }
    41% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(17,21,27,.90) 0%,
        rgba(17,21,27,.72) 45%,
        rgba(17,21,27,.34) 100%
    );
    z-index: 1;
}

.hero-slider-content {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 700px;
}

.eyebrow {
    color: #d4af37;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.eyebrow::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #d4af37;
    margin-top: 12px;
}

.hero-text h1 {
    font-size: clamp(38px, 3.8vw, 64px);
    line-height: .96;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-text p {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.86);
}

.button {
    display: inline-block;
    margin-top: 32px;
    padding: 15px 32px;
    text-decoration: none;
    font-weight: 900;
    background: #d4af37;
    color: #11151b;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(212,175,55,.16);
}

.button:hover {
    background: #c8a437;
}

/* PAGE HERO */

.page-hero {
    background: #11151b;
    padding: 110px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 54px;
    margin-bottom: 20px;
}

.page-hero p {
    color: rgba(255,255,255,.75);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

/* HOME SECTIONS */

.clean-section {
    padding: 115px 0;
    background: #f8f7f3;
    color: #11151b;
}

.clean-section:nth-of-type(even) {
    background: #ffffff;
}

.clean-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.section-kicker {
    color: #d4af37;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.clean-section h2,
.statement-section h2,
.clean-cta h2 {
    font-size: clamp(40px, 4vw, 68px);
    line-height: 1.02;
    color: inherit;
}

.clean-section p {
    font-size: 20px;
    line-height: 1.9;
    color: inherit;
    opacity: .75;
}

/* EQUIPMENT SECTION */

.clean-dark {
    position: relative;
    background:
        radial-gradient(circle at 15% 25%, rgba(212,175,55,.08) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(212,175,55,.06) 0%, transparent 40%),
        #11151b;
    color: #ffffff;
    overflow: hidden;
}

.clean-dark .section-kicker {
    color: #d4af37;
}

.clean-dark h2 {
    color: #ffffff;
}

.clean-dark p {
    color: rgba(255,255,255,.78);
    opacity: 1;
}

/* WEAPON CARDS */

.simple-list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.simple-list .weapon-card {
    position: relative;
    overflow: hidden;
    background: #f6f4ef;
    color: #11151b;
    border-radius: 22px;
    padding: 34px 30px;
    min-height: 250px;
    border: 1px solid rgba(212,175,55,.34);
    box-shadow: 0 22px 50px rgba(0,0,0,.22);
    transition: .25s ease;
}

.simple-list .weapon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 65px rgba(0,0,0,.32);
    border-color: #d4af37;
}

.simple-list .weapon-card::before {
    content: "";
    position: absolute;
    right: 25px;
    top: 25px;
    width: 150px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .95;
    pointer-events: none;
    z-index: 1;
}

.simple-list .weapon-card.jericho::before {
    background-image: url("assets/images/Jericho_transparent.png");
}

.simple-list .weapon-card.glock::before {
    background-image: url("assets/images/Glock_transparent.png");
    width: 120px;
}

.simple-list .weapon-card.cz::before {
    background-image: url("assets/images/CZ75_transparent.png");
}

.simple-list .weapon-card > * {
    position: relative;
    z-index: 2;
}

.simple-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 28px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: #11151b;
    color: #d4af37;
    font-size: 13px;
    font-weight: 900;
}

.simple-list h3 {
    color: #11151b;
    font-size: 30px;
    margin-bottom: 16px;
}

.simple-list p {
    color: #4a4a4a;
    font-size: 17px;
    line-height: 1.7;
}

/* STATEMENT */

.statement-section {
    position: relative;
    background:
        radial-gradient(circle at 20% 30%, rgba(212,175,55,.10) 0%, transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(212,175,55,.08) 0%, transparent 40%),
        #11151b;
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,.22);
    border-bottom: 1px solid rgba(212,175,55,.22);
    overflow: hidden;
}

.statement-section h2 {
    color: #d4af37;
    max-width: 1100px;
    margin: 0 auto 30px;
    text-shadow:
        0 0 18px rgba(212,175,55,.18),
        0 0 40px rgba(212,175,55,.08);
}

.statement-section p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255,255,255,.78);
}

.clean-cta {
    background: #f8f7f3;
    color: #11151b;
    padding: 110px 0;
    text-align: center;
}

.clean-cta p {
    max-width: 760px;
    margin: 24px auto 0;
    font-size: 20px;
    line-height: 1.8;
    color: #444;
}

/* GENERAL SECTIONS */

.section {
    padding: 110px 0;
    background: #ffffff;
}

.section-dark {
    background: #f6f4ef;
}

.section h2 {
    font-size: 52px;
    color: #11151b;
    margin-bottom: 24px;
}

.section-text {
    max-width: 1100px;
    font-size: 20px;
    line-height: 1.9;
    color: #444;
}

/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.card {
    background: #fff;
    border-top: 4px solid #d4af37;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17,21,27,.07);
}

.card h3 {
    margin-bottom: 18px;
    color: #11151b;
}

.card p {
    line-height: 1.8;
    color: #555;
}

/* SCHEDULE */

.schedule-section {
    background: #ffffff;
}

.schedule-list {
    display: grid;
    gap: 24px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    align-items: center;
    background: #f8f8f8;
    border-left: 5px solid #d4af37;
    padding: 28px;
}

.schedule-date {
    background: #11151b;
    color: #d4af37;
    text-align: center;
    padding: 20px;
}

.schedule-date span {
    display: block;
    font-size: 42px;
    font-weight: 900;
}

.schedule-date small {
    font-weight: 900;
    letter-spacing: 2px;
}

.schedule-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #11151b;
}

.schedule-content p {
    font-size: 18px;
    color: #444;
}

/* MEMBERSHIP */

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.membership-form {
    background: #f8f8f8;
    padding: 40px;
    border-top: 4px solid #d4af37;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17,21,27,.07);
}

.membership-form label {
    display: block;
    margin-bottom: 18px;
}

.membership-form input,
.membership-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
}

.membership-form button {
    width: 100%;
    padding: 18px;
    border: none;
    background: #11151b;
    color: #d4af37;
    font-weight: 700;
}

/* MEMBERSHIP DOCUMENTS */

.membership-info-section {
    background: #f6f4ef;
    padding: 90px 0 110px;
}

.membership-info-header {
    max-width: 900px;
    margin-bottom: 45px;
}

.membership-info-header h2 {
    font-size: clamp(36px, 4vw, 58px);
    color: #11151b;
    margin-bottom: 20px;
}

.membership-info-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.membership-info-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 32px;
    align-items: stretch;
}

.membership-doc-card,
.membership-side-card,
.membership-process {
    background: #ffffff;
    border: 1px solid rgba(212,175,55,.28);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(17,21,27,.07);
}

.membership-doc-card {
    padding: 38px;
}

.membership-doc-card h3,
.minor-box h3,
.membership-process h3 {
    font-size: 26px;
    color: #11151b;
    margin-bottom: 24px;
}

.membership-doc-card ul {
    list-style: none;
    display: grid;
    gap: 16px;
}

.membership-doc-card li {
    position: relative;
    padding-left: 34px;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.membership-doc-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: 900;
}

.membership-side-card {
    overflow: hidden;
}

.fee-box {
    background: #11151b;
    padding: 38px;
    color: #ffffff;
    border-bottom: 1px solid rgba(212,175,55,.35);
}

.fee-box span {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    margin-bottom: 14px;
}

.fee-box strong {
    color: #d4af37;
    font-size: 54px;
    line-height: 1;
}

.minor-box {
    padding: 34px 38px;
}

.minor-box p,
.membership-process p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.membership-process {
    margin-top: 32px;
    padding: 38px;
}

.process-list {
    margin: 18px 0 22px;
    padding-left: 20px;
}

.process-list li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.7;
}

.documents-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    padding: 18px 38px;
    background: #d4af37;
    color: #11151b;
    border: 2px solid #d4af37;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.documents-link:hover {
    background: #11151b;
    color: #d4af37;
    border-color: #11151b;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,.20);
}

/* CONTACT MAP */

.contact-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}

.contact-panel {
    background: #11151b;
    display: flex;
    align-items: center;
}

.contact-panel-inner {
    max-width: 520px;
    padding: 80px;
}

.contact-panel h2 {
    color: white;
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 45px;
}

.contact-info-list p {
    color: white;
    font-size: 22px;
    margin-bottom: 26px;
}

.map-button {
    display: inline-block;
    margin-top: 30px;
    background: #d4af37;
    color: #11151b;
    font-weight: 800;
    padding: 16px 34px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(212,175,55,.16);
}

.map-button:hover {
    background: #c8a437;
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    display: block;
}

/* FAQ PAGE */

.faq-section {
    padding: 110px 0;
    background: #f6f4ef;
}

.faq-category {
    margin-bottom: 70px;
}

.faq-category h2 {
    font-size: 42px;
    color: #11151b;
    margin-bottom: 30px;
    border-left: 4px solid #d4af37;
    padding-left: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 18px;
    border: 1px solid rgba(212,175,55,.25);
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.faq-item h3 {
    font-size: 22px;
    color: #11151b;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* MAIN FOOTER */

.site-footer-main {
    background: #2b2b2d;
    color: #ffffff;
    padding: 68px 0;
    border-top: 4px solid #d4af37;
}

.footer-main-inner {
    display: grid;
    grid-template-columns: 1fr .8fr 1.15fr .9fr 1fr;
    gap: 42px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand-right {
    align-items: flex-end;
    text-align: right;
}

.footer-logo-main {
    width: 170px;
    height: 170px;
    object-fit: contain;
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
    display: block;
}

.footer-logo-skoe {
    width: 150px;
    height: 170px;
    object-fit: contain;
    display: block;
}

.footer-brand p {
    margin-top: 18px;
    max-width: 230px;
    color: rgba(212,175,55,.92);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0;
    text-transform: none;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.footer-column a,
.footer-column p {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-column a:hover {
    color: #d4af37;
}

/* BOTTOM FOOTER BAR */

.site-footer {
    background: #11151b;
    padding: 28px 0;
    border-top: 1px solid rgba(212,175,55,.35);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.site-footer p {
    color: rgba(255,255,255,.82);
    font-size: 14px;
}

.developer-credit {
    font-size: 13px;
    color: rgba(255,255,255,.55);
}

.developer-credit a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
}

.developer-credit a:hover {
    color: #ffffff;
}

/* RESPONSIVE */

@media(max-width:1200px) {
    .header-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 24px;
        justify-items: center;
        align-items: center;
    }

    .header-left {
        justify-self: center;
        align-self: center;
        padding-bottom: 0;
        text-align: center;
    }

    .header-brand-title {
        white-space: normal;
        text-align: center;
        font-size: 13px;
    }

    .header-right {
        height: auto;
        min-width: 0;
        align-items: center;
        justify-self: center;
        align-self: center;
        gap: 24px;
        padding-bottom: 0;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-emblem {
        width: 120px;
        height: 120px;
    }

    .clean-grid,
    .cards,
    .membership-grid,
    .membership-info-grid,
    .contact-map-section {
        grid-template-columns: 1fr;
    }

    .simple-list {
        grid-template-columns: 1fr;
    }

    .hero-slider,
    .hero-slider-content {
        min-height: 560px;
    }

    .hero-text h1 {
        font-size: 54px;
    }

    .contact-panel-inner {
        padding: 50px 30px;
    }

    .contact-panel h2 {
        font-size: 36px;
    }

    .contact-info-list p {
        font-size: 20px;
    }

    .map-panel {
        height: 450px;
    }

   .footer-main-inner{
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
}

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:700px) {
    .schedule-item {
        grid-template-columns: 1fr;
    }

    .simple-list .weapon-card {
        padding: 30px 26px;
    }

    .simple-list .weapon-card::before {
        width: 120px;
        height: 80px;
        right: 18px;
        top: 18px;
        opacity: .55;
    }

    .fee-box strong {
        font-size: 44px;
    }
}/* Footer Credit */
.footer-credit{
    width:100%;
    text-align:center;
    margin-top:40px;
    padding-bottom:20px;

    color:#d0d0d0;
    font-size:15px;
    letter-spacing:.5px;
}

.footer-credit a{
    color:#c8a45a;
    text-decoration:none;
    font-weight:700;
}

.footer-credit a:hover{
    color:#d4af37;
}
/* =========================
   EQUIPMENT TABS + SLIDER
========================= */

.equipment-section {
    background: #111516;
    padding: 110px 8vw;
    color: #ffffff;
}

.equipment-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.section-kicker {
    color: #d6b23f;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.equipment-title {
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1;
    margin: 0 0 34px;
    font-weight: 800;
    letter-spacing: -2px;
}

.equipment-tabs {
    display: flex;
    gap: 14px;
    margin-bottom: 34px;
}

.equipment-tab {
    border: 1px solid rgba(214, 178, 63, 0.45);
    background: transparent;
    color: #d6b23f;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s ease;
}

.equipment-tab.active,
.equipment-tab:hover {
    background: #d6b23f;
    color: #080b0c;
}

.equipment-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 26px;
}

.equipment-slider {
    overflow: hidden;
    width: 100%;
}

.equipment-track {
    display: none;
    gap: 26px;
    transition: transform 0.35s ease;
}

.equipment-track.active {
    display: flex;
}

.equipment-card {
    position: relative;
    flex: 0 0 calc((100% - 52px) / 3);
    min-height: 250px;
    background: #f5f2ec;
    color: #071018;
    border: 1px solid rgba(214, 178, 63, 0.7);
    border-radius: 18px;
    padding: 34px 32px;
    overflow: hidden;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.34);
}

.equipment-card img {
    position: absolute;
    top: 34px;
    right: 32px;
    width: 120px;
    max-height: 90px;
    object-fit: contain;
}

.equipment-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #071018;
    color: #d6b23f;
    border-radius: 999px;
    min-width: 44px;
    height: 28px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 28px;
}

.equipment-card h3 {
    max-width: 68%;
    font-size: 30px;
    line-height: 1.05;
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.equipment-card p {
    max-width: 78%;
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
    color: #30373b;
}

.equipment-arrow {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(214, 178, 63, 0.65);
    background: transparent;
    color: #d6b23f;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    transition: 0.25s ease;
}

.equipment-arrow:hover {
    background: #d6b23f;
    color: #071018;
}

@media (max-width: 1024px) {
    .equipment-card {
        flex: 0 0 calc((100% - 26px) / 2);
    }
}

@media (max-width: 700px) {
    .equipment-section {
        padding: 80px 22px;
    }

    .equipment-slider-wrap {
        gap: 12px;
    }

    .equipment-card {
        flex: 0 0 100%;
        min-height: 260px;
    }

    .equipment-card h3,
    .equipment-card p {
        max-width: 100%;
    }

    .equipment-card img {
        opacity: 0.35;
        width: 150px;
    }

    .equipment-arrow {
        width: 42px;
        height: 42px;
        font-size: 34px;
    }
}
/* =========================
   EQUIPMENT MODAL
========================= */

.equipment-card {
    cursor: pointer;
}

.equipment-card::after {
    content: "Προβολή";
    position: absolute;
    right: 24px;
    bottom: 22px;
    color: #d6b23f;
    background: #071018;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.25s ease;
}

.equipment-card:hover {
    transform: translateY(-6px);
    border-color: #d6b23f;
}

.equipment-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.equipment-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.equipment-modal.active {
    display: flex;
}

.equipment-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(214, 178, 63, 0.18), transparent 34%),
        rgba(3, 6, 8, 0.82);
    backdrop-filter: blur(14px);
}

.equipment-modal-box {
    position: relative;
    z-index: 2;
    width: min(1280px, 94vw);
    max-height: 88vh;
    background: linear-gradient(135deg, #111719, #06090a);
    border: 1px solid rgba(214, 178, 63, 0.45);
    border-radius: 24px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.65),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.equipment-modal-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.18;
    pointer-events: none;
}

.equipment-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(214, 178, 63, 0.55);
    background: rgba(7, 16, 24, 0.8);
    color: #d6b23f;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.equipment-modal-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr .9fr;
    min-height: 640px;
}

.equipment-modal-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 60px;
    background:
        radial-gradient(circle, rgba(214, 178, 63, 0.18), transparent 58%),
        #0b1012;
    overflow: hidden;
}

.equipment-modal-image-wrap img {
    width: 100%;
    max-width: 620px;
    max-height: 460px;
    object-fit: contain;
    filter: drop-shadow(0 28px 35px rgba(0,0,0,0.7));
    transform: scale(1.16);
}
.equipment-modal-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #d6b23f;
    box-shadow: 0 0 24px rgba(214, 178, 63, 0.85);
    animation: scanMove 3.2s linear infinite;
    opacity: 0.75;
}

@keyframes scanMove {
    0% { top: 8%; }
    100% { top: 92%; }
}

.equipment-modal-content {
    position: relative;
    padding: 88px 70px;
    color: #ffffff;
}

.equipment-modal-kicker {
    display: inline-block;
    color: #d6b23f;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.equipment-modal-content h3 {
    font-size: clamp(36px, 4vw, 58px);
    line-height: 0.95;
    margin: 0 0 26px;
    letter-spacing: -1.5px;
}

.equipment-modal-content p {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    margin: 0 0 32px;
}

.equipment-modal-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.equipment-modal-specs span {
    border: 1px solid rgba(214, 178, 63, 0.45);
    color: #d6b23f;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 800px) {
    .equipment-modal-grid {
        grid-template-columns: 1fr;
    }

    .equipment-modal-image-wrap {
        min-height: 280px;
    }

    .equipment-modal-content {
        padding: 38px 28px 42px;
    }
}

/* =========================
   MODAL ANIMATIONS
========================= */

.equipment-modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease;
}

.equipment-modal.active {
    opacity: 1;
    visibility: visible;
}

.equipment-modal-backdrop {
    opacity: 0;
    transition: opacity .35s ease;
}

.equipment-modal.active .equipment-modal-backdrop {
    opacity: 1;
}

.equipment-modal-box {
    opacity: 0;
    transform: translateY(25px) scale(.95);
    transition:
        transform .42s cubic-bezier(.2,.8,.2,1),
        opacity .32s ease;
}

.equipment-modal.active .equipment-modal-box {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.equipment-modal-image-wrap img {
    opacity: 0;
    transform: translateX(-30px) scale(1.08);
    transition:
        transform .55s cubic-bezier(.2,.8,.2,1) .12s,
        opacity .45s ease .12s;
}

.equipment-modal.active .equipment-modal-image-wrap img {
    opacity: 1;
    transform: translateX(0) scale(1.16);
}

.equipment-modal-content {
    opacity: 0;
    transform: translateX(18px);
    transition:
        transform .45s ease .18s,
        opacity .4s ease .18s;
}

.equipment-modal.active .equipment-modal-content {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   LOCATION SECTION
========================================== */



/* ==================================================
   HOME LOCATION SECTION
================================================== */


.home-location-panel{

    width:100%;

    padding:70px 0;

    background:transparent;

    border:none;

    box-shadow:none;

}

.home-location-panel::before{
    display:none;
}

.home-location-heading {
    max-width: 720px;
    margin: 0 auto 42px;

    text-align: center;
}

.home-location-pin {
    display: inline-block;

    color: #d7b55d;

    font-size: 0.7rem;

    text-shadow:
        0 0 8px rgba(215, 181, 93, 0.65);
}

.home-location-heading h2 {
    margin: 0 0 18px;

    color: #d4af37;

    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.home-location-heading p {
    max-width: 680px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.72);

    font-size: 1rem;
    line-height: 1.85;
}

.home-location-map{

    width:100%;

    margin-top:45px;

    overflow:hidden;

    border-radius:18px;

    border:2px solid rgba(198,156,65,.18);

    box-shadow:
    0 18px 45px rgba(0,0,0,.22);

}
.home-location-map iframe{

    width:100%;

    height:430px;

    display:block;

    border:0;

}

.home-location-button {
    display: table;

    margin: 32px auto 0;
    padding: 14px 27px;

    color: #29292b;
    background: #c69c41;

    border: 1px solid #c69c41;
    border-radius: 6px;

    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.025em;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.home-location-button:hover {
    color: #d4af37;
    background: transparent;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.28);
}

/* ==================================================
   RESPONSIVE
================================================== */

/* ==================================================
   HOME LOCATION SECTION
   ΧΑΡΤΗΣ ΑΡΧΙΚΗΣ ΣΕΛΙΔΑΣ
================================================== */

.home-location-section{

    background:#2d2d2f;

    padding:90px 0;

    border-top:1px solid rgba(212,175,55,.15);

}

.home-location-section .container{
    width:92%;
    max-width:1600px;
    margin:0 auto;
}
.home-location-panel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 55px 64px 48px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(198, 156, 65, 0.10),
            transparent 34%
        ),
        #29292b;

    border: 1px solid rgba(198, 156, 65, 0.42);
    border-radius: 16px;

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.18);
}

.home-location-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 180px;
    height: 2px;

    background: #c69c41;

    transform: translateX(-50%);

    box-shadow:
        0 0 16px rgba(198, 156, 65, 0.55);
}

.home-location-heading {
    max-width: 780px;
    margin: 0 auto 30px;
    text-align: center;
}

.home-location-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-bottom: 16px;
    padding: 7px 15px;

    color: #d9b85d;
    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(198, 156, 65, 0.38);
    border-radius: 999px;

    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.home-location-pin {
    display: inline-block;
    color: #d9b85d;
    font-size: 0.68rem;

    text-shadow:
        0 0 8px rgba(217, 184, 93, 0.65);
}

.home-location-heading h2 {
    margin: 0 0 14px;

    color:#c69c41;

    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.home-location-heading p {
    max-width: 700px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.74);

    font-size: 0.96rem;
    line-height: 1.75;
}

.home-location-map {
    position: relative;
    width: 100%;
    overflow: hidden;

    background: #1d1d1f;

    border: 1px solid rgba(198, 156, 65, 0.38);
    border-radius: 13px;

    box-shadow:
        0 15px 38px rgba(0, 0, 0, 0.30);
}

.home-location-map iframe {
    display: block;

    width: 100%;
    height: 410px;

    border: 0;
}

.home-location-button {
    display: table;

    margin: 28px auto 0;
    padding: 13px 28px;

    color: #29292b;
    background: #c69c41;

    border: 1px solid #c69c41;
    border-radius: 5px;

    text-decoration: none;
    text-align: center;

    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.025em;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.home-location-button:hover {
    color: #d9b85d;
    background: transparent;

    transform: translateY(-2px);

    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.26);
}

/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 1000px) {

    .home-location-section {
        padding: 60px 0;
    }

    .home-location-section .container {
        width: min(92%, 1680px);
    }

    .home-location-panel {
        padding: 48px 34px 42px;
        border-radius: 15px;
    }

    .home-location-map iframe {
        height: 380px;
    }

}

/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 650px) {

    .home-location-section {
        padding: 42px 0;
    }

    .home-location-section .container {
        width: calc(100% - 28px);
    }

    .home-location-panel {
        padding: 40px 16px 34px;
        border-radius: 13px;
    }

    .home-location-panel::before {
        width: 120px;
    }

    .home-location-heading {
        margin-bottom: 25px;
    }

    .home-location-badge {
        margin-bottom: 14px;
        padding: 7px 13px;
        font-size: 0.68rem;
    }

    .home-location-heading h2 {
        margin-bottom: 13px;
        font-size: 1.9rem;
    }

    .home-location-heading p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .home-location-map {
        border-radius: 10px;
    }

    .home-location-map iframe {
        height: 310px;
    }

    .home-location-button {
        display: block;

        width: 100%;
        max-width: 290px;

        margin-top: 24px;
        padding: 13px 18px;
    }

}

/* ==================================================
   HOME GALLERY — 10 PHOTOS
   5 PAIRS / INDEPENDENT LEFT-RIGHT VERTICAL CHANGE
================================================== */

.home-gallery-link {
    display: block;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.home-gallery-slider {
    position: relative;
    width: 100%;
    min-height: 580px;
    overflow: hidden;
    isolation: isolate;
    background: #080c0e;
    border-top: 1px solid rgba(212, 175, 55, 0.24);
    border-bottom: 1px solid rgba(212, 175, 55, 0.24);
    cursor: pointer;
}

/* Each frame contains one left and one right photo. */
.home-gallery-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.home-gallery-photo {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    opacity: 0;
    background-image: var(--gallery-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: saturate(.94) contrast(1.04) brightness(.90);
    transform: translate3d(0, 100%, 0);
    animation-name: homeGalleryPhotoCycle;
    animation-duration: 35s;
    animation-timing-function: cubic-bezier(.76, 0, .24, 1);
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    will-change: transform, opacity;
    transition: filter .35s ease;
}

.home-gallery-photo-left {
    left: 0;
}

.home-gallery-photo-right {
    right: 0;
}

/*
   Left side changes first every 7 seconds.
   Right side follows 2.4 seconds later.
*/
.home-gallery-frame-1 .home-gallery-photo-left  { animation-delay: -1s; }
.home-gallery-frame-2 .home-gallery-photo-left  { animation-delay: 6s; }
.home-gallery-frame-3 .home-gallery-photo-left  { animation-delay: 13s; }
.home-gallery-frame-4 .home-gallery-photo-left  { animation-delay: 20s; }
.home-gallery-frame-5 .home-gallery-photo-left  { animation-delay: 27s; }

/* Keep the first right photo visible immediately; later changes are staggered. */
.home-gallery-frame-1 .home-gallery-photo-right {
    animation-name: homeGalleryFirstRightCycle;
    animation-delay: -1s;
}
.home-gallery-frame-2 .home-gallery-photo-right { animation-delay: 8.4s; }
.home-gallery-frame-3 .home-gallery-photo-right { animation-delay: 15.4s; }
.home-gallery-frame-4 .home-gallery-photo-right { animation-delay: 22.4s; }
.home-gallery-frame-5 .home-gallery-photo-right { animation-delay: 29.4s; }


/*
   The first right image has a longer initial visible window.
   This prevents a black gap before gallery-4 enters.
*/
@keyframes homeGalleryFirstRightCycle {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    2.85% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    27% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    29.85% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    29.86%,
    100% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes homeGalleryPhotoCycle {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    2.85% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    20% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    22.85% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    22.86%,
    100% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

/* One central vertical separator only. */
.home-gallery-slider::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 3;
    width: 14px;
    background: #080c0e;
    transform: translateX(-50%);
    pointer-events: none;
}

.home-gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(7, 11, 13, .94) 0%,
        rgba(7, 11, 13, .80) 22%,
        rgba(7, 11, 13, .48) 43%,
        rgba(7, 11, 13, .18) 70%,
        rgba(7, 11, 13, .08) 100%
    );
    transition: background .4s ease;
}

.home-gallery-link:hover .home-gallery-overlay {
    background: linear-gradient(
        90deg,
        rgba(7, 11, 13, .89) 0%,
        rgba(7, 11, 13, .71) 22%,
        rgba(7, 11, 13, .38) 43%,
        rgba(7, 11, 13, .11) 70%,
        rgba(7, 11, 13, .04) 100%
    );
}

.home-gallery-link:hover .home-gallery-photo {
    filter: saturate(1) contrast(1.05) brightness(.94);
}

.home-gallery-content {
    position: relative;
    z-index: 5;
    min-height: 580px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.home-gallery-text {
    width: min(720px, 66%);
    padding: 72px 0;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}

.home-gallery-link:hover .home-gallery-text {
    transform: translateX(9px);
}

.home-gallery-kicker {
    display: inline-block;
    margin-bottom: 22px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.home-gallery-kicker::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    margin-top: 13px;
    background: #d4af37;
    box-shadow: 0 0 14px rgba(212, 175, 55, .32);
}

.home-gallery-text h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -.04em;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .38);
}

.home-gallery-text p {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

.home-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(-50%);
    pointer-events: none;
}

.home-gallery-dots span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, .30);
}

.home-gallery-dots span::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #d4af37;
    transform: scaleX(0);
    transform-origin: left;
    animation: homeGalleryIndicator 35s linear infinite;
}

.home-gallery-dots span:nth-child(1)::after { animation-delay: -1s; }
.home-gallery-dots span:nth-child(2)::after { animation-delay: 6s; }
.home-gallery-dots span:nth-child(3)::after { animation-delay: 13s; }
.home-gallery-dots span:nth-child(4)::after { animation-delay: 20s; }
.home-gallery-dots span:nth-child(5)::after { animation-delay: 27s; }

@keyframes homeGalleryIndicator {
    0% { transform: scaleX(0); }
    20% { transform: scaleX(1); }
    20.01%, 100% { transform: scaleX(0); }
}

@media (max-width: 1000px) {
    .home-gallery-slider,
    .home-gallery-content {
        min-height: 510px;
    }

    .home-gallery-text {
        width: min(650px, 78%);
    }

    .home-gallery-text h2 {
        font-size: clamp(42px, 7vw, 64px);
    }

    .home-gallery-slider::before {
        width: 10px;
    }
}

@media (max-width: 650px) {
    .home-gallery-slider,
    .home-gallery-content {
        min-height: 470px;
    }

    .home-gallery-content {
        align-items: flex-end;
    }

    .home-gallery-text {
        width: 100%;
        padding: 48px 0 72px;
    }

    .home-gallery-kicker {
        margin-bottom: 18px;
        font-size: 11px;
    }

    .home-gallery-kicker::after {
        width: 54px;
        margin-top: 11px;
    }

    .home-gallery-text h2 {
        margin-bottom: 17px;
        font-size: 40px;
    }

    .home-gallery-text p {
        font-size: 15px;
    }

    .home-gallery-overlay,
    .home-gallery-link:hover .home-gallery-overlay {
        background: linear-gradient(
            0deg,
            rgba(7, 11, 13, .97) 0%,
            rgba(7, 11, 13, .81) 38%,
            rgba(7, 11, 13, .40) 70%,
            rgba(7, 11, 13, .14) 100%
        );
    }

    .home-gallery-slider::before {
        width: 8px;
    }

    .home-gallery-dots {
        bottom: 21px;
        gap: 6px;
    }

    .home-gallery-dots span {
        width: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-gallery-photo,
    .home-gallery-dots span::after {
        animation: none !important;
    }

    .home-gallery-frame:not(.home-gallery-frame-1) {
        display: none;
    }

    .home-gallery-frame-1 .home-gallery-photo {
        opacity: 1;
        transform: none;
    }

    .home-gallery-link:hover .home-gallery-text {
        transform: none;
    }
}

/* NEWS PAGE - EXTRA SPACE BEFORE FOOTER */

.page-content {
    padding-bottom: 150px;
}

/* ==================================================
   HEADER
================================================== */

.site-header {
    background:
        linear-gradient(
            135deg,
            rgba(212,175,55,.07),
            transparent 32%
        ),
        #11151b;

    border-bottom: 1px solid rgba(212,175,55,.38);

    padding: 18px 0;
}


/* MAIN HEADER GRID */

.header-inner {
    min-height: 150px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: end;

    gap: 40px;
}


/* ==================================================
   LEFT SIDE
================================================== */

.header-left {
    justify-self: start;
    align-self: end;

    height: 150px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 18px;
}


/* INSTAGRAM */

.header-instagram-link {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #d4af37;

    text-decoration: none;

    flex: 0 0 auto;

    transition:
        transform .22s ease,
        color .22s ease,
        filter .22s ease;
}


.header-instagram-icon {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.header-instagram-link:hover {
    color: #ffffff;

    transform: scale(1.08);

    filter:
        drop-shadow(
            0 0 8px rgba(212,175,55,.35)
        );
}


/* CLUB NAME */

.header-brand-title {
    font-size: 16px;

    font-weight: 700;

    letter-spacing: .04em;

    text-transform: none;

    color: #d4af37;

    border-top: none;

    padding-top: 0;

    white-space: nowrap;
}


/* ==================================================
   CENTER LOGO
================================================== */

.header-emblem-link {
    justify-self: center;

    align-self: center;
}


.header-emblem {
    width: 220px;
    height: 220px;

    object-fit: contain;

    border-radius: 50%;

    display: block;
}


/* ==================================================
   RIGHT SIDE
================================================== */

.header-right {
    justify-self: end;

    align-self: end;

    height: 150px;

    min-width: 620px;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: space-between;

    padding-bottom: 18px;
}


/* ΓΙΝΕ ΜΕΛΟΣ */

.header-cta {
    text-decoration: none;

    padding: 12px 24px;

    background: #d4af37;

    color: #11151b;

    font-weight: 900;

    border-radius: 15px;

    box-shadow:
        0 10px 25px rgba(212,175,55,.16);
}


.header-cta:hover {
    background: #c8a437;
}


/* ==================================================
   NAVIGATION
================================================== */

.header-nav {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 28px;

    flex-wrap: nowrap;

    white-space: nowrap;

    border-top: none;

    padding-top: 0;
}


.header-nav a {
    position: relative;

    color: #d4af37;

    text-decoration: none;

    font-size: 15px;

    line-height: 1;

    font-weight: 700;

    padding: 0;
}


/* DIAGONAL SEPARATORS */

.header-nav a:not(:last-child)::after {
    content: "";

    position: absolute;

    right: -15px;

    top: 50%;

    width: 1px;
    height: 18px;

    background:
        rgba(212,175,55,.55);

    transform:
        translateY(-50%)
        rotate(18deg);
}


.header-nav a:hover {
    color: #ffffff;
}


/* ==================================================
   HEADER RESPONSIVE
================================================== */

@media (max-width: 1200px) {

    .header-inner {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 24px;

        justify-items: center;

        align-items: center;
    }


    .header-left {
        justify-self: center;

        align-self: center;

        height: auto;

        align-items: center;

        gap: 16px;

        padding-bottom: 0;

        text-align: center;
    }


    .header-instagram-link {
        width: 36px;
        height: 36px;
    }


    .header-brand-title {
        white-space: normal;

        text-align: center;

        font-size: 13px;
    }


    .header-emblem {
        width: 120px;
        height: 120px;
    }


    .header-right {
        height: auto;

        min-width: 0;

        align-items: center;

        justify-self: center;

        align-self: center;

        gap: 24px;

        padding-bottom: 0;
    }


    .header-nav {
        flex-wrap: wrap;

        justify-content: center;
    }
}

/* ΓΙΝΕ ΜΕΛΟΣ - SMOOTH HOVER */

.header-cta {
    transition:
        background-color .22s ease,
        color .22s ease,
        transform .22s ease,
        box-shadow .22s ease !important;
}

.header-cta:hover,
.header-cta:focus {
    background-color: #ffffff !important;
    color: #11151b !important;

    transform: scale(1.08);

    box-shadow:
        0 0 12px rgba(255,255,255,.20),
        0 10px 25px rgba(212,175,55,.16);
}

/* ==================================================
   PREMIUM GALLERY PAGE
================================================== */

.assk-gallery-page {
    background: #f3f0e8;
    min-height: 100vh;
}


/* ==================================================
   GALLERY HERO
================================================== */

.gallery-hero {
    position: relative;
    min-height: 390px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-bottom: 1px solid rgba(198, 156, 45, 0.8);
}


.gallery-hero-background {
    position: absolute;
    inset: 0;

    background-image:
        url('assets/images/gallery-1.JPEG');

    background-size: cover;
    background-position: center 52%;

    transform: scale(1.03);

    filter:
        grayscale(20%)
        contrast(1.05)
        brightness(0.75);
}


.gallery-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 14, 18, 0.98) 0%,
            rgba(10, 14, 18, 0.92) 32%,
            rgba(10, 14, 18, 0.72) 58%,
            rgba(10, 14, 18, 0.48) 100%
        );
}


.gallery-hero-inner {
    position: relative;
    z-index: 2;

    width: 100%;
}


.gallery-heading {
    max-width: 720px;

    padding: 75px 0 80px;
}


.gallery-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #d7ae32;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.34em;

    text-transform: uppercase;
}


.gallery-heading h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(54px, 5vw, 78px);
    line-height: 0.98;

    font-weight: 700;

    letter-spacing: -0.025em;
}


.gallery-title-line {
    display: block;

    width: 58px;
    height: 2px;

    margin: 25px 0 22px;

    background: #d7ae32;
}


.gallery-heading p {
    max-width: 590px;

    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 16px;
    line-height: 1.75;

    letter-spacing: 0.01em;
}


/* ==================================================
   GALLERY AREA
================================================== */

.gallery-section {
    position: relative;

    padding: 70px 0 110px;

    background:
        linear-gradient(
            180deg,
            #f5f2ea 0%,
            #f0ece3 100%
        );
}


/* ==================================================
   GRID
================================================== */

.assk-gallery-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}


/* ==================================================
   PHOTO ITEM
================================================== */

.assk-gallery-item {
    position: relative;

    width: 100%;
    height: 255px;

    padding: 0;

    border: 0;
    border-radius: 3px;

    overflow: hidden;

    background: #11161c;

    cursor: pointer;

    box-shadow:
        0 8px 24px rgba(10, 15, 20, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.assk-gallery-item:nth-child(1),
.assk-gallery-item:nth-child(6) {
    grid-column: span 2;

    height: 330px;
}


.assk-gallery-item:nth-child(2),
.assk-gallery-item:nth-child(3),
.assk-gallery-item:nth-child(4),
.assk-gallery-item:nth-child(5),
.assk-gallery-item:nth-child(7),
.assk-gallery-item:nth-child(8),
.assk-gallery-item:nth-child(9),
.assk-gallery-item:nth-child(10) {
    height: 255px;
}


.assk-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.7,.2,1),
        filter 0.5s ease;
}


.gallery-item-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 8, 11, 0.02) 20%,
            rgba(5, 8, 11, 0.35) 100%
        );

    opacity: 0.4;

    transition:
        opacity 0.35s ease,
        background 0.35s ease;
}


.gallery-item-icon {
    position: absolute;

    right: 18px;
    bottom: 16px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(215, 174, 50, 0.7);

    color: #d7ae32;

    background:
        rgba(8, 12, 16, 0.68);

    font-size: 24px;
    font-weight: 300;
    line-height: 1;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.assk-gallery-item:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 38px rgba(10, 15, 20, 0.18);
}


.assk-gallery-item:hover img {
    transform: scale(1.045);

    filter:
        contrast(1.03)
        brightness(0.92);
}


.assk-gallery-item:hover .gallery-item-overlay {
    opacity: 1;

    background:
        linear-gradient(
            180deg,
            rgba(5, 8, 11, 0.02) 10%,
            rgba(5, 8, 11, 0.58) 100%
        );
}


.assk-gallery-item:hover .gallery-item-icon {
    opacity: 1;

    transform: translateY(0);
}


.gallery-item-icon:hover {
    background: #d7ae32;

    color: #111820;
}


/* ==================================================
   LIGHTBOX
================================================== */

.assk-lightbox {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 90px;

    background:
        rgba(5, 8, 11, 0.96);

    backdrop-filter: blur(5px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
}


.assk-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}


.assk-lightbox-content {
    width: 100%;
    height: 100%;

    max-width: 1500px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.assk-lightbox-content img {
    display: block;

    max-width: 100%;
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    opacity: 0;

    transform:
        scale(0.96)
        translateY(8px);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.55);

    transition:
        opacity 0.32s ease,
        transform 0.32s ease;
}


.assk-lightbox-content img.is-visible {
    opacity: 1;

    transform:
        scale(1)
        translateY(0);
}


/* ==================================================
   CLOSE BUTTON
================================================== */

.assk-lightbox-close {
    position: absolute;

    top: 24px;
    right: 32px;

    z-index: 3;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border:
        1px solid rgba(255, 255, 255, 0.18);

    background:
        rgba(255, 255, 255, 0.03);

    color: #ffffff;

    font-size: 32px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


.assk-lightbox-close:hover {
    color: #111820;

    background: #d7ae32;

    border-color: #d7ae32;

    transform: rotate(90deg);
}


/* ==================================================
   LIGHTBOX ARROWS
================================================== */

.assk-lightbox-arrow {
    position: absolute;

    top: 50%;

    z-index: 3;

    width: 52px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    padding: 0;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.03);

    color: #ffffff;

    font-size: 38px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


.assk-lightbox-arrow:hover {
    background: #d7ae32;

    border-color: #d7ae32;

    color: #111820;
}


.assk-lightbox-prev {
    left: 24px;
}


.assk-lightbox-next {
    right: 24px;
}


body.gallery-lightbox-open {
    overflow: hidden;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {

    .assk-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .assk-gallery-item,
    .assk-gallery-item:nth-child(1),
    .assk-gallery-item:nth-child(6) {
        grid-column: span 1;

        height: 290px;
    }


    .gallery-heading {
        padding:
            65px 0
            70px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .gallery-hero {
        min-height: 340px;
    }


    .gallery-hero-background {
        background-position: 62% center;
    }


    .gallery-hero-overlay {
        background:
            rgba(9, 13, 17, 0.82);
    }


    .gallery-heading {
        padding:
            55px 0
            60px;
    }


    .gallery-eyebrow {
        font-size: 10px;
    }


    .gallery-heading h1 {
        font-size: 45px;
    }


    .gallery-heading p {
        font-size: 14px;
    }


    .gallery-section {
        padding:
            45px 0
            75px;
    }


    .assk-gallery-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .assk-gallery-item,
    .assk-gallery-item:nth-child(1),
    .assk-gallery-item:nth-child(6) {
        height: 270px;
    }


    .assk-lightbox {
        padding:
            65px 12px
            35px;
    }


    .assk-lightbox-arrow {
        width: 42px;
        height: 52px;

        font-size: 30px;

        background:
            rgba(5, 8, 11, 0.58);
    }


    .assk-lightbox-prev {
        left: 6px;
    }


    .assk-lightbox-next {
        right: 6px;
    }


    .assk-lightbox-close {
        top: 14px;
        right: 14px;

        width: 40px;
        height: 40px;

        font-size: 28px;
    }

}

/* ==================================================
   SCHEDULE — COMPLETED STATUS
================================================== */

.schedule-item {
    position: relative;
}


/* STATUS CONTAINER */

.schedule-status {
    position: absolute;

    right: 42px;
    top: 50%;

    transform: translateY(-50%);

    width: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    z-index: 2;
}


/* CHECK ICON */

.schedule-status-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 9px;

    border: 1.5px solid #d2a72d;
    border-radius: 50%;

    color: #d2a72d;

    font-size: 21px;
    font-weight: 500;
    line-height: 1;
}


/* TEXT */

.schedule-status-text {
    color: #111820;

    font-size: 11px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.22em;

    white-space: nowrap;
}


/* GOLD LINE */

.schedule-status-line {
    width: 34px;
    height: 1px;

    display: block;

    margin-top: 10px;

    background: #d2a72d;
}


/* ==================================================
   RESERVE SPACE FOR STATUS
================================================== */

.schedule-content {
    padding-right: 180px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .schedule-status {
        right: 24px;
        width: 105px;
    }

    .schedule-content {
        padding-right: 145px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .schedule-status {
        position: relative;

        right: auto;
        top: auto;

        transform: none;

        width: auto;

        margin-top: 18px;

        align-items: flex-start;
    }

    .schedule-content {
        padding-right: 0;
    }

    .schedule-status-icon {
        width: 30px;
        height: 30px;

        font-size: 17px;
    }

    .schedule-status-text {
        font-size: 10px;
    }

    .schedule-status-line {
        width: 30px;
    }

}

/* ==================================================
   SCHEDULE STATUS — SIZE REFINEMENT
================================================== */

.schedule-status {
    width: 155px;
    right: 38px;
}


/* Bigger check circle */

.schedule-status-icon {
    width: 48px;
    height: 48px;

    border-width: 2px;

    font-size: 28px;
    font-weight: 500;

    margin-bottom: 11px;
}


/* Bigger status text */

.schedule-status-text {
    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.18em;
}


/* Gold underline */

.schedule-status-line {
    width: 46px;
    height: 2px;

    margin-top: 11px;
}


/* Mobile */

@media (max-width: 650px) {

    .schedule-status {
        width: auto;
        right: auto;
    }

    .schedule-status-icon {
        width: 38px;
        height: 38px;

        font-size: 21px;
    }

    .schedule-status-text {
        font-size: 11px;
    }

    .schedule-status-line {
        width: 36px;
    }

}