/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

    scroll-padding-top:30px;
}

body{

    font-family:'Poppins',sans-serif;
    color:#444;
    background:#ffffff;
    line-height:1.7;

}

/* ===========================
   CONTAINER
=========================== */

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ===========================
   HEADER
=========================== */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:#ffffff;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

    z-index:1000;

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:60px;

}

.logo img{

    height:55px;

    margin-top:8px;

    flex:1;
}

nav{

    display:flex;
    align-items:center;
    gap:35px;

}

nav a{

    text-decoration:none;
    color:#555;
    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:#73826d;

}

.btn-menu{

    background:#73826D;

    color:white !important;

    padding:12px 24px;

    border-radius:30px;

}

.btn-menu:hover{

    background:#596454;

}

.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:#DB6E65;

    cursor:pointer;

}

/* ===========================
   HERO
=========================== */

.hero{

    height:100vh;

    background:url(images/hero.webp) center 15%/cover;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    z-index:2;

}

.overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    color:white;

    max-width:750px;

    z-index:2;

    margin-top:105px;

}

.hero h1{

    font-size:43px;

    font-weight:700;

    line-height:1.25;

    margin-bottom:30px;

}

.hero p{

    font-size:19px;

    margin-bottom:70px;

}

.btn{

    display:inline-block;

    text-decoration:none;

    background:#73826D;

    color:white;

    padding:15px 34px;

    font-size:16px;

    border-radius:35px;

    transition:.3s;

}
.hero-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:10px;

    flex-wrap:wrap;

}

.btn:hover{

    background:#DB6E65;

}

/* ===========================
   SEKCIE
=========================== */

section{

    padding:55px 0;

    scroll-margin-top:30px;

    position:relative;

    z-index:2;

}

section h2{

    font-size:28px;

    text-align:center;

    color:#596454;

    margin-bottom:35px;

    scroll-margin-top:30px;

}

section p{

    max-width:850px;

    margin:auto;

    text-align:center;

   scroll-margin-top:30px;

}

/* ===========================
   PREČO MY
=========================== */

#precomy{

    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("images/precomy.webp") center center / cover no-repeat;

    color:white;

    padding:100px 0;

}

#precomy h2{

    color:white;

    margin-bottom:30px;

}

#precomy p{

    color:white;

    max-width:820px;

    margin:0 auto;

    line-height:1.9;

}

#precomy .section-button{

    display:flex;
    justify-content:center;
    margin-top:45px;

}

.btn-salmon{

    display:inline-block;

    text-decoration:none;

    background:#73826D;

    color:white;

    padding:15px 34px;

    border-radius:35px;

    transition:.3s;

}

.btn-salmon:hover{

    background:#596454;

}

/* ===========================
   KARTY
=========================== */

.cards{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(3,300px);

    justify-content:center;

    gap:24px;
}

.card{

    display:grid;

    grid-template-rows:55px 120px auto;

    background:#d66d5a;

    border-radius:20px;

    padding:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

}

.card-header{

    display:flex;

    justify-content:center;

    align-items:center;

}

.card-body{

    display:flex;

    align-items:flex-start;

    justify-content:flex-start;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    font-size:22px;

    color:white;

    text-align:center;

    margin-bottom:25px;

}

.card p{

    text-align:left;

    font-size:13.5px;

    line-height:1.6;

    color:#fffaf8;

    margin-bottom:15px;

}

.card h4{

    color:white;

    font-size:18px;

    margin-bottom:15px;

    text-align:left;
}

.card ul{

    padding-left:30px;

    margin:0;

}

.card li{

    color:#fffaf8;

    margin-bottom:10px;

    line-height:1.6;

    list-style-position:outside;

    font-size:14px;

}

.activities{

    margin-top:auto;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.35);

}

/* =====================================
O NÁS - HLAVNÁ STRÁNKA
===================================== */

.about-page{

    padding:120px 0 60px;

}

.about-page h1{

    text-align:center;

    color:#596454;

    font-size:28px;

    margin-bottom:10px;

}

.about-intro{

    max-width:850px;

    margin:0 auto 10px;

    text-align:center;

    line-height:1.9;

}

.about-actions{

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:20px;

    margin-top:45px;

}

.about-socials{

    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:10px;

}

.about-socials a{

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#73826D;

    color:#fff;
    font-size:20px;

    text-decoration:none;

    transition:all .3s ease;

}

