@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --navy:#1B365D;
    --blue:#2E5B9A;
    --blue-light:#4A7BB0;
    --blue-soft:#C8DDF6;
    --green-dark:#2D6A4F;
    --green:#52B788;
    --green-light:#e5f5ec;
    --green-soft:#E5F5EC;
    --orange-dark:#E65C00;
    --orange:#FF9F1C;
    --orange-soft:#FFF1DE;
    --yellow:#FFD166;
    --yellow-soft:#FFF6DE;
    --purple:#8C6BC8;
    --purple-dark:#5E3F92;
    --purple-soft:#F0EAF9;
    --ink:#1F2A38;
    --ink-soft:#5B6B7A;
    --bg:#FBFCFE;
    --radius:16px;
    --shadow:0 12px 28px rgba(27,54,93,.10);
    --white: #FCFCFC;
}

body {
    max-width: 1920px;
    height: 100%;
    margin: 0px auto;
    padding: 0px;
    font-family: 'Inter',sans-serif;
    font-size: 16px;
}
.innerBlock {
    max-width: 1440px;
    margin: 0 auto;
    border-bottom: 0;
    padding: 0 40px;
}
.innerBlockBlog {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Base Typography */
h1 {
    font-size: clamp(1.8em, 4vw, 2.5em);
}
h2 {
    font-size: clamp(1.5em, 3.5vw, 2em);
}
h3 {
    font-size: clamp(1.2em, 3vw, 1.5em);
}
h4{
    font-size: clamp(1em, 2.5vw, 1.2em);
}

.pretitle {
    font-weight: 900;
    font-size: .9em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 20px;
}
/* Base Typography */

a {
    color: var(--navy);
    transition: all .3s ease;
    text-decoration: none;
}
a:hover {
    color: var(--blue-light);
}

/* Buttons */
.buttonTransparent {
    display: inline-block;
    padding: 15px 25px;
    background-color: transparent;
    border-radius: 30px;
    border: 3px solid var(--navy);
    transition: all .3s ease;
    font-weight: 900;
}
.buttonTransparent:hover {
    background-color: var(--navy);
    color: var(--white);
}
.buttonOrange {
    display: inline-block;
    padding: 15px 25px;
    background-color: var(--orange);
    color: var(--white);
    border-radius: 30px;
    font-weight: 900;
    transition: all .3s ease;
}
.buttonOrange:hover {
    color: var(--white);
    background-color: var(--orange-dark);
}
/* /Buttons */


/* Social Icons */
.socialIcons {

}
.socialIcons i {

}
.socialIcons a {

}
.socialIcons a:hover {

}
/* /Social Icons */


/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: var(--white);
    border-bottom: 1px solid var(--orange-soft);
    position: sticky;
    top: 0;
    z-index: 2;
}
.headerCont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {

}
.logo img {
    max-width: 350px;
}
/* /Logo */


/* Main Menu */
.mainMenu {
    width: 100%;
    padding: 0 40px;
}
.mainMenu ul {
    gap: 10px;
    list-style: none;
    justify-content: flex-end;
}
.mainMenu ul li a {
    padding: 10px;
    font-weight: 600;
    font-size: .92em;
}
/* /Main Menu */

/* Menu Toggle (hamburger) */
.menuToggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 34px;
    height: 34px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.menuToggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.menuToggle.active span:nth-child(1) {
    width: 100%;
    transform: translateY(8px) rotate(45deg);
}
.menuToggle.active span:nth-child(2) {
    opacity: 0;
}
.menuToggle.active span:nth-child(3) {
    width: 100%;
    transform: translateY(-8px) rotate(-45deg);
}
/* /Menu Toggle */

/* Menu Close (inside mobile panel) */
.menuClose {
    display: none;
}
/* /Menu Close */

/* Social Icons */
.socialBlock ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0px;
    margin: 0;
    gap: 10px;
}
.socialBlock ul li a, .footerBlock .socialBlock ul li a {
    font-size: 1.5em;
    background-color: var(--orange-soft);
    padding: 10px;
    border-radius: 25%;
    color: var(--blue);    
}
.socialBlock ul li a:hover {
    color: var(--blue-light);
}
.footerBlock .socialBlock ul {
    align-items: unset;
}
/* /Social Icons */

