/*
Theme Name: ERMEION
Author: Giorgos P.
Version: 1.0.0
Description: clean, high-performance theme  based on original static layout.
*/

html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *::after { box-sizing: inherit; }

body {
    margin: 0; padding: 0;
    background-color: rgb(251, 246, 240);
    color: rgb(101, 81, 70);
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px; line-height: 1.6em;
}

.site-wrapper { margin: 0 auto;}

h1, h2, h3 { color: rgb(101, 81, 70); font-family: 'Times New Roman', Times, serif; font-weight: bold; margin-top: 1.5em; margin-bottom: 0.5em; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.25rem; }

p { font-size: 20px; line-height: normal; }
a, .brand-blue { color: rgb(78, 132, 154); text-decoration: none; }
.brand-lightyellow {
    background-color: rgb(243 235 225);
}
a:hover { color: rgb(101, 81, 70); }

/* Το εφέ ανάδυσης (Fade In) */
.animate-fade-in {
    animation: ermeionFadeIn 0.6s ease-out forwards;
}

/* Ο ορισμός της κίνησης: από το τίποτα στο παν */
@keyframes ermeionFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px); /* Προαιρετικό: δίνει και μια ανεπαίσθητη κίνηση προς τα πάνω */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ==========================================================================
   ΕΡΜΕΙΟΝ UTILITY FRAMEWORK
   ========================================================================== */

:root {
    --ermeion-gutter: 40px; /* (gutter) */
}

/* --- 1. CORE GRID STRUCTURE --- */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ermeion-gutter);
    width: 100%;
    box-sizing: border-box;
}

/* Flex Alignment Utilities */
.row.align-center    { align-items: center; }
.row.align-stretch   { align-items: stretch; }
.row.justify-center  { justify-content: center !important; }
.row.justify-between { justify-content: space-between; }

/* Καθολικό Base Style για όλες τις στήλες */
.col, [class*="col-"] {
    min-width: 0 !important;
    box-sizing: border-box;
}

.col { flex: 1; }

/* --- [A] DEFAULT / MOBILE FIRST COLUMNS (0px και άνω) --- */
.col-12 { width: 100%; flex: 0 0 100%; }
.col-11 { width: calc(91.666% - (var(--ermeion-gutter) * 0.083)); flex: 0 0 calc(91.666% - (var(--ermeion-gutter) * 0.083)); }
.col-10 { width: calc(83.333% - (var(--ermeion-gutter) * 0.166)); flex: 0 0 calc(83.333% - (var(--ermeion-gutter) * 0.166)); }
.col-9  { width: calc(75% - (var(--ermeion-gutter) * 0.25)); flex: 0 0 calc(75% - (var(--ermeion-gutter) * 0.25)); }
.col-8  { width: calc(66.666% - (var(--ermeion-gutter) * 0.333)); flex: 0 0 calc(66.666% - (var(--ermeion-gutter) * 0.333)); }
.col-7  { width: calc(58.333% - (var(--ermeion-gutter) * 0.416)); flex: 0 0 calc(58.333% - (var(--ermeion-gutter) * 0.416)); }
.col-6  { width: calc(50% - (var(--ermeion-gutter) * 0.5)); flex: 0 0 calc(50% - (var(--ermeion-gutter) * 0.5)); }
.col-5  { width: calc(41.666% - (var(--ermeion-gutter) * 0.583)); flex: 0 0 calc(41.666% - (var(--ermeion-gutter) * 0.583)); }
.col-4  { width: calc(33.333% - (var(--ermeion-gutter) * 0.666)); flex: 0 0 calc(33.333% - (var(--ermeion-gutter) * 0.666)); }
.col-3  { width: calc(25% - (var(--ermeion-gutter) * 0.75)); flex: 0 0 calc(25% - (var(--ermeion-gutter) * 0.75)); }
.col-2  { width: calc(16.666% - (var(--ermeion-gutter) * 0.833)); flex: 0 0 calc(16.666% - (var(--ermeion-gutter) * 0.833)); }
.col-1  { width: calc(8.333% - (var(--ermeion-gutter) * 0.916)); flex: 0 0 calc(8.333% - (var(--ermeion-gutter) * 0.916)); }


/* --- [B] RESPONSIVE BREAKPOINTS (SM, MD, LG) --- */

/* --- ΚΙΝΗΤΑ / SM BREAKPOINT (Έως 640px) --- */
@media (max-width: 640px) {
    .row { gap: 15px; } /* Μικρότερο mobile gap */

    .col-sm-12 { width: 100% !important; flex: 0 0 100% !important; }
    .col-sm-11 { width: calc(91.666% - (15px * 0.083)) !important; flex: 0 0 calc(91.666% - (15px * 0.083)) !important; }
    .col-sm-10 { width: calc(83.333% - (15px * 0.166)) !important; flex: 0 0 calc(83.333% - (15px * 0.166)) !important; }
    .col-sm-9  { width: calc(75% - (15px * 0.25)) !important; flex: 0 0 calc(75% - (15px * 0.25)) !important; }
    .col-sm-8  { width: calc(66.666% - (15px * 0.333)) !important; flex: 0 0 calc(66.666% - (15px * 0.333)) !important; }
    .col-sm-7  { width: calc(58.333% - (15px * 0.416)) !important; flex: 0 0 calc(58.333% - (15px * 0.416)) !important; }
    .col-sm-6  { width: calc(50% - (15px * 0.5)) !important; flex: 0 0 calc(50% - (15px * 0.5)) !important; }
    .col-sm-5  { width: calc(41.666% - (15px * 0.583)) !important; flex: 0 0 calc(41.666% - (15px * 0.583)) !important; }
    .col-sm-4  { width: calc(33.333% - (15px * 0.666)) !important; flex: 0 0 calc(33.333% - (15px * 0.666)) !important; }
    .col-sm-3  { width: calc(25% - (15px * 0.75)) !important; flex: 0 0 calc(25% - (15px * 0.75)) !important; }
    .col-sm-2  { width: calc(16.666% - (15px * 0.833)) !important; flex: 0 0 calc(16.666% - (16px * 0.833)) !important; }
    .col-sm-1  { width: calc(8.333% - (15px * 0.916)) !important; flex: 0 0 calc(8.333% - (15px * 0.916)) !important; }
}