.about-socials a:hover{

    background:#DB6E65;
    transform:translateY(-3px);

}

.team{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:50px;

}

.member{

    background:white;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.member:hover{

    transform:translateY(-8px);

}

.member img{

    width:170px;

    height:170px;

    object-fit:cover;

    border-radius:50%;

    margin-bottom:25px;

}

.member h3{

    color:#596454;

    font-size:24px;

    margin-bottom:8px;

}

.member span{

    display:block;

    color:#EFA79A;

    font-weight:600;

    margin-bottom:20px;

}

.member p{

    text-align:center;

    line-height:1.8;

}

.back-home{

    text-align:center;

    margin-top:70px;

}

.about-follow{

    max-width:600px;
    text-align:center;

}

.about-follow h3{

    color:#596454;
    font-size:24px;
    font-weight:600;
    margin-bottom:12px;

}

.about-follow p{

    color:#555;
    line-height:1.8;
    margin:0;

}

.about-photo{

    display:block;

    width:100%;

    max-width:700px;

    margin:45px auto 35px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

/* ===========================
   KALENDÁR AKTIVÍT
=========================== */

#kalendar{

    padding:20px 0 110px;

}

.note{

    width:100%;

    max-width:1050px;

    height:620px;

    margin:40px auto 0;

    background:url("images/note.webp") no-repeat center;

    background-size:contain;

    position:relative;

    z-index:1;

}

.note-content{

    position:absolute;

    top:120px;

    left:120px;

    width:75%;

}

.event{

    display:grid;

    grid-template-columns:140px 1fr 160px;

    align-items:center;

    padding:28px 0;

    border-bottom:1px solid rgba(89,100,84,.18);

}

.event:last-child{

    border-bottom:none;

}

.date{

    font-size:18px;

    font-weight:700;

    color:#d66d5a;

}

.title{

    font-size:18px;

    color:#444;

    font-weight:500;

}

.time{

    text-align:right;

    color:#d66d5a;

    font-size:20px;

    font-weight:600;

}

.calendar-button{

    width:100%;

    max-width:1050px;

    margin:-120px auto 0;

    display:flex;

    justify-content:flex-end;

    padding-right:70px;

    position:relative;

    z-index:10;

}

/* ===========================
   DOBROVOĽNÍCI
=========================== */

#dobrovolnici{

    background:#73826D;

    color:white;

}

#dobrovolnici h2{

    color:white;

}

#dobrovolnici .btn{

    display:block;

    width:fit-content;

    margin:35px auto 0;

    background:white;

    color:#596454;
}

/* ===========================
   Otázky
=========================== */

.otazky-item{

    max-width:820px;

    margin:12px auto;

    background:#fff0eb;

    border-radius:14px;

    box-shadow:0 4px 15px rgba(0,0,0,.04);

    overflow:hidden;

}

.otazky-item summary{

    list-style:none;

    cursor:pointer;

    padding:14px 20px;

    font-size:16px;

    font-weight:600;

    color:#596454;

    position:relative;

}

.otazky-item summary::-webkit-details-marker{

    display:none;

}

.otazky-item summary::after{

    content:"+";

    position:absolute;

    right:20px;

    top:50%;

    transform:translateY(-50%);

    font-size:20px;

    font-weight:300;

    transition:.3s;

}

.otazky-item[open] summary::after{

    transform:translateY(-50%) rotate(45deg);

}

.otazky-item p{

    padding:0 20px 16px;

    text-align:left;

    color:#666;

    font-size:14px;

    line-height:1.7;

}

/* ===========================
   KONTAKT
=========================== */

.contact-intro{

    margin-bottom:60px;

}

.contact-grid{

    display:grid;

    grid-template-columns:340px 520px;

    gap:80px;

    align-items:start;

}

/* ĽAVÁ STRANA */

.contact-info{

    padding-right:50px;

}

.contact-info h3{

    font-size:30px;

    color:#596454;

    margin-bottom:20px;

}

.info-block{

    margin-bottom:2px;

}

.info-block span{

    display:block;

    font-size:10px;

    text-transform:uppercase;

    letter-spacing:1px;

    color:#999;

    margin-bottom:0.5px;

}

.info-block p{

    text-align:left;

    margin:0;

    color:#444;

    font-size:14px;

    line-height:1.0;

}

.socials{

    display:flex;

    gap:14px;

    margin-top:22px;

}