@media (max-width: 800px) {
    .header {
        padding: 10px 24px;
    }
    .logo img {
        max-width: 250px;
    }
    .menuToggle {
        display: flex;
    }
    .mainMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 100px 30px;
        transition: right .3s ease;
        z-index: 10;
    }
    .mainMenu.active {
        right: 0;
    }
    .menuClose {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 34px;
        height: 34px;
        background: none;
        border: none;
        font-size: 2rem;
        line-height: 1;
        color: var(--navy);
        cursor: pointer;
    }
    .mainMenu ul {
        flex-direction: column;
        gap: 4px;
    }
    .mainMenu ul li a {
        display: block;
        padding: 12px 4px;
        font-size: 1rem;
    }
    .social {
        display: none;
    }
}
@media (max-width: 480px) {
    .header {
        padding: 10px 16px;
    }
    .logo img {
        max-width: 250px;
    }
    .social {
        display: none;
    }
}
/* /Header */


/* Hero */
.heroCont {
    display: flex;
    align-items: center;
    background-image: url(../images/heroBg.jpg);
    background-size: cover;
    background-position: center;
    min-height: 91vh;
    position: relative;
}
.overlay {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
}
.heroCont img {
    width: 100%;
}
.heroTextCont {
    width: 100%;
    z-index: 1;
}
.heroText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 900px;
    padding: 60px;
    background-color: rgba(255,255,255,.9);
    border-radius: 30px;
}
.heroTextCont h1 {
    color: var(--navy);
    font-weight: 600;
    max-width: 600px;
    margin-bottom: 20px;
}
.heroTextCont p {
    color: var(--navy);
    font-size: 1.1em;
    max-width: 800px;
    margin-bottom: 30px;
}
.buttonBlock {
    display: flex;
    gap: 20px;
}
@media (max-width: 800px) {
    .heroText {
        padding: 40px;
    }
    .buttonBlock {
        align-self: center;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .heroText {
        padding: 28px;
    }
    .buttonBlock {
        flex-direction: column;
    }
    .buttonTransparent {
        text-align: center;
    }
}
/* /Hero */


/* Top Positions */
/* Top 1 About */
.aboutCont {
    display: flex;
    align-items: center;
    background-color: var(--green-light);
    padding: 50px 20px;
}
.aboutBlocks {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.aboutTextBlock, .aboutImgBlock {
    flex: 1 48%;
}
.aboutImgBlock {
    padding: 40px 0;
    text-align: center;
}
.aboutImgBlock img {
    width: 60%;
    object-fit: cover;
    border-radius: 50%;
}
.statsBlocks {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 60%;
    margin: 30px 0 50px;
}
.statsBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.statsNum {
    font-size: 2em;
    color: var(--orange);
    text-align: center;
    font-weight: 900;
}
.statsText {
    font-size: .8em;
    text-align: center;
}
@media (min-width: 1280px) {
    .aboutImgBlock {
        padding: 60px 0;
    }
}
@media (max-width: 800px) {
    .aboutTextBlock, .aboutImgBlock {
        flex: 1 100%;
    }
    .aboutImgBlock {
        padding: 20px 0;
        text-align: center;
    }
    .aboutImgBlock img {
        width: 60%;
    }
    .statsBlocks {
        width: 100%;
        flex-wrap: wrap;
    }
    .aboutTextBlock .buttonOrange {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .aboutImgBlock img {
        width: 100%;
    }
    .statsBlocks {
        flex-direction: column;
        gap: 10px;
    }
}
/* /Top 1 About */

/* Top 2 Blog */
.blog.k2ItemsBlock {
    padding-top: 70px;
    padding-bottom: 70px;
}
.blog.k2ItemsBlock h2 {
    padding: 0 0 20px;
}
.blog.k2ItemsBlock ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog.k2ItemsBlock li {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.blog.k2ItemsBlock .moduleItemImage {
    display: block;
    overflow: hidden;
}
.blog.k2ItemsBlock .moduleItemImage img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.blog.k2ItemsBlock .moduleItemCategory {
    align-self: flex-start;
    margin: 16px 22px 10px;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .7rem;
    background: var(--orange-soft);
    color: var(--orange-dark);
}
/* Category colors - one fixed color per K2 category (slug-based), not per card position */
.blog.k2ItemsBlock .moduleItemCategory.cat-anakoinoseis {
    background: var(--orange-soft);
    color: var(--orange-dark);
}
.blog.k2ItemsBlock .moduleItemCategory.cat-draseis {
    background: var(--green-soft);
    color: var(--green-dark);
}
.blog.k2ItemsBlock .moduleItemCategory.cat-nea {
    background: var(--blue-soft);
    color: var(--blue);
}
.blog.k2ItemsBlock .moduleItemTitle {
    margin: 0 22px 8px;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
}
.blog.k2ItemsBlock .moduleItemTitle:hover {
    color: var(--blue);
}
.blog.k2ItemsBlock .moduleItemIntrotext {
    margin: 0 22px 14px;
    color: var(--ink-soft);
    font-size: .88rem;
    line-height: 1.6;
}
.blog.k2ItemsBlock .moduleItemDateCreated {
    margin: 0 22px 14px;
    color: var(--ink-soft);
    font-size: .78rem;
    font-weight: 600;
}
.blog.k2ItemsBlock .buttonTransparent {
    align-self: flex-start;
    margin: auto 22px 22px;
    padding: 8px 0;
    border: none;
    border-radius: 0;
    font-weight: 700;
    font-size: .85rem;
    color: var(--blue);
}
.blog.k2ItemsBlock .buttonTransparent:hover {
    background: transparent;
    color: var(--orange-dark);
}
.blog.k2ItemsBlock .buttonTransparent i {
    margin-left: 4px;
    transition: all .3s ease;
}
.blog.k2ItemsBlock .buttonTransparent:hover i {
    margin-left: 8px;
}
.blog.k2ItemsBlock .moduleCustomLink {
    display: inline-block;
    margin-top: 40px;
    padding: 13px 26px;
    border: 2px solid var(--navy);
    border-radius: 999px;
    color: var(--navy);
    font-weight: 700;
}
.blog.k2ItemsBlock .moduleCustomLink:hover {
    background: var(--navy);
    color: var(--white);
}
.moduleCustomLinkBlock {
    text-align: center;
}
@media (max-width: 800px) {
    .blog.k2ItemsBlock ul {
        grid-template-columns: 1fr;
    }
}
/* /Top 2 Blog */


/* Top 3 Γίνε Εθελοντής */
.volCont {
    display: flex;
    align-items: center;
    background-color: var(--blue-soft);
    padding: 50px 20px;
}
/* /Top 3 Γίνε Εθελοντής */

/* /Top Positions */


/* Main Content */
.mainLayout {
    display: flex;
    align-items: flex-start;
    /*gap: 32px;*/
    padding: 30px 20px;
}
/* Used together with .itemViewFull ("misc" item layout) — no horizontal padding, controlled inside the article content instead */
.mainLayoutFull {
    padding: 0;
}
.contentArea {
    flex: 1;
    min-width: 0;
    background: #fff;
    width: 100%;
}
@media (max-width: 800px) {
    .mainLayout {
        flex-direction: column;
    }
}

.itemView {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Used by the "misc" item layout — no width cap at all, article content controls its own width per-section */
.itemViewFull {
    width: 100%;
}
.itemHeaderTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--blue-light);
}
.itemDateCreated {
    font-size: .8em;
}
.itemCategory {
  padding: 5px 0;
}
.itemCategory a {
    padding: 5px 10px;
    background-color: var(--orange-soft);
    font-size: .7em;
    color: var(--orange-dark);
    border-radius: 12px;
}
/* Category colors - same slug-based mapping as the mod_k2_content module */
.itemCategory a.cat-anakoinoseis {
    background-color: var(--orange-soft);
    color: var(--orange-dark);
}
.itemCategory a.cat-draseis {
    background-color: var(--green-soft);
    color: var(--green-dark);
}
.itemCategory a.cat-nea {
    background-color: var(--blue-soft);
    color: var(--blue);
}
.itemTitle {
    margin-bottom: 20px;
}
.itemImageBlock img {
    width: 100%!important;
    border-radius: 10px;
    margin-bottom: 10px;
}
.itemImageGallery {
    padding: 50px 0;
}

/* Category listing (com_k2 category_item.php) — leading/primary/secondary
   groups from category.php, each item wrapped in .itemContainer with an
   inline width:X% set by the K2 category params (columns). We only add
   display:flex/wrap so those percentages actually sit side by side. */
.itemList,
#itemListLeading,
#itemListPrimary,
#itemListSecondary {
    display: flex;
    flex-wrap: wrap;
}
.itemContainer {
    box-sizing: border-box;
    padding: 12px;
}
@media (max-width: 800px) {
    .itemContainer {
        width: 100% !important;
    }
}

.catItemView {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.catItemImage {
    display: block;
}
.catItemImage img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.catItemBody {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    flex: 1;
}
.catItemTitle {
    margin: 0;
    line-height: 1.3;
}
.catItemTitle a {
    color: var(--navy);
    font-weight: 700;
}
.catItemTitle a:hover {
    color: var(--blue);
}
.catItemIntroText {
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.6;
}
.catItemMeta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.catItemDateCreated {
    color: var(--ink-soft);
    font-size: .78rem;
    font-weight: 600;
}
.catItemCategory {
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .7rem;
    background: var(--orange-soft);
    color: var(--orange-dark);
}
.catItemCategory.cat-anakoinoseis {
    background: var(--orange-soft);
    color: var(--orange-dark);
}
.catItemCategory.cat-draseis {
    background: var(--green-soft);
    color: var(--green-dark);
}
.catItemCategory.cat-nea {
    background: var(--blue-soft);
    color: var(--blue);
}
.catItemReadMore {
    align-self: flex-start;
}

/* K2 Pagination (core Joomla Pagination output: .k2Pagination > .k2PaginationLinks ul > li > a/span.pagenav, .k2PaginationCounter) */
.k2Pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(27,54,93,.08);
}
.k2PaginationLinks ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.k2PaginationLinks .pagenav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .85rem;
    border: 1px solid rgba(27,54,93,.12);
    background: var(--white);
    color: var(--navy);
    transition: all .2s ease;
}
.k2PaginationLinks .pagenav i {
    font-size: 1.15rem;
    line-height: 1;
}
a.pagenav:hover {
    background: var(--orange-soft);
    border-color: var(--orange);
    color: var(--orange-dark);
}
/* current page number */
.k2PaginationLinks li:not(.pagination-start):not(.pagination-prev):not(.pagination-next):not(.pagination-end) span.pagenav {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
/* disabled start/prev/next/end (e.g. "Prev" on page 1) */
.k2PaginationLinks li.pagination-start span.pagenav,
.k2PaginationLinks li.pagination-prev span.pagenav,
.k2PaginationLinks li.pagination-next span.pagenav,
.k2PaginationLinks li.pagination-end span.pagenav {
    background: transparent;
    border-color: rgba(27,54,93,.08);
    color: var(--ink-soft);
    opacity: .5;
}
.k2PaginationCounter {
    color: var(--ink-soft);
    font-size: .85rem;
}
/* /Category listing */

/* Grid-based layout at every tier — avoids the plugin's fragile float+margin
   box model, which breaks unpredictably whenever the available width changes
   (e.g. sidebar width, padding). Grid computes columns/gaps itself, no manual calc. */
ul.sigProSeamless {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
ul.sigProSeamless li.sigProThumb {
    margin: 0 !important;
    float: none;
    width: auto;
}
ul.sigProSeamless li.sigProThumb a.sigProLink, ul.sigProSeamless li.sigProThumb a.sigProLink:hover {
    background-color: transparent;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 231 / 160;
}
/* Hide the magnifier lens icon shown on thumbnail hover */
ul.sigProSeamless li.sigProThumb a.sigProLink:hover:after {
    display: none;
}
ul.sigProSeamless li.sigProThumb a.sigProLink img.sigProImg {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
}
.sigProImg {
    border-radius: 10px;
    transition: all .3s ease;
}
/* Unused clearfix helper (float layout) — pointless in a grid, hide it */
ul.sigProSeamless li.sigProClear {
    display: none;
}
.itemVideoBlock iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
}


/* Exactly 3 thumbnails per row on tablets (481-800px) */
@media (min-width: 481px) and (max-width: 800px) {
    ul.sigProSeamless {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Phones: natural size, single column, centered */
@media (max-width: 480px) {
    ul.sigProSeamless {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    ul.sigProSeamless li.sigProThumb a.sigProLink {
        width: 231px !important;
    }
}

/* Contact Page */
.pageHero {
    padding: 60px 0 50px;
    background: linear-gradient(180deg, var(--blue-soft) 0%, var(--bg) 100%);
}
.pageHeroText {
    color: var(--ink-soft);
    max-width: 620px;
    font-size: 1.05rem;
    margin-top: 14px;
}

/* Contact Section */
.contactSection {
    padding: 60px 40px;
}
.contactGrid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contactIntro {
    color: var(--ink-soft);
    margin-bottom: 26px;
}
.contactCards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contactCard {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px 20px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.contactCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(27,54,93,.16);
}
.contactCard p {
    color: var(--ink-soft);
    font-size: .92rem;
}
.contactCard a:hover {
    color: var(--blue);
}
.contactIcon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.3rem;
}
.iconBlue {
    background: var(--blue-soft);
    color: var(--blue);
}
.iconOrange {
    background: var(--orange-soft);
    color: var(--orange-dark);
}
.iconGreen {
    background: var(--green-soft);
    color: var(--green-dark);
}
.iconYellow {
    background: var(--yellow-soft);
    color: #9A6A00;
}

.socialRow {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.socialRow a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow);
    color: var(--navy);
    font-size: 1.15rem;
}
.socialRow a:hover {
    background: var(--navy);
    color: var(--white);
}
/* Contact form */
.contactFormBlock {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-top: -32px;
}
.contactForm {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.formRow {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.formRowHalf {
    flex-direction: row;
    gap: 18px;
}
.formRowHalf > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.formRow label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
}
.formRow input, .formRow textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(27,54,93,.14);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: var(--ink);
    background: var(--bg);
    transition: border-color .2s ease, box-shadow .2s ease;
}
::placeholder {
    opacity: .4;
}
::-ms-input-placeholder { /* Edge 12 -18 */
  opacity: .4;
}
.formRow input:focus, .formRow textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-soft);
}
.formRow textarea {
    resize: vertical;
    min-height: 130px;
}
.contactForm .moduleCustomLinkBlock button i {
    display: inline-block;
    transition: transform .2s ease;
}
.contactForm .moduleCustomLinkBlock button:hover i {
    transform: translateX(5px);
}
.contactForm .buttonOrange {
    align-self: flex-start;
    border: none;
}
.postForm {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 0;
    font-size: .9em;
}
/* Honeypot field — off-screen trap for spam bots, invisible to real visitors */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Contact form submit status message */
.formStatus {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.formStatusSuccess {
    background: var(--green-soft);
    color: var(--green-dark);
}
.formStatusError {
    background: var(--orange-soft);
    color: var(--orange-dark);
}

/* Cloudflare Turnstile widget — Cloudflare renders a fixed-size iframe inside
   this wrapper, so only the surrounding spacing and placement are ours to set.
   Centring is done with flex rather than margin:auto on the inner element,
   since its width is set by Cloudflare's script and can change */
.turnstileBlock {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Map */
.mapSection {
    padding: 20px 0 0;
}
.mapSection .innerBlock {
    text-align: center;
    margin-bottom: 30px;
}
.mapFrame {
    width: 100%;
    height: 420px;
    filter: grayscale(15%);
}
.mapFrame iframe {
    width: 100%;
    height: 100%;
    display: block;
}
/* Responsive */
@media (max-width: 800px) {
    .contactGrid {
        grid-template-columns: 1fr;
    }
    .formRowHalf {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .innerBlock {
        padding: 0 16px;
    }
    .headerCont {
        padding: 12px 16px;
    }
    .contactFormBlock {
        padding: 22px;
    }
}
/* /Contact Page */

/* About us - Ο Σύλλογος */
.sectionHead {
    max-width: 640px;
    margin: 0 auto 44px;
    text-align: center;
}
.sectionIntro {
    color: var(--ink-soft);
    margin-top: 10px;
}
.aboutUsSection {
    padding: 70px 0;
}
.aboutUsGrid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.aboutUsText p {
    color: var(--ink-soft);
    margin-bottom: 16px;
    line-height: 1.7;
}
.valuesSection {
    padding: 20px 0 70px;
}
.valuesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.valueCard {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 24px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.valueCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(27,54,93,.16);
}
.valueIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
/* .iconBlue/.iconGreen/.iconOrange already defined once in the Contact Page section — reused here as-is, not redefined */
.valueCard p {
    color: var(--ink-soft);
    font-size: .9rem;
}
.historySection {
    padding: 20px 0 70px;
}
.timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 34px;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 5px;
    width: 2px;
    background: rgba(27,54,93,.15);
}
.timelineItem {
    position: relative;
    display: flex;
    gap: 24px;
    align-items: baseline;
    padding-bottom: 34px;
}
.timelineItem:last-child {
    padding-bottom: 0;
}
.timelineItem::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--orange-soft);
}
.timelineYear {
    flex-shrink: 0;
    width: 70px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--orange-dark);
    font-size: 1.05rem;
}
.historyBody p {
    color: var(--ink-soft);
    font-size: .92rem;
    margin-top: 4px;
}
.boardSection {
    padding: 20px 0 80px;
}
.boardGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.boardCard {
    flex: 0 1 calc(25% - 18px);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 20px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.boardCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(27,54,93,.16);
}
.boardAvatar, .boardAvatar img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 1.9rem;
}
.boardAvatar {
    background: var(--blue-soft);
    color: var(--blue);
    margin-bottom: 16px;
}
.boardRole {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    background: var(--bg);
    color: var(--ink-soft);
}
.boardRole.roleLead {
    background: var(--orange-soft);
    color: var(--orange-dark);
}
.boardRole.roleMember {
    background: var(--green-soft);
    color: var(--green-dark);
}
@media (max-width: 800px) {
    .aboutUsGrid {
        grid-template-columns: 1fr;
    }
    .aboutUsPanel {
        max-width: 320px;
        margin: 0 auto;
    }
    .valuesGrid {
        grid-template-columns: 1fr;
    }
    .boardCard {
        flex: 0 1 calc(50% - 12px);
    }
}
@media (max-width: 480px) {
    .boardCard {
        flex: 0 1 100%;
    }
    .timeline {
        padding-left: 26px;
    }
    .timelineItem {
        gap: 14px;
    }
    .timelineItem::before {
        left: -26px;
    }
    .timelineYear {
        width: 50px;
        font-size: .95rem;
    }
}
/* /About us - Ο Σύλλογος */