/* --- TABLETS / MD BREAKPOINT (Από 641px έως 1024px) --- */
@media (min-width: 641px) and (max-width: 1024px) {
    .row { gap: 20px; } /* Μεσαίο tablet gap */

    .col-md-12 { width: 100% !important; flex: 0 0 100% !important; }
    .col-md-11 { width: calc(91.666% - (20px * 0.083)) !important; flex: 0 0 calc(91.666% - (20px * 0.083)) !important; }
    .col-md-10 { width: calc(83.333% - (20px * 0.166)) !important; flex: 0 0 calc(83.333% - (20px * 0.166)) !important; }
    .col-md-9  { width: calc(75% - (20px * 0.25)) !important; flex: 0 0 calc(75% - (20px * 0.25)) !important; }
    .col-md-8  { width: calc(66.666% - (20px * 0.333)) !important; flex: 0 0 calc(66.666% - (20px * 0.333)) !important; }
    .col-md-7  { width: calc(58.333% - (20px * 0.416)) !important; flex: 0 0 calc(58.333% - (20px * 0.416)) !important; }
    .col-md-6  { width: calc(50% - (20px * 0.5)) !important; flex: 0 0 calc(50% - (20px * 0.5)) !important; }
    .col-md-5  { width: calc(41.666% - (20px * 0.583)) !important; flex: 0 0 calc(41.666% - (20px * 0.583)) !important; }
    .col-md-4  { width: calc(33.333% - (20px * 0.666)) !important; flex: 0 0 calc(33.333% - (20px * 0.666)) !important; }
    .col-md-3  { width: calc(25% - (20px * 0.75)) !important; flex: 0 0 calc(25% - (20px * 0.75)) !important; }
    .col-md-2  { width: calc(16.666% - (20px * 0.833)) !important; flex: 0 0 calc(16.666% - (20px * 0.833)) !important; }
    .col-md-1  { width: calc(8.333% - (20px * 0.916)) !important; flex: 0 0 calc(8.333% - (20px * 0.916)) !important; }
}

/* --- DESKTOPS / LG BREAKPOINT (Από 1025px και άνω) --- */
@media (min-width: 1025px) {
    .col-lg-12 { width: 100% !important; flex: 0 0 100% !important; }
    .col-lg-11 { width: calc(91.666% - (var(--ermeion-gutter) * 0.083)) !important; flex: 0 0 calc(91.666% - (var(--ermeion-gutter) * 0.083)) !important; }
    .col-lg-10 { width: calc(83.333% - (var(--ermeion-gutter) * 0.166)) !important; flex: 0 0 calc(83.333% - (var(--ermeion-gutter) * 0.166)) !important; }
    .col-lg-9  { width: calc(75% - (var(--ermeion-gutter) * 0.25)) !important; flex: 0 0 calc(75% - (var(--ermeion-gutter) * 0.25)) !important; }
    .col-lg-8  { width: calc(66.666% - (var(--ermeion-gutter) * 0.333)) !important; flex: 0 0 calc(66.666% - (var(--ermeion-gutter) * 0.333)) !important; }
    .col-lg-7  { width: calc(58.333% - (var(--ermeion-gutter) * 0.416)) !important; flex: 0 0 calc(58.333% - (var(--ermeion-gutter) * 0.416)) !important; }
    .col-lg-6  { width: calc(50% - (var(--ermeion-gutter) * 0.5)) !important; flex: 0 0 calc(50% - (var(--ermeion-gutter) * 0.5)) !important; }
    .col-lg-5  { width: calc(41.666% - (var(--ermeion-gutter) * 0.583)) !important; flex: 0 0 calc(41.666% - (var(--ermeion-gutter) * 0.583)) !important; }
    .col-lg-4  { width: calc(33.333% - (var(--ermeion-gutter) * 0.666)) !important; flex: 0 0 calc(33.333% - (var(--ermeion-gutter) * 0.666)) !important; }
    .col-lg-3  { width: calc(25% - (var(--ermeion-gutter) * 0.75)) !important; flex: 0 0 calc(25% - (var(--ermeion-gutter) * 0.75)) !important; }
    .col-lg-2  { width: calc(16.666% - (var(--ermeion-gutter) * 0.833)) !important; flex: 0 0 calc(16.666% - (var(--ermeion-gutter) * 0.833)) !important; }
    .col-lg-1  { width: calc(8.333% - (var(--ermeion-gutter) * 0.916)) !important; flex: 0 0 calc(8.333% - (var(--ermeion-gutter) * 0.916)) !important; }
}


/* --- [C] CLEAN RESPONSIVE SPACING UTILITIES (Mobile First) --- */
.m-0  { margin: 0 !important; } .m-1  { margin: 10px !important; } .m-2  { margin: 20px !important; } .m-3  { margin: 40px !important; } .m-4  { margin: 60px !important; }
.mt-0 { margin-top: 0 !important; } .mt-1 { margin-top: 10px !important; } .mt-2 { margin-top: 20px !important; } .mt-3 { margin-top: 40px !important; } .mt-4 { margin-top: 60px !important; }
.mb-0 { margin-bottom: 0 !important; } .mb-1 { margin-bottom: 10px !important; } .mb-2 { margin-bottom: 20px !important; } .mb-3 { margin-bottom: 40px !important; } .mb-4 { margin-bottom: 60px !important; }
.p-0  { padding: 0 !important; } .p-1  { padding: 10px !important; } .p-2  { padding: 20px !important; } .p-3  { padding: 40px !important; } .p-4  { padding: 60px !important; }
.pt-0 { padding-top: 0 !important; } .pt-1 { padding-top: 10px !important; } .pt-2 { padding-top: 20px !important; } .pt-3 { padding-top: 40px !important; } .pt-4 { padding-top: 60px !important; }
.pb-0 { padding-bottom: 0 !important; } .pb-1 { padding-bottom: 10px !important; } .pb-2 { padding-bottom: 20px !important; } .pb-3 { padding-bottom: 40px !important; } .pb-4 { padding-bottom: 60px !important; }
.py-1 { padding-top: 10px !important; padding-bottom: 10px !important; } .py-2 { padding-top: 20px !important; padding-bottom: 20px !important; } .py-3 { padding-top: 40px !important; padding-bottom: 40px !important; } .py-4 { padding-top: 60px !important; padding-bottom: 60px !important; }