.socials a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#73826D;

    color:white;

    text-decoration:none;

    font-size:18px;

    transition:.3s;

}

.socials a:hover{

    background:#596454;

    transform:translateY(-3px);

}

/* PRAVÁ STRANA */

.contact-form{

    border-left:1px solid rgba(0,0,0,.08);

    display:flex;

    justify-content:center;

    padding-left:40px;

}

.contact-form form{

    width:100%;

    max-width:500px;

    margin:0 auto;

    transform:translateX(120px);

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:14px 18px;

    border:1px solid #ddd;

    border-radius:16px;

    margin-bottom:14px;

    font-size:14px;

    font-family:Poppins,sans-serif;

    transition:.3s;

}

.contact-form input:focus,

.contact-form textarea:focus{

    outline:none;

    border-color:#73826d;

}

.contact-form textarea{

    min-height:150px;

    resize:vertical;

}

.contact-form button{

    width:auto;

    padding:14px 34px;

    border-radius:35px;

    background:#73826D;

    color:white;

    font-size:15px;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#596454;

}

/* ===========================
   FOOTER
=========================== */

footer{

    background:#EFA79A;

    padding:40px 20px;

    text-align:center;

}

.footer-quote{

    max-width:700px;

    margin:0 auto 18px;

    color:#596454;

    font-size:12px;

    line-height:1.8;

    font-weight:500;

}

.footer-copy{

    color:#7b6d66;

    font-size:14px;

}

.footer-links{

    margin:25px 0 15px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    flex-wrap:wrap;

}

.footer-links a{

    color:#596454;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.footer-links a:hover{

    color:#DB6E65;

}

/* ===========================
   BACKGROUND STROM
=========================== */

body::before{

    content:"";

    position:fixed;

    right:-10px;      /* doprava / doľava */

    bottom:-130px;      /* hore / dole */

    width:1000px;       /* veľkosť */

    height:700px;

    background:url("images/background.webp") no-repeat center;

    background-size:contain;

    opacity:0.3;      /* priehľadnosť */

    z-index:-1;

    pointer-events:none;

}

/* =====================================
   HODNOTY
===================================== */

.values-hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding:140px 20px 100px;

}

.values-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    z-index:1;

}

.values-content{

    position:relative;

    z-index:2;

    max-width:900px;

    text-align:center;

    color:white;

}

.values-content h1{

    font-size:48px;

    margin-bottom:25px;

}

.values-content>p{

    max-width:750px;

    margin:0 auto 60px;

}

.values-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-bottom:60px;

}

.value{

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    border-radius:28px;

    padding:38px;

    border:1px solid rgba(255,255,255,.20);

}

.value h3{

    color:#EFA79A;

    font-size:28px;

    margin-bottom:18px;

    text-align:center;

}

.value h3::after{

    content:"";

    display:block;

    width:70px;

    height:3px;

    background:#EFA79A;

    margin:15px auto 0;

    border-radius:20px;

}

.value p{

    text-align:center;

    line-height:1.9;

    color:white;

}

.value-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:60px;

    flex-wrap:wrap;


}

/* =====================================
   SLIDESHOW
===================================== */

.slideshow{

    position:absolute;

    inset:0;

    z-index:0;

}

.slide{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center;

    opacity:0;

    animation:fade 36s infinite;

}

/* Obrázky */

.slide1{
    background-image:url("images/ludsky.webp");
    animation-delay:0s;
}

.slide2{
    background-image:url("images/individualny.webp");
    animation-delay:6s;
}

.slide3{
    background-image:url("images/respekt.webp");
    animation-delay:12s;
}

.slide4{
    background-image:url("images/bezpecne.webp");
    animation-delay:18s;
}

.slide5{
    background-image:url("images/komunita.webp");
    animation-delay:24s;
}

.slide6{
    background-image:url("images/pomoc.webp");
    animation-delay:30s;
}

/* Plynulé prelínanie */

@keyframes fade{

    0%{
        opacity:0;
    }

    8%{
        opacity:1;
    }

    25%{
        opacity:1;
    }

    33%{
        opacity:0;
    }

    100%{
        opacity:0;
    }

}

/* =====================================
   NÁŠ TÍM
===================================== */

.team-grid{

    display:flex;

    flex-direction:column;

    gap:140px;

    margin-top:-20px;

}

.team-card{

    max-width:1000px;

    margin:0 auto;

    text-align:center;

}

