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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    font-size:18px;
    line-height:1.8;
    color:#555;
    bbackground:var(--dark);
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ==========================================================
   BAREVNÁ PALETA
========================================================== */

:root{

    --dark:#2e2e2e;
    --gold:#C9A15B;
    --light:#F8F7F4;
    --white:#FFFFFF;
    --text:#555555;

    --container:1280px;

}

/* ==========================================================
   TYPOGRAFIE
========================================================== */

h1,
h2,
h3{
    font-family:"Cormorant Garamond",serif;
    font-weight:600;
    color:var(--dark);
}

h1{

    font-size:5rem;
    line-height:1.05;
    color:#fff;
    margin-bottom:30px;

}

h2{

    font-size:3rem;
    margin-bottom:35px;

}

h3{

    font-size:1.55rem;
    margin-bottom:12px;

}

p{

    margin-bottom:24px;

}

/* ==========================================================
   KONTEJNER
========================================================== */

.container{

    width:min(var(--container),92%);
    margin:0 auto;

}

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

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:88px;

    background:var(--dark);

    z-index:1000;

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

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:100%;

}

/* ==========================================================
   LOGO
========================================================== */

.logo img{

    width:190px;

}

/* ==========================================================
   MENU
========================================================== */

.navigation ul{

    display:flex;

    align-items:center;

    gap:34px;

}

.navigation a{

    color:#ffffff;

    font-size:.92rem;

    font-weight:500;

    text-transform:uppercase;

    letter-spacing:.08em;

    transition:.3s;

}

.navigation a:hover{

    color:var(--gold);

}

.language{

    display:flex;

    align-items:center;

    gap:10px;

}

.language span{

    color:#999;

}

.language .active{

    color:var(--gold);

}

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

.hero{

    min-height:100vh;

    padding-top:88px;

    display:flex;

    align-items:center;

    background-image:url("../images/hero.png");

    background-size:cover;

    background-position:center center;

}

.hero .container{

    display:flex;

    align-items:center;

    height:100%;

}

.hero-content{

    width:46%;

    padding-top:20px;

}

.hero h1{

    max-width:520px;

}

.hero p{

    max-width:520px;

    color:#ffffff;

    font-size:1.18rem;

    line-height:1.8;

    margin-bottom:45px;

}

/* ==========================================================
   TLAČÍTKO
========================================================== */

.button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:17px 34px;

    border:1px solid var(--gold);

    color:#ffffff;

    font-size:.95rem;

    letter-spacing:.05em;

    transition:.35s ease;

}

.button:hover{

    background:var(--gold);

    color:var(--dark);

}

/* ==========================================================
   SPOLEČNÉ ODSAZENÍ SEKCÍ
========================================================== */

section{

    position:relative;

}

.intro,
.home-panels,
.image-row,
.contact{

    padding:120px 0;

}
/* ==========================================================
   ÚVOD
========================================================== */

.intro{

    padding:120px 0;

    text-align:center;

    background:var(--light);

}

.intro h2{

    margin-bottom:35px;

}

.intro p{

    max-width:850px;

    margin:0 auto;

    font-size:1.15rem;

}

/* ==========================================================
   DVA BOXY
========================================================== */

.home-panels{

    padding:0 0 120px;

    background:var(--light);

}

.panels{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    align-items:stretch;

}

.services-panel,
.artfest-panel{

    background:var(--white);

    padding:55px;

    border-radius:12px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

}

.services-panel h2,
.artfest-panel h2{

    margin-bottom:35px;

}

.services-panel ul{

    display:flex;

    flex-direction:column;

    gap:28px;

    margin-top:10px;

}

.services-panel li{

    position:relative;

    padding-left:30px;

    font-size:1.05rem;

}

.services-panel li::before{

    content:"";

    width:8px;
    height:8px;

    border-radius:50%;

    background:var(--gold);

    position:absolute;

    left:0;
    top:13px;

}

.artfest-panel{

    justify-content:space-between;

}

.artfest-panel p{

    margin-bottom:45px;

}

.artfest-panel .button{

    align-self:flex-start;

    color:var(--dark);

}

.artfest-panel .button:hover{

    color:white;

}

/* ==========================================================
   TŘI ILUSTRAČNÍ FOTOGRAFIE
========================================================== */

.image-row{

    padding-bottom:120px;

    background:var(--light);

}

.images{

    display:grid;

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

    gap:30px;

}

.images figure{

    overflow:hidden;

    border-radius:12px;

}

.images img{

    width:100%;

    aspect-ratio:4 / 3;

    object-fit:cover;

    transition:.5s;

}

.images img:hover{

    transform:scale(1.04);

}

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

.contact{

    padding:120px 0;

    background:var(--white);

    text-align:center;

}

.contact p{

    max-width:650px;

    margin:0 auto 30px;

}

.contact-info{

    display:flex;

    justify-content:center;

    gap:100px;

    margin-top:60px;

}

.contact-info p{

    margin:0;

}

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

.footer{

    background:var(--dark);

    color:white;

    padding:60px 0;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-logo{

    width:180px;

}

.footer p{

    margin:0;

    color:#cfcfcf;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:992px){

    .hero-content{

        width:60%;

    }

    .panels{

        grid-template-columns:1fr;

    }

    .contact-info{

        flex-direction:column;

        gap:30px;

    }

}

@media (max-width:768px){

    h1{

        font-size:3rem;

    }

    h2{

        font-size:2.3rem;

    }

    .header .container{

        flex-direction:column;

        gap:25px;

    }

    .navigation ul{

        gap:20px;

        flex-wrap:wrap;

        justify-content:center;

    }

    .hero{

        min-height:80vh;

        background-position:68% center;

    }

    .hero-content{

        width:100%;

    }

    .hero p{

        max-width:100%;

    }

    .images{

        grid-template-columns:1fr;

    }

    .footer-content{

        flex-direction:column;

        gap:30px;

        text-align:center;

    }

}

@media (max-width:480px){

    body{

        font-size:16px;

    }

    .hero{

        min-height:75vh;

    }

    .button{

        width:100%;

        text-align:center;

    }

}