/* ==========================================================================
   ΕΡΜΕΙΟΝ RESPONSIVE SPACING ENGINE (Full Margin & Padding Utilities)
   ========================================================================== */

/* --- [1] BASE SPACING (Mobile-First: Από 0px και άνω) --- */
.m-0  { margin: 0 !important; }        .p-0  { padding: 0 !important; }
.m-1  { margin: 10px !important; }     .p-1  { padding: 10px !important; }
.m-2  { margin: 20px !important; }     .p-2  { padding: 20px !important; }
.m-3  { margin: 40px !important; }     .p-3  { padding: 40px !important; }
.m-4  { margin: 60px !important; }     .p-4  { padding: 60px !important; }

/* Margins ανά κατεύθυνση */
.mt-0 { margin-top: 0 !important; }    .mt-1 { margin-top: 10px !important; }   .mt-2 { margin-top: 20px !important; }   .mt-3 { margin-top: 40px !important; }   .mt-4 { margin-top: 60px !important; }
.mb-0 { margin-bottom: 0 !important; } .mb-1 { margin-bottom: 10px !important; }.mb-2 { margin-bottom: 20px !important; }.mb-3 { margin-bottom: 40px !important; }.mb-4 { margin-bottom: 60px !important; }
.ml-0 { margin-left: 0 !important; }   .ml-1 { margin-left: 10px !important; }  .ml-2 { margin-left: 20px !important; }  .ml-3 { margin-left: 40px !important; }  .ml-4 { margin-left: 60px !important; }
.mr-0 { margin-right: 0 !important; }  .mr-1 { margin-right: 10px !important; } .mr-2 { margin-right: 20px !important; } .mr-3 { margin-right: 40px !important; } .mr-4 { margin-right: 60px !important; }

/* Paddings ανά κατεύθυνση */
.pt-0 { padding-top: 0 !important; }    .pt-1 { padding-top: 10px !important; }   .pt-2 { padding-top: 20px !important; }   .pt-3 { padding-top: 40px !important; }   .pt-4 { padding-top: 60px !important; }
.pb-0 { padding-bottom: 0 !important; } .pb-1 { padding-bottom: 10px !important; }.pb-2 { padding-bottom: 20px !important; }.pb-3 { padding-bottom: 40px !important; }.pb-4 { padding-bottom: 60px !important; }
.pl-0 { padding-left: 0 !important; }   .pl-1 { padding-left: 10px !important; }  .pl-2 { padding-left: 20px !important; }  .pl-3 { padding-left: 40px !important; }  .pl-4 { padding-left: 60px !important; }
.pr-0 { padding-right: 0 !important; }  .pr-1 { padding-right: 10px !important; } .pr-2 { padding-right: 20px !important; } .pr-3 { padding-right: 40px !important; } .pr-4 { padding-right: 60px !important; }

/* Άξονες X (Οριζόντια) και Y (Κάθετα) */
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; } .mx-1 { margin-left: 10px !important; margin-right: 10px !important; } .mx-2 { margin-left: 20px !important; margin-right: 20px !important; } .mx-3 { margin-left: 40px !important; margin-right: 40px !important; }
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; } .my-1 { margin-top: 10px !important; margin-bottom: 10px !important; } .my-2 { margin-top: 20px !important; margin-bottom: 20px !important; } .my-3 { margin-top: 40px !important; margin-bottom: 40px !important; } .my-4 { margin-top: 60px !important; margin-bottom: 60px !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; } .px-1 { padding-left: 10px !important; padding-right: 10px !important; } .px-2 { padding-left: 20px !important; padding-right: 20px !important; } .px-3 { padding-left: 40px !important; padding-right: 40px !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; } .py-1 { padding-top: 10px !important; padding-bottom: 10px !important; } .py-2 { padding-top: 20px !important; padding-bottom: 20px !important; } .py-3 { padding-top: 40px !important; padding-bottom: 40px !important; } .py-4 { padding-top: 60px !important; padding-bottom: 60px !important; }