.team-photo{

    width:260px;

    height:260px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid #EFA79A;

    display:block;

    margin:0 auto 30px;

    transition:.35s;

}

.team-photo:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(0,0,0,.10);

}

.team-card h3{

    font-size:34px;

    color:#596454;

    margin-bottom:12px;

}

.team-role{

    display:block;

    color:#DB6E65;

    font-weight:600;

    font-size:18px;

    margin-bottom:35px;

}

.team-text{

    max-width:850px;

    margin:0 auto;

}

.team-text p{

    text-align:left;

    font-size:17px;

    line-height:2;

    margin-bottom:22px;

}

.team-motto{

    margin-top:40px;

    padding:30px;

    background:#FFF8F7;

    border-left:5px solid #EFA79A;

    border-radius:15px;

    font-style:italic;

}

.team-list{

    margin-top:30px;

    padding-left:22px;

}

.team-list li{

    margin-bottom:12px;

    line-height:1.8;

}

.team-contact{
    margin:25px auto 35px;
    text-align:center;
    line-height:1.9;
}

.team-contact p{
    margin:0;
    font-size:16px;
    color:#555;
}

.team-contact strong{
    color:#596454;
}

.team-contact a{
    color:#DB6E65;
    text-decoration:none;
    transition:.3s;
}

.team-contact a:hover{
    color:#73826D;
    text-decoration:underline;
}
/* =====================================
   DOBROVOĽNÍCI
===================================== */

@media (max-width:768px){

    #dobrovolnici{

        padding:70px 20px;

    }

    #dobrovolnici h2{

        font-size:34px;

    }

    #dobrovolnici p{

        font-size:17px;

        line-height:1.8;

    }

}

/* =====================================
   RESPONSIVE 480px
===================================== */

@media (max-width:480px){

    .logo img{

        height:30px;

    }

    .hero h1{

        font-size:30px;

    }

    .hero p{

        font-size:16px;

    }

    nav{

        gap:8px;

    }

    nav a{

        font-size:13px;

    }

}

/* =====================================
   O NÁS - HLAVNÁ STRÁNKA (MOBIL)
===================================== */

@media (max-width:768px){

    #onas{

        padding:70px 20px;

    }

    #onas h2{

        font-size:30px;

    }

    #onas p{

        font-size:16px;

        line-height:1.9;

        text-align:center;

    }

    .about-actions{

        margin-top:40px;

    }

    .about-socials{

        margin-top:35px;

    }

    .about-photo{

        max-width:100%;

        margin:35px auto 25px;

        border-radius:16px;

    }

}

/* =====================================
   TÍM
===================================== */

@media (max-width:768px){

    .team-grid{

        gap:120px;

    }

    .team-card{

        width:100%;

        max-width:100%;

    }

    .team-photo{

        width:200px;

        height:200px;

        margin:0 auto 15px;

    }

    .team-card h3{

        font-size:28px;

    }

    .team-role{

        font-size:16px;

        margin-bottom:40px;

    }

    .team-text p{

        font-size:16px;

        line-height:1.8;

    }

}

/* =====================================
   TRI PILIERE
===================================== */

@media (max-width:768px){

    .cards{

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:30px;

    }

    .card{

        width:100%;

        max-width:360px;

        height:auto;

        min-height:unset;

    }

    .card ul{

        margin-bottom:20px;

    }

}

/* =====================================
   KALENDÁR - MOBIL
===================================== */

@media (max-width:768px){

    .note{

    height:350px;

    background-size:contain;

    background-position:center;

    margin-top:-80px;

    }

    .note-content{

    position:absolute;

    top:110px;

    left:38px;

    width:calc(100% - 76px);

    }

    /* zobraz iba prvú udalosť */

    .event{

        display:none;

    }

    .event:first-child{

        display:block;

        border:none;

        padding:0;

        text-align:center;

    }

    .date{

        display:inline;

        font-size:17px;

        font-weight:600;

        color:#596454;

    }

    .time{

        display:inline;

        font-size:15px;

        font-weight:600;

        color:#596454;

    }

    .time::before{

        content:" | ";

    }

    .title{

        display:block;

        margin-top:6px;

        padding-top:8px;

        border-top:1px solid rgba(89,100,84,.18);

        font-size:20px;

        font-weight:600;

        color:#444;

        text-align:center;

    }

    .calendar-button{

        margin-top:-60px;

        justify-content:center;

        padding-right:0;

    }

}