/* Volunteer form - Εθελοντές */
/* Colours and structure follow the association's printed sign-up form: each
   numbered section carries its own hue, set once per section through the
   --sec* custom properties and inherited by everything inside it. Fonts stay
   the site's own: Plus Jakarta Sans for headings and numbers, Inter for text */
.volunteerSection {
    padding: 0 40px 60px 40px;
}
.volunteerFormBlock {
    max-width: 820px;
    margin: 0 auto;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
/* The UA's [hidden] rule loses to any class that sets display, so restate it
   for the buttons and messages the form's script shows and hides */
.volunteerForm [hidden] {
    display: none;
}
/* Banner: the form's title beside one dot per section colour, in a light
   box like the header of the printed form */
.volBanner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 14px 20px;
    background: color-mix(in srgb, var(--blue) 8%, #FFFFFF);
    border: 2px solid var(--blue-soft);
    border-radius: 18px;
}
.volBannerTitle {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--blue);
}
.volDots {
    display: flex;
    flex: none;
    gap: 6px;
}
.volDots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}
.volDots span:nth-child(1) {
    background: var(--blue);
}
.volDots span:nth-child(2) {
    background: var(--orange);
}
.volDots span:nth-child(3) {
    background: var(--green);
}
.volDots span:nth-child(4) {
    background: var(--purple);
}
.volIntro {
    margin: 0 0 26px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.volunteerForm {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Section hues: each section names its accent (--sec) and the dark shade
   used for its text and number badge (--sec-dark), taken from the site
   palette. Section 5 keeps the red of the printed form, which the palette
   doesn't have */
.volBlue {
    --sec: var(--blue);
    --sec-dark: var(--navy);
}
.volOrange {
    --sec: var(--orange);
    --sec-dark: var(--orange-dark);
}
.volGreen {
    --sec: var(--green);
    --sec-dark: var(--green-dark);
}
.volPurple {
    --sec: var(--purple);
    --sec-dark: var(--purple-dark);
}
.volRed {
    --sec: oklch(0.70 0.15 20);
    --sec-dark: oklch(0.48 0.14 20);
}
/* The light shades are mixed from each section's own accent, so every
   section stays on its hue without a hand-picked tint per colour */
.volSection,
.volConsent {
    --sec-soft: color-mix(in srgb, var(--sec) 22%, #FFFFFF);
    --sec-border: color-mix(in srgb, var(--sec) 32%, #FFFFFF);
    --sec-bg: color-mix(in srgb, var(--sec) 5%, #FFFFFF);
    --sec-head: color-mix(in srgb, var(--sec) 14%, #FFFFFF);
}

/* Sections are fieldsets so each group is announced with its title; the
   resets undo the browser's and Bootstrap's fieldset/legend defaults */
.volSection {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}
.volSectionHead {
    float: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 0 0 14px;
    padding: 0;
    border: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--sec-dark);
}
.volSectionHead::after {
    content: '';
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: var(--sec-soft);
}
/* The badge uses the dark shade: white on the light accents (orange, green)
   would be too faint to read */
.volNum {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--sec-dark);
    font-size: .85rem;
    color: #FFFFFF;
}
.volOptional {
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    font-weight: 500;
    color: var(--ink-soft);
}
.volHint {
    margin: 0 0 10px;
    font-size: .9rem;
    color: var(--ink-soft);
}

/* Fields */
.volGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}
.volField {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.volField label,
.volSubLabel {
    margin: 0;
    font-size: .82rem;
    font-weight: 600;
    color: var(--sec-dark);
}
.volControl {
    width: 100%;
    padding: 12px 14px;
    background: var(--sec-bg);
    border: 1.5px solid var(--sec-border);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.volControl:focus {
    outline: none;
    border-color: var(--sec);
    box-shadow: 0 0 0 3px var(--sec-soft);
}
/* Ruled writing lines like the printed form; line-height matches the 31px
   rule spacing so typed text sits on the lines, and "local" makes them
   scroll with the text */
.volLined {
    min-height: 110px;
    padding-top: 6px;
    line-height: 31px;
    resize: vertical;
    background: linear-gradient(var(--sec-soft) 0 1.2px, transparent 1.2px 100%) 0 30px / 100% 31px, var(--sec-bg);
    background-attachment: local;
}

/* Children table */
.childTable {
    overflow: hidden;
    border: 1.5px solid var(--sec-border);
    border-radius: 14px;
}
.childHead,
.childRow {
    display: grid;
    grid-template-columns: 26px 1.7fr 1fr 34px;
    align-items: center;
    gap: 14px;
    padding: 9px 12px;
}
.childHead {
    background: var(--sec-head);
    font-size: .8rem;
    font-weight: 600;
    color: var(--sec-dark);
}
.childRow {
    grid-template-areas: "num name class remove";
    border-top: 1px solid var(--sec-soft);
}
.childRow:nth-child(even) {
    background: var(--sec-bg);
}
.childNum {
    grid-area: num;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--sec);
}
.childName {
    grid-area: name;
}
.childClass {
    grid-area: class;
}
.childRemove {
    grid-area: remove;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: transparent;
    border: 0;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--sec-dark);
    cursor: pointer;
    transition: background-color .2s ease;
}
.childRemove:hover,
.childRemove:focus-visible {
    background: var(--sec-soft);
}
.childAdd {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 9px 16px;
    background: transparent;
    border: 1.5px dashed var(--sec);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    color: var(--sec-dark);
    cursor: pointer;
    transition: background-color .2s ease;
}
.childAdd:hover,
.childAdd:focus-visible {
    background: var(--sec-bg);
}

/* Availability pills */
.volGroup {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 3px;
    border-radius: 16px;
    transition: box-shadow .2s ease;
}
.volGroup.isInvalid {
    box-shadow: 0 0 0 2px var(--orange);
}
.volHours {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin-top: 12px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 6px 14px 6px 10px;
    background: var(--sec-bg);
    border: 1.5px solid var(--sec-border);
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    user-select: none;
    transition: background-color .2s ease, border-color .2s ease;
}
.pill:hover {
    border-color: var(--sec);
}
.pill:has(input:checked) {
    background: var(--sec-soft);
    border-color: var(--sec);
    font-weight: 600;
    color: var(--sec-dark);
}
.volGroupError {
    margin: 8px 0 0;
    font-size: .85rem;
    font-weight: 600;
    color: var(--orange-dark);
}

/* Custom square checkboxes, used by the pills and the consent box */
.pill input,
.volConsentCheck input {
    -webkit-appearance: none;
    appearance: none;
    flex: none;
    width: 16px;
    height: 16px;
    margin: 0;
    background: #FFFFFF center / 11px no-repeat;
    border: 1.5px solid var(--sec);
    border-radius: 4px;
    cursor: pointer;
}
/* Ticked boxes fill with the dark shade, for the same reason as the badges:
   a white tick on light orange or green would barely show */
.pill input:checked,
.volConsentCheck input:checked {
    background-color: var(--sec-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.3 2.3 4.7-5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    border-color: var(--sec-dark);
}
.pill input:focus-visible,
.volConsentCheck input:focus-visible {
    outline: 2px solid var(--sec);
    outline-offset: 2px;
}

/* Consent */
.volConsent {
    --sec: var(--blue);
    --sec-dark: var(--navy);
    padding: 16px 18px;
    background: color-mix(in srgb, var(--blue) 7%, #FFFFFF);
    border: 2px dashed color-mix(in srgb, var(--blue) 55%, #FFFFFF);
    border-radius: 14px;
}
.volConsentTitle {
    margin: 0 0 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--sec-dark);
}
.volConsent p {
    margin: 0 0 12px;
    font-size: .9rem;
    color: var(--ink-soft);
}
.volConsentCheck {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
}
.volConsentCheck input {
    margin-top: 2px;
}

/* Submit */
.volSubmit {
    display: flex;
    justify-content: center;
}
.volunteerForm .buttonOrange {
    border: none;
    font-family: inherit;
    cursor: pointer;
}
.volunteerForm .buttonOrange i {
    display: inline-block;
    margin-left: 6px;
    transition: transform .2s ease;
}
.volunteerForm .buttonOrange:hover i {
    transform: translateX(5px);
}
.volThanks {
    margin: 0;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--blue);
}

/* Responsive */
@media (max-width: 800px) {
    .volGrid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .volunteerSection {
        padding: 40px 16px;
    }
    .volunteerFormBlock {
        padding: 22px;
    }
    .volBanner {
        flex-wrap: wrap;
        padding: 12px 14px;
    }
    .childHead {
        display: none;
    }
    .childRow {
        grid-template-columns: 22px 1fr 34px;
        grid-template-areas:
            "num name remove"
            "num class remove";
        gap: 8px 10px;
    }
}
/* /Volunteer form - Εθελοντές */
/* /Main Content */


/* Side Bars */
.sidebarLeft, .sidebarRight {
    flex-shrink: 0;
    width: 250px;
    min-width: 220px;
    max-width: 280px;
    padding: 0 10px;
    margin-top: 3px;
}
@media (max-width: 800px) {
    .sidebarLeft, .sidebarRight {
        width: 100%;
        max-width: 100%;
    }
}
.sidebarRight h3 {
    font-size: 1.1em;
    border-bottom: 2px solid var(--orange);
    padding: 0 0 10px;
    margin-bottom: 24px;
    letter-spacing: -.5px;
}

/* Sidebar Recent Posts (mod_k2_content, "timeline" layout) */
.sidebarListTitle {
    color: var(--navy);
    font-size: 1.05rem;
    margin-bottom: 16px;
}
.k2ItemsBlock.timelineList ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding-left: 24px;
}
.k2ItemsBlock.timelineList ul::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 9px;
    width: 2px;
    background: rgba(27,54,93,.15);
}
.k2ItemsBlock.timelineList li {
    position: relative;
}
.timelineDot {
    position: absolute;
    top: 4px;
    left: -20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E4E6EA;
    border: 2px solid var(--white);
}
.timelineBody {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.timelineTitle {
    color: var(--navy);
    font-weight: 700;
    font-size: .92rem;
    line-height: 1.35;
}
.timelineTitle:hover {
    color: var(--blue);
}
.timelineDate {
    color: var(--ink-soft);
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}
/* /Timeline candidate */
/* /Side Bars */

/* Bottom Positions */

/* /Bottom Positions */


/* Footer */
.footerCont {
    width: 100%;
    background-color: var(--navy);
    padding: 40px 0;
}
.footerBlocks {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--white);
    font-size: .8em;
}
.footerBlock {
    display: flex;
    flex-direction: column;
    flex: 0 250px;
}
.footerBlock h3 {
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid var(--orange);
    width: 100%;
    display: inline-flex;
    padding: 10px 0;
    color: var(--orange);
}
.footerBlock img {
    width: 250px;
    max-width: 100%;
    height: auto;
}
.footerBlock span {
    display: block;
    font-size: 1.1em;
    color: var(--blue-soft);
    margin-top: 20px;
}
.footerBlock ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}
.footerBlock ul li a {
    display: inline-flex;
    color: var(--blue-soft);
    padding: 2px 0;
}
.footerBlock ul li a:hover {
    color: var(--blue-light);
}
.footerContactCont ul {
    padding: 0!important;
}
.footerContactCont ul li {
    padding: 2px 0;
}
.footerContactCont ul li i {
    margin-right: 5px ;
}
@media (max-width: 800px) {
    .footerBlocks {
        flex-direction: column;
        gap: 30px;
    }
    .footerBlock {
        flex: 1 100%;
    }
}
/* /Footer */


/* Copyright */
.copyright {
    background-color: var(--navy);
    width: 100%;
    display: flex;
    align-items: center;
}
.copyrightCont {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 10px 40px;
    color: var(--white);
    font-size: .8em;
    border-top: 1px solid var(--blue-light);
}
.copyrightCont a {
    color: var(--blue-soft);
}
@media (max-width: 800px) {
    .copyrightCont {
        padding: 10px 24px;
    }
}
@media (max-width: 600px) {
    .copyrightCont {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}
@media (max-width: 480px) {
    .copyrightCont {
        padding: 10px 16px;
    }
}
/* /Copyright */