/* --- [2] SM BREAKPOINT (Κινητά, έως 640px) --- */
@media (max-width: 640px) {
    .m-sm-0  { margin: 0 !important; }        .p-sm-0  { padding: 0 !important; }
    .m-sm-1  { margin: 10px !important; }     .p-sm-1  { padding: 10px !important; }
    .m-sm-2  { margin: 20px !important; }     .p-sm-2  { padding: 20px !important; }
    .m-sm-3  { margin: 30px !important; }     .p-sm-3  { padding: 30px !important; }
    .m-sm-4  { margin: 45px !important; }     .p-sm-4  { padding: 45px !important; }

    .mt-sm-0 { margin-top: 0 !important; }    .mt-sm-1 { margin-top: 10px !important; }   .mt-sm-2 { margin-top: 20px !important; }   .mt-sm-3 { margin-top: 30px !important; }   .mt-sm-4 { margin-top: 45px !important; }
    .mb-sm-0 { margin-bottom: 0 !important; } .mb-sm-1 { margin-bottom: 10px !important; }.mb-sm-2 { margin-bottom: 20px !important; }.mb-sm-3 { margin-bottom: 30px !important; }.mb-sm-4 { margin-bottom: 45px !important; }
    .ml-sm-0 { margin-left: 0 !important; }   .ml-sm-1 { margin-left: 10px !important; }  .ml-sm-2 { margin-left: 20px !important; }  .ml-sm-3 { margin-left: 30px !important; }  .ml-sm-4 { margin-left: 45px !important; }
    .mr-sm-0 { margin-right: 0 !important; }  .mr-sm-1 { margin-right: 10px !important; } .mr-sm-2 { margin-right: 20px !important; } .mr-sm-3 { margin-right: 30px !important; } .mr-sm-4 { margin-right: 45px !important; }

    .pt-sm-0 { padding-top: 0 !important; }    .pt-sm-1 { padding-top: 10px !important; }   .pt-sm-2 { padding-top: 20px !important; }   .pt-sm-3 { padding-top: 30px !important; }   .pt-sm-4 { padding-top: 45px !important; }
    .pb-sm-0 { padding-bottom: 0 !important; } .pb-sm-1 { padding-bottom: 10px !important; }.pb-sm-2 { padding-bottom: 20px !important; }.pb-sm-3 { padding-bottom: 30px !important; }.pb-sm-4 { padding-bottom: 45px !important; }
    .pl-sm-0 { padding-left: 0 !important; }   .pl-sm-1 { padding-left: 10px !important; }  .pl-sm-2 { padding-left: 20px !important; }  .pl-sm-3 { padding-left: 30px !important; }  .pl-sm-4 { padding-left: 45px !important; }
    .pr-sm-0 { padding-right: 0 !important; }  .pr-sm-1 { padding-right: 10px !important; } .pr-sm-2 { padding-right: 20px !important; } .pr-sm-3 { padding-right: 30px !important; } .pr-sm-4 { padding-right: 45px !important; }

    .mx-sm-auto { margin-left: auto !important; margin-right: auto !important; }
    .mx-sm-0 { margin-left: 0 !important; margin-right: 0 !important; } .mx-sm-1 { margin-left: 10px !important; margin-right: 10px !important; } .mx-sm-2 { margin-left: 20px !important; margin-right: 20px !important; }
    .my-sm-0 { margin-top: 0 !important; margin-bottom: 0 !important; } .my-sm-1 { margin-top: 10px !important; margin-bottom: 10px !important; } .my-sm-2 { margin-top: 20px !important; margin-bottom: 20px !important; } .my-sm-3 { margin-top: 30px !important; margin-bottom: 30px !important; }
    .px-sm-0 { padding-left: 0 !important; padding-right: 0 !important; } .px-sm-1 { padding-left: 10px !important; padding-right: 10px !important; } .px-sm-2 { padding-left: 20px !important; padding-right: 20px !important; }
    .py-sm-0 { padding-top: 0 !important; padding-bottom: 0 !important; } .py-sm-1 { padding-top: 10px !important; padding-bottom: 10px !important; } .py-sm-2 { padding-top: 20px !important; padding-bottom: 20px !important; } .py-sm-3 { padding-top: 30px !important; padding-bottom: 30px !important; } .py-sm-4 { padding-top: 45px !important; padding-bottom: 45px !important; }
}


/* --- [3] MD BREAKPOINT (Tablets, 641px έως 1024px) --- */
@media (min-width: 641px) and (max-width: 1024px) {
    .m-md-0  { margin: 0 !important; }        .p-md-0  { padding: 0 !important; }
    .m-md-1  { margin: 10px !important; }     .p-md-1  { padding: 10px !important; }
    .m-md-2  { margin: 20px !important; }     .p-md-2  { padding: 20px !important; }
    .m-md-3  { margin: 40px !important; }     .p-md-3  { padding: 40px !important; }
    .m-md-4  { margin: 60px !important; }     .p-md-4  { padding: 60px !important; }

    .mt-md-0 { margin-top: 0 !important; }    .mt-md-1 { margin-top: 10px !important; }   .mt-md-2 { margin-top: 20px !important; }   .mt-md-3 { margin-top: 40px !important; }   .mt-md-4 { margin-top: 60px !important; }
    .mb-md-0 { margin-bottom: 0 !important; } .mb-md-1 { margin-bottom: 10px !important; }.mb-md-2 { margin-bottom: 20px !important; }.mb-md-3 { margin-bottom: 40px !important; }.mb-md-4 { margin-bottom: 60px !important; }
    .ml-md-0 { margin-left: 0 !important; }   .ml-md-1 { margin-left: 10px !important; }  .ml-md-2 { margin-left: 20px !important; }  .ml-md-3 { margin-left: 40px !important; }  .ml-md-4 { margin-left: 60px !important; }
    .mr-md-0 { margin-right: 0 !important; }  .mr-md-1 { margin-right: 10px !important; } .mr-md-2 { margin-right: 20px !important; } .mr-md-3 { margin-right: 40px !important; } .mr-md-4 { margin-right: 60px !important; }

    .pt-md-0 { padding-top: 0 !important; }    .pt-md-1 { padding-top: 10px !important; }   .pt-md-2 { padding-top: 20px !important; }   .pt-md-3 { padding-top: 40px !important; }   .pt-md-4 { padding-top: 60px !important; }
    .pb-md-0 { padding-bottom: 0 !important; } .pb-md-1 { padding-bottom: 10px !important; }.pb-md-2 { padding-bottom: 20px !important; }.pb-md-3 { padding-bottom: 40px !important; }.pb-md-4 { padding-bottom: 60px !important; }
    .pl-md-0 { padding-left: 0 !important; }   .pl-md-1 { padding-left: 10px !important; }  .pl-md-2 { padding-left: 20px !important; }  .pl-md-3 { padding-left: 40px !important; }  .pl-md-4 { padding-left: 60px !important; }
    .pr-md-0 { padding-right: 0 !important; }  .pr-md-1 { padding-right: 10px !important; } .pr-md-2 { padding-right: 20px !important; } .pr-md-3 { padding-right: 40px !important; } .pr-md-4 { padding-right: 60px !important; }

    .mx-md-auto { margin-left: auto !important; margin-right: auto !important; }
    .mx-md-0 { margin-left: 0 !important; margin-right: 0 !important; } .mx-md-1 { margin-left: 10px !important; margin-right: 10px !important; } .mx-md-2 { margin-left: 20px !important; margin-right: 20px !important; }
    .my-md-0 { margin-top: 0 !important; margin-bottom: 0 !important; } .my-md-1 { margin-top: 10px !important; margin-bottom: 10px !important; } .my-md-2 { margin-top: 20px !important; margin-bottom: 20px !important; } .my-md-3 { margin-top: 40px !important; margin-bottom: 40px !important; }
    .px-md-0 { padding-left: 0 !important; padding-right: 0 !important; } .px-md-1 { padding-left: 10px !important; padding-right: 10px !important; } .px-md-2 { padding-left: 20px !important; padding-right: 20px !important; }
    .py-md-0 { padding-top: 0 !important; padding-bottom: 0 !important; } .py-md-1 { padding-top: 10px !important; padding-bottom: 10px !important; } .py-md-2 { padding-top: 20px !important; padding-bottom: 20px !important; } .py-md-3 { padding-top: 40px !important; padding-bottom: 40px !important; } .py-md-4 { padding-top: 60px !important; padding-bottom: 60px !important; }
}