/* =====================================
   ČASTO KLADENÉ OTÁZKY
===================================== */

@media (max-width:768px){

    .otazky-item{

        margin:14px 0;

    }

    .otazky-item summary{

        font-size:15px;

        padding:18px;

    }

}

/* =====================================
   KONTAKT
===================================== */

@media (max-width:768px){

    .contact-grid{

        display:flex;
        flex-direction:column-reverse;

        gap:45px;

    }

    .contact-info{

        width:100%;
        text-align:center;

        padding:0;

    }

    .contact-info h2{

        text-align:center;

    }

    .contact-info p{

        text-align:center;

    }

    .contact-form{

        width:100%;

        padding:0;

        border:none;

    }

    .contact-form form{

        width:100%;

        max-width:100%;

        transform:none;

        margin:0 auto;

    }

    .socials{

        justify-content:center;

    }

}

/* =====================================
   HODNOTY
===================================== */

@media (max-width:768px){

    .values{

        padding:120px 20px 70px;

    }

    .values h1{

        font-size:34px;

        line-height:1.25;

    }

    .values-intro{

        font-size:17px;

        margin-bottom:40px;

    }

    .values-list{

        display:flex;

        flex-direction:column;

        gap:22px;

    }

    .value{

        width:100%;

        padding:28px;

    }

    .value h3{

        font-size:24px;

    }

    .value p{

        font-size:16px;

        line-height:1.8;

    }

    .value-buttons{

        flex-direction:column;

        align-items:center;

        gap:18px;

    }

    .value-buttons .btn,

    .value-buttons .btn-salmon{

        width:100%;

        max-width:320px;

        text-align:center;

    }

}

/* =====================================
   RESPONSIVE 768px
===================================== */

@media (max-width:768px){

    /* HEADER */

    header{
        position:fixed;
    }

    header .container{
        display:flex;
        justify-content:space-between;
        align-items:center;
        height:60px;
        padding:0 18px;
    }

    .logo img{
        height:34px;
        margin-top:0;
    }

    /* HAMBURGER */

    .menu-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

        width:40px;

        height:40px;

        background:none;

        border:none;

        color:#DB6E65;

        font-size:26px;

        cursor:pointer;

    }

    /* MENU */

    nav{

        display:none;

        position:absolute;

        top:60px;

        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        box-shadow:0 10px 25px rgba(0,0,0,.08);

        z-index:999;

    }

    nav.show{

        display:flex;

    }

    nav a{

        width:100%;

        padding:18px 24px;

        border-bottom:1px solid #eee;

        text-align:left;

    }

    .btn-menu{

        border-radius:0;

    }

    /* HERO */

    .hero{

        min-height:100vh;

        height:auto;

        padding:120px 20px 70px;

        background-position:center 18%;

        background-size:cover;

    }

    .hero-content{

        max-width:100%;

        margin:0 auto;

        text-align:center;

    }

    .hero h1{

        font-size:34px;

        line-height:1.2;

        margin-bottom:20px;

    }

    .hero p{

        font-size:17px;

        line-height:1.7;

        margin-bottom:35px;

    }

    .hero-buttons{

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:15px;

    }

    .btn{

        width:100%;

        max-width:320px;

        text-align:center;

    }

}

/* =====================================
   DOBROVOĽNÍCI
===================================== */

@media (max-width:768px){

    #dobrovolnici{

        padding:70px 20px;

    }

    #dobrovolnici h2{

        font-size:34px;

    }

    #dobrovolnici p{

        font-size:17px;

        line-height:1.8;

    }

}

/* =====================================
   RESPONSIVE 480px
===================================== */

@media (max-width:480px){

    .logo img{

        height:30px;

    }

    .hero h1{

        font-size:30px;

    }

    .hero p{

        font-size:16px;

    }

    nav{

        gap:8px;

    }

    nav a{

        font-size:13px;

    }

}

/* =====================================
   O NÁS - HLAVNÁ STRÁNKA (MOBIL)
===================================== */

@media (max-width:768px){

    #onas{

        padding:70px 20px;

    }

    #onas h2{

        font-size:30px;

    }

    #onas p{

        font-size:16px;

        line-height:1.9;

        text-align:center;

    }

    .about-actions{

        margin-top:40px;

    }

    .about-socials{

        margin-top:35px;

    }

}