/* --- [4] LG BREAKPOINT (Desktops/Laptops, 1025px και άνω) --- */
@media (min-width: 1025px) {
    .m-lg-0  { margin: 0 !important; }        .p-lg-0  { padding: 0 !important; }
    .m-lg-1  { margin: 10px !important; }     .p-lg-1  { padding: 10px !important; }
    .m-lg-2  { margin: 20px !important; }     .p-lg-2  { padding: 20px !important; }
    .m-lg-3  { margin: 40px !important; }     .p-lg-3  { padding: 40px !important; }
    .m-lg-4  { margin: 80px !important; }     .p-lg-4  { padding: 80px !important; }

    .mt-lg-0 { margin-top: 0 !important; }    .mt-lg-1 { margin-top: 10px !important; }   .mt-lg-2 { margin-top: 20px !important; }   .mt-lg-3 { margin-top: 40px !important; }   .mt-lg-4 { margin-top: 80px !important; }
    .mb-lg-0 { margin-bottom: 0 !important; } .mb-lg-1 { margin-bottom: 10px !important; }.mb-lg-2 { margin-bottom: 20px !important; }.mb-lg-3 { margin-bottom: 40px !important; }.mb-lg-4 { margin-bottom: 80px !important; }
    .ml-lg-0 { margin-left: 0 !important; }   .ml-lg-1 { margin-left: 10px !important; }  .ml-lg-2 { margin-left: 20px !important; }  .ml-lg-3 { margin-left: 40px !important; }  .ml-lg-4 { margin-left: 80px !important; }
    .mr-lg-0 { margin-right: 0 !important; }  .mr-lg-1 { margin-right: 10px !important; } .mr-lg-2 { margin-right: 20px !important; } .mr-lg-3 { margin-right: 40px !important; } .mr-lg-4 { margin-right: 80px !important; }

    .pt-lg-0 { padding-top: 0 !important; }    .pt-lg-1 { padding-top: 10px !important; }   .pt-lg-2 { padding-top: 20px !important; }   .pt-lg-3 { padding-top: 40px !important; }   .pt-lg-4 { padding-top: 80px !important; }
    .pb-lg-0 { padding-bottom: 0 !important; } .pb-lg-1 { padding-bottom: 10px !important; }.pb-lg-2 { padding-bottom: 20px !important; }.pb-lg-3 { padding-bottom: 40px !important; }.pb-lg-4 { padding-bottom: 80px !important; }
    .pl-lg-0 { padding-left: 0 !important; }   .pl-lg-1 { padding-left: 10px !important; }  .pl-lg-2 { padding-left: 20px !important; }  .pl-lg-3 { padding-left: 40px !important; }  .pl-lg-4 { padding-left: 80px !important; }
    .pr-lg-0 { padding-right: 0 !important; }  .pr-lg-1 { padding-right: 10px !important; } .pr-lg-2 { padding-right: 20px !important; } .pr-lg-3 { padding-right: 40px !important; } .pr-lg-4 { padding-right: 80px !important; }

    .mx-lg-auto { margin-left: auto !important; margin-right: auto !important; }
    .mx-lg-0 { margin-left: 0 !important; margin-right: 0 !important; } .mx-lg-1 { margin-left: 10px !important; margin-right: 10px !important; } .mx-lg-2 { margin-left: 20px !important; margin-right: 20px !important; }
    .my-lg-0 { margin-top: 0 !important; margin-bottom: 0 !important; } .my-lg-1 { margin-top: 10px !important; margin-bottom: 10px !important; } .my-lg-2 { margin-top: 20px !important; margin-bottom: 20px !important; } .my-lg-3 { margin-top: 40px !important; margin-bottom: 40px !important; }
    .px-lg-0 { padding-left: 0 !important; padding-right: 0 !important; } .px-lg-1 { padding-left: 10px !important; padding-right: 10px !important; } .px-lg-2 { padding-left: 20px !important; padding-right: 20px !important; }
    .py-lg-0 { padding-top: 0 !important; padding-bottom: 0 !important; } .py-lg-1 { padding-top: 10px !important; padding-bottom: 10px !important; } .py-lg-2 { padding-top: 20px !important; padding-bottom: 20px !important; } .py-lg-3 { padding-top: 40px !important; padding-bottom: 40px !important; } .py-lg-4 { padding-top: 80px !important; padding-bottom: 80px !important; }
}

/* MOBILE MENU (Hamburger) */
/* --- Hamburger Button Styles --- */
.mobile-menu-toggle {
    display: none; /* Κρυφό σε desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 15px auto;
    z-index: 1000;
}

.mobile-menu-toggle:focus {
    outline: none;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: rgb(101, 81, 70);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animation όταν ανοίγει το μενού (γίνεται X) - ΔΙΟΡΘΩΘΗΚΕ */
.mobile-menu-toggle.is-open .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle.is-open .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.is-open .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Mobile Navigation Overrides (Έως 900px) --- */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex; /* Εμφανίζεται μόνο στα κινητά */
    }

    .main-navigation {
        display: none; /* Κρυφό αρχικά */
        width: 100%;
        background-color: rgb(251, 246, 240);
        padding: 10px 0 20px 0;
        box-shadow: 0 10px 20px rgba(101, 81, 70, 0.05);
    }

    /* Όταν ενεργοποιείται από το JS */
    .main-navigation.is-open {
        display: block;
    }

    .preview-links-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .preview-links-wrapper > li {
        width: 100%;
        border-bottom: 1px solid rgba(101, 81, 70, 0.05);
    }

    .preview-links-wrapper a,
    .preview-links-wrapper .submenu-title {
        padding: 12px 20px;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

/* Dropdown Submenu στα κινητά - Αρχικά Κρυφό (ΧΩΡΙΣ !important εδώ) */
    .submenu {
        display: none;
        position: static;
        transform: none;
        width: 100%;
        background-color: rgba(101, 81, 70, 0.03);
        box-shadow: none;
        padding-left: 15px;
        border: none;
        border-top: 1px solid rgba(101, 81, 70, 0.05);
    }

    /* ΚΛΕΙΔΙ: Τώρα το !important εδώ θα "νικήσει" πανεύκολα το display: none */
    .preview-links-wrapper li.has-submenu.is-active .submenu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
    }

    /* Περιστροφή του βέλους στο ανοιχτό submenu */
    .has-submenu.is-active .arrow {
        transform: rotate(180deg);
    }

    .submenu li a {
        padding: 10px 20px;
        border-bottom: 1px solid rgba(101, 81, 70, 0.02);
    }

    /* ΔΙΟΡΘΩΘΗΚΕ */
    .submenu li a:hover {
        box-shadow: none;
        background-color: rgba(78, 132, 154, 0.05);
    }
}
/* // MOBILE MENU (Hamburger) */


@media (min-width: 1300px) {
    .pl-180 { margin-left: 180px; }
}


/* --- 5. GLOBAL HELPER CLASSES --- */
.page-main-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 34px;
    font-weight: bold;
    color: rgb(101, 81, 70);
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(101, 81, 70, 0.1);
    padding-bottom: 15px;
}

.text-justify { text-align: justify; }
.text-center  { text-align: center; }

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(101, 81, 70, 0.04);
}


/* --- Navigation / Μενού (Fine-Tuned) --- */
.main-navigation {
    width: 100%;
    padding: 30px 0;
    text-align: center;
}
.preview-links-wrapper {
    margin: 0; padding: 0;
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
.preview-links-wrapper > li { position: relative; }
.preview-links-wrapper a, .preview-links-wrapper .submenu-title {
    display: block;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 18px;
    color: rgb(101, 81, 70);
    cursor: pointer;
    user-select: none;
}
.preview-links-wrapper a:hover, .preview-links-wrapper .submenu-title:hover {
    color: rgb(78, 132, 154);
}

/* Το βελάκι δεξιά */
.arrow {
    font-size: 11px;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.2s ease;
}
/* Περιστροφή βελαιού όταν είναι ανοιχτό */
.has-submenu.is-active .arrow {
    transform: rotate(180deg);
}

/* --- Dropdown Submenu (Click Controlled) --- */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(251, 246, 240);
    border: 1px solid rgba(101, 81, 70, 0.15);
    min-width: 240px;
    z-index: 999;
    padding: 0px;
    text-align: left;
    list-style: none;
}

/* Εμφάνιση μέσω JS Class */
.has-submenu.is-active .submenu {
    display: block;
}

.submenu li a {
    padding: 5px 10px;
    font-size: 18px;
    font-weight: bolder;
    transition: all 0.2s ease;
}

/* Το ακριβές εφέ από το screenshot στο hover των εσωτερικών links */
.submenu li a:hover {
    background-color: rgb(251, 246, 240);
    color: rgb(78, 132, 154);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}
@media (max-width: 768px) {
    .preview-links-wrapper { flex-direction: column; width: 100%; }
    .submenu { position: static; transform: none; width: 100%; background-color: rgba(101, 81, 70, 0.03); box-shadow: none; padding-left: 20px; }
}

/* --- Branding / Λογότυπο --- */
.site-branding {
    text-align: center;
    padding: 25px 0 15px 0;
}

.site-logo-img {
    max-width: 340px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: opacity 0.3s ease;
    width: 100%;
}

.site-logo-img:hover {
    opacity: 0.9;
}

.site-slogan {
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.15em;
    margin: 12px 0 0 0;
    color: rgb(101, 81, 70);
    text-align: center;
}


/* --- Hero Split Section (Full Width) --- */
.hero-split-section {
    display: flex;
    width: 100%;
    min-height: 500px;
    background-color: rgb(251, 246, 240);
}

/* Οι δύο στήλες (50% - 50%) */
.hero-column {
    flex: 1;
    width: 50%;
}

/* Αριστερή στήλη με την εικόνα */
.image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Δεξιά στήλη με το κείμενο */
.text-column {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-text-content {
    max-width: 550px;
}
.page-biografiko li {
    font-size: 20px;
    margin-bottom: 20px;
}
li.hero-text-content {
    margin-bottom: 0px;
}
.welcome-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    color: rgb(101, 81, 70);
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.2em;
}

/* Κουμπί προτροπής (Call to Action) */
.cta-link-button {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
    color: rgb(78, 132, 154);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta-link-button:hover {
    color: rgb(101, 81, 70);
    border-bottom: 2px solid rgb(101, 81, 70);
}
.hero-text-content p {
    font-size: 20px;
    line-height: normal;
}
/* --- Responsive για Κινητά και Tablets --- */
@media (max-width: 900px) {
    .hero-split-section {
        flex-direction: column;
    }
    .hero-column {
        width: 100%;
    }
    .text-column {
        padding: 40px 20px;
    }
    .welcome-title {
        font-size: 1.8rem;
    }
}


/* --- 2η Ενότητα: 4 Blocks Grid --- */
.blocks-grid-section {
    width: 100%;
    background-color: rgb(251, 246, 240);
    padding: 60px 0;
    border-top: 1px solid rgba(101, 81, 70, 0.08);
}

/* Ευθυγράμμιση με το μέγιστο πλάτος του site */
.blocks-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.blocks-container a.btn {
    display: block;
    border: 1px solid gray;
    position: relative;
    width: fit-content;
    padding: 2px 15px 2px 15px;
    margin-bottom: 0px;
    margin-top: auto;
    margin-left: 0;
}
/* To στυλ του κάθε Block */
.grid-block-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0px 40px 0px 40px;
}

/* Φάκελος Εικόνας */
.block-image-wrapper {
    width: 100%;
}

.block-img {
    width: 80px;
    height: 80px;
    display: block;
}

.block-content-wrapper {
    padding: 10px 0;
}

/* Τίτλος Μαθήματος */
.block-item-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 19px;
    font-weight: bold;
    color: rgb(101, 81, 70);
    margin: 0 0 12px 0;
    line-height: 1.3em;
    min-height: 50px;
    text-align: left;
}