/* =====================================
   TÍM
===================================== */

@media (max-width:768px){

    .team-grid{

        gap:120px;

    }

    .team-card{

        width:100%;

        max-width:100%;

    }

    .team-photo{

        width:200px;

        height:200px;

    }

    .team-card h3{

        font-size:28px;

    }

    .team-role{

        font-size:16px;

        margin-bottom:25px;

    }

    .team-text p{

        font-size:16px;

        line-height:1.8;

    }

}

/* =====================================
   TRI PILIERE
===================================== */

@media (max-width:768px){

    .cards{

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:30px;

    }

    .card{

        width:100%;

        max-width:360px;

        height:auto;

        min-height:unset;

    }

    .card ul{

        margin-bottom:20px;

    }

}

/* =====================================
   KALENDÁR - MOBIL
===================================== */

@media (max-width:768px){

    .note{

    height:350px;

    background-size:contain;

    background-position:center;

    margin-top:-80px;

    }

    .note-content{

    position:absolute;

    top:110px;

    left:38px;

    width:calc(100% - 76px);

    }

    /* zobraz iba prvú udalosť */

    .event{

        display:none;

    }

    .event:first-child{

        display:block;

        border:none;

        padding:0;

        text-align:center;

    }

    .date{

        display:inline;

        font-size:17px;

        font-weight:600;

        color:#596454;

    }

    .time{

        display:inline;

        font-size:15px;

        font-weight:600;

        color:#596454;

    }

    .time::before{

        content:" | ";

    }

    .title{

        display:block;

        margin-top:6px;

        padding-top:8px;

        border-top:1px solid rgba(89,100,84,.18);

        font-size:20px;

        font-weight:600;

        color:#444;

        text-align:center;

    }

    .calendar-button{

        margin-top:-60px;

        justify-content:center;

        padding-right:0;

    }

}

/* =====================================
   ČASTO KLADENÉ OTÁZKY
===================================== */

@media (max-width:768px){

    .otazky-item{

        margin:14px 0;

    }

    .otazky-item summary{

        font-size:15px;

        padding:18px;

    }

}

/* =====================================
   KONTAKT
===================================== */

@media (max-width:768px){

    .contact-grid{

        display:flex;
        flex-direction:column-reverse;

        gap:45px;

    }

    .contact-info{

        width:100%;
        text-align:center;

        padding:0;

    }

    .contact-info h2{

        text-align:center;

    }

    .contact-info p{

        text-align:center;

    }

    .contact-form{

        width:100%;

        padding:0;

        border:none;

    }

    .contact-form form{

        width:100%;

        max-width:100%;

        transform:none;

        margin:0 auto;

    }

    .socials{

        justify-content:center;

    }

}

/* =====================================
   HODNOTY
===================================== */

@media (max-width:768px){

    .values{

        padding:120px 20px 70px;

    }

    .values h1{

        font-size:34px;

        line-height:1.25;

    }

    .values-intro{

        font-size:17px;

        margin-bottom:40px;

    }

    .values-list{

        display:flex;

        flex-direction:column;

        gap:22px;

    }

    .value{

        width:100%;

        padding:28px;

    }

    .value h3{

        font-size:24px;

    }

    .value p{

        font-size:16px;

        line-height:1.8;

    }

    .value-buttons{

        flex-direction:column;

        align-items:center;

        gap:18px;

    }

    .value-buttons .btn,

    .value-buttons .btn-salmon{

        width:100%;

        max-width:320px;

        text-align:center;

    }

}

/* =====================================
   ROZBAĽOVANIE PROFILOV
===================================== */

.team-toggle{

    display:none;

}

.team-more{

    display:block;

}

@media (max-width:768px){

    .team-toggle{

    display:inline-block;

    margin:0 auto 30px;

    padding:12px 24px;

    background:#73826D;

    color:white;

    border:none;

    border-radius:30px;

    font-size:15px;

    font-family:'Poppins',sans-serif;

    cursor:pointer;

    }

    .team-more{

        display:none;

    }

    .team-more.show{

        display:block;

    }

    .team-motto{

    margin-top:40px;

    padding:30px;

    background:#FFF8F7;

    border-left:5px solid #EFA79A;

    border-radius:15px;

    font-style:italic;

    }

    .team-list{

    margin-top:30px;

    padding-left:22px;

    }

    .team-list li{

    margin-bottom:12px;

    line-height:1.8;

  }

}