/* Περιγραφή */
.block-item-desc {
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    color: rgb(101, 81, 70);
    line-height: 1.5em;
    margin: 0;
    text-align: justify;
}

/* --- Responsive Σπάσιμο για Tablets & Κινητά --- */
@media (max-width: 950px) {
    .blocks-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .blocks-container {
        grid-template-columns: 1fr;
    }
}
.welcome-main {
    width: fit-content; margin: auto; margin-bottom: 40px;
}

/* --- 3η Ενότητα: Testimonials Slider --- */
img.testimonial-image {
    width: 100px;
    margin: auto;
    display: block;
}
.testimonials-section-full {
    width: 100%;
    background-color: rgb(236, 236, 236);
    padding: 80px 0;
    border-top: 1px solid rgba(101, 81, 70, 0.08);
    box-sizing: border-box;
    position: relative;
}
.btn {
    display: block;
    border: 1px solid gray;
    position: relative;
    width: fit-content;
    margin: auto;
    padding: 2px 15px 2px 15px;
}
.testimonials-section-full .section-subtitle-centered {
    font-family: 'Times New Roman', Times, serif;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: rgb(78, 132, 154);
}

/* Outer wrapper που κρατάει τα βέλη και το slider */
.slider-outer-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Οριζόντιο Full Width Slider */
.testimonials-slider-row {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-slider-row::-webkit-scrollbar {
    display: none;
}

/* Το κάθε slide πιάνει όλο το πλάτος της οθόνης */
.testimonial-slide-item {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 80px;
}

/* Περιορισμός του κειμένου εσωτερικά στο slide */
.slide-inner-content {
    max-width: 750px;
    width: 100%;
    text-align: center;
}

.testimonial-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 22px;
    font-style: italic;
    color: rgb(101, 81, 70);
    line-height: 1.6em;
    margin: 0 0 20px 0;
}

.testimonial-author {
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    color: rgba(101, 81, 70, 0.8);
    padding-bottom: 20px;
    display: block;
}

/* --- Navigation Arrows --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgb(101, 81, 70);
    font-size: 28px;
    cursor: pointer;
    padding: 15px;
    z-index: 10;
    transition: color 0.3s ease, transform 0.2s ease;
    user-select: none;
}

.slider-arrow:hover {
    color: rgb(78, 132, 154);
}

.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }

.slider-arrow:active {
    transform: translateY(-50%) scale(0.9);
}

/* --- Slider Dots --- */
.slider-dots-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.slider-dots-row .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(101, 81, 70, 0.25);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dots-row .dot.active {
    background-color: rgb(78, 132, 154);
}

@media (max-width: 600px) {
    .testimonial-slide-item { padding: 0 45px; }
    .slider-arrow { font-size: 22px; padding: 5px; }
    .prev-arrow { left: 5px; }
    .next-arrow { right: 5px; }
    .testimonial-text { font-size: 17px; }
}

.text-normal { font-style: normal!important; font-weight: normal!important; }
.text-right  { text-align: right; }
.text-center { text-align: center; }
.text-left   { text-align: left; }

.content-block {
    max-width: 800px;
    margin: 0 auto;
    padding: 0px 20px;
}
.content-block p {
    font-size: 20px;
    line-height: 25px;
    color: rgb(101, 81, 70);
    letter-spacing: -0.5px;
}


/* --- 4η Ενότητα: Centered Pre-Footer Block --- */
.pre-footer-text-section {
    width: 100%;
    background-color: rgb(255 255 255);
    padding: 90px 0;
    border-top: 1px solid rgba(101, 81, 70, 0.08);
    box-sizing: border-box;
}

.centered-content-block {
    max-width: 800px;
    margin: 0 auto;
    padding: 0px 20px;
}
.centered-content-block p {
    font-size: 22px;
    line-height: 25px;
    letter-spacing: 0.05em;
    color: rgb(101, 81, 70);
}

.pre-footer-heading {
    font-family: 'Times New Roman', Times, serif;
    font-size: 26px;
    font-weight: bold;
    color: rgb(101, 81, 70);
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.pre-footer-paragraph {
    font-family: 'Times New Roman', Times, serif;
    font-size: 19px;
    color: rgb(101, 81, 70);
    line-height: 1.6em;
    margin: 0 0 30px 0;
    text-align: center;
}

.author {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: right;
}

@media (max-width: 600px) {
    .pre-footer-text-section { padding: 60px 0; }
    .pre-footer-heading { font-size: 22px; }
    .pre-footer-paragraph { font-size: 17px; }
}


/* --- Καθολικό Footer --- */
.site-footer {
    width: 100%;
    background-color: rgb(236, 236, 236);
    padding: 60px 0 40px 0;
    border-top: 1px solid rgba(101, 81, 70, 0.12);
    box-sizing: border-box;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-branding { margin-bottom: 25px; }
.footer-logo-img { height: auto; display: block; margin: 0 auto; opacity: 0.85; width: 100%; }
.footer-contact-info { margin-bottom: 35px; }

.footer-info-item {
    font-family: 'Times New Roman', Times, serif;
    font-size: 17px;
    color: rgb(126, 126, 126);
    margin: 6px 0;
    text-align: center;
    line-height: 120%;
}

.footer-contact-info a {
    color: rgb(126, 126, 126);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.footer-contact-info a:hover {
    color: rgb(78, 132, 154);
    border-bottom: 1px dashed rgb(78, 132, 154);
}

.footer-credits {
    border-top: 1px solid rgba(101, 81, 70, 0.06);
    padding-top: 20px;
}

.footer-credits p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    color: rgba(101, 81, 70, 0.6);
    text-align: center;
    margin: 0;
}

@media (max-width: 600px) {
    .site-footer { padding: 40px 0 20px 0; }
    .footer-info-item { font-size: 16px; }
}

.text-uppercase { text-transform: uppercase; }
.font-40 { font-size: 40px; }

.flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-align-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Background Texture Layer Utilities */
.texture {
    position: relative;
    z-index: 1;
}

.texture::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/images/texture.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    z-index: -1;
    pointer-events: none;
}


/* ==========================================================================
   GALLERY & LIGHTBOX ENGINE
   ========================================================================== */

.gallery-thumb-wrapper {
    width: 100%;
    aspect-ratio: 14 / 21;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(101, 81, 70, 0.05);
    transition: transform 0.3s ease;
}

.gallery-thumb-wrapper:hover {
    transform: translateY(-3px);
}

.lightbox-trigger {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.gallery-thumb-wrapper:hover .lightbox-trigger {
    filter: brightness(0.9);
}

/* Responsive Gallery Overrides (Διορθωμένα Breakpoints για να μην σπάνε στα 901px) */
@media (min-width: 641px) and (max-width: 1024px) {
    .gallery-section .row {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }
    .gallery-section .col-3,
    .gallery-section .col-4 {
        width: calc(33.333% - 13.33px) !important;
        flex: 0 0 calc(33.333% - 13.33px) !important;
    }
}

@media (max-width: 640px) {
    .gallery-section .row {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
    }
    .gallery-section .col-3,
    .gallery-section .col-4 {
        width: calc(50% - 7.5px) !important;
        flex: 0 0 calc(50% - 7.5px) !important;
    }
}

/* Lightbox Modal Structure */
/* Lightbox Modal Structure */
.ermeion-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999 !important; /* Πάνω από όλα, ακόμα και από το mobile μενού */
    left: 0; top: 0;
    width: 100vw; height: 100vh; /* Κατάληψη όλης της οθόνης */
    overflow: hidden !important;
    background-color: rgba(251, 246, 240, 0.96);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

/* ΔΙΟΡΘΩΘΗΚΕ: Εξασφάλιση διαστάσεων για την εικόνα */
.lightbox-modal-content {
    width: auto !important;
    height: auto !important;
    max-width: 90vw !important;
    max-height: 85vh !important;
    object-fit: contain;
    box-shadow: 0 15px 50px rgba(101, 81, 70, 0.15);
    animation: lightboxZoom 0.25s ease-out;
    cursor: zoom-in;
    transition: transform 0.25s ease-out;
    display: block; /* Αποφυγή inline περίεργων κενών */
}

.lightbox-modal-content.is-zoomed {
    transform: scale(1.4);
    cursor: zoom-out;
}

.lightbox-close-btn {
    position: absolute;
    top: 20px; right: 30px;
    color: rgb(101, 81, 70);
    font-size: 60px; font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
    z-index: 100000; /* Πάνω από την εικόνα */
}

.lightbox-close-btn:hover { color: rgb(78, 132, 154); }

@keyframes lightboxZoom {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .lightbox-close-btn { top: 15px; right: 20px; font-size: 40px; }
}
.text-light {
     color: #ffffff;
    }
.bg-white {
  background-color: #ffffff;
}



.hero-mini-section  {
display: flex;
align-items: flex-start;
justify-content: center;
background-position: top;
background-size: cover;
flex-direction: column;
}

.news .hero-mini-section  {
height: 750px;
background:linear-gradient(rgb(101 81 70 / 0%), rgb(0 0 0 / 40%)), url('assets/images/hermes-flying.webp') center center / cover no-repeat;
}
.activities .hero-mini-section  {
height: 550px;
background:linear-gradient(rgb(101 81 70 / 0%), rgb(0 0 0 / 40%)), url('assets/images/tavrokathapsia.webp') center center / cover no-repeat;
align-items: center;
}
.ancient-greek .hero-mini-section  {
height: 350px;
background:linear-gradient(rgb(101 81 70 / 0%), rgb(0 0 0 / 40%)), url('assets/images/mathima-arxaia-hero.webp') center center / cover no-repeat;
align-items: center;
}
.mythologia .hero-mini-section  {
height: 550px;
background:linear-gradient(rgb(101 81 70 / 0%), rgb(0 0 0 / 40%)), url('assets/images/page-mythologia-hero.webp') center center / cover no-repeat;
align-items: center;
}
.poetry .hero-mini-section  {
height: 450px;
background:linear-gradient(rgb(101 81 70 / 0%), rgb(0 0 0 / 40%)), url('assets/images/page-neoelliniki-poisi-hero.webp') center center / cover no-repeat;
align-items: center;
}
.omiriκa-epi .hero-mini-section  {
height: 450px;
background:linear-gradient(rgb(101 81 70 / 0%), rgb(0 0 0 / 40%)), url('assets/images/page-omirika-epi-hero.webp') center center / cover no-repeat;
align-items: center;
}

.history .hero-mini-section  {
height: 550px;
background:linear-gradient(rgb(101 81 70 / 0%), rgb(0 0 0 / 40%)), url('assets/images/page-istoria-hero.webp') center center / cover no-repeat;
align-items: center;
}

.iliko-bg {
background-image: url('assets/images/texture.webp');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-height: 294px;
}

.clouds.hero-mini-section {
height: 650px;
background:url('assets/images/texture-clouds.webp') center center / cover no-repeat;
align-items: center;
}
.giati-ermeion .hero-mini-section {
height: 350px;
background:linear-gradient(rgba(101, 81, 70, 0.4)), url('assets/images/giati-ermeion-hero.webp') center center / cover no-repeat;
align-items: center;
}

.title-hero {
color: #ffffff;
margin: 0;
font-size: 3rem;
font-weight: bold;
text-shadow: 0 2px 8px rgba(101, 81, 70, 0.4);
line-height: normal;
}

/* ==========================================================================
   SCROLL ANIMATION ENGINE (Fade Left to Right)
   ========================================================================== */

/* Η αρχική κατάσταση του section (κρυφό και μετατοπισμένο αριστερά) */
.fade-left-init {
    opacity: 0;
    transform: translateX(-40px); /* Ελαφρύ σπρώξιμο 40px αριστερά */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform; /* Βοηθάει τον browser να κάνει hardware-accelerated render */
}

/* Η τελική κατάσταση όταν μπαίνει στο viewport */
.fade-left-active {
    opacity: 1;
    transform: translateX(0);
}

/* Προαιρετικό: Αν ο χρήστης έχει απενεργοποιήσει τις κινήσεις στο λειτουργικό του,
   σεβόμαστε την επιλογή του και εμφανίζουμε το section ακαριαία */
@media (prefers-reduced-motion: reduce) {
    .fade-left-init {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}