@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/marcellus/v14/wEO_EBrOk8hQLDvIAF8FUQ.ttf) format('truetype');
}
:root{
    --green:#2d6a4f;
    --green2:#40916c;
    --red:#c1121f;
    --light:#fffdf8;
    --dark:#1f2937;
    --gold:#d4a373;
    --gray:#f3f4f6;
}

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

body{
    min-width : 1400px;
    font-family:'Inter',sans-serif;
    background:var(--light);
    color:var(--dark);
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

h1,h2,h3{
    font-family:'Marcellus',serif;
}

a{
    text-decoration:none;
}

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.7);
    backdrop-filter:blur(10px);
    border-bottom:0px;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-text{
    font-weight:700;
    font-size:18px;
    line-height:1.2;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    color:var(--dark);
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:var(--red);
}

.hero{
/*    min-height:100vh; */
    background:
        url('/img/bg-cz.png');
  background-repeat: no-repeat;
  background-size: 1500px 500px;
    background-position:center;
    display:flex;
    height:720px;
    align-items:center;
    position:relative;
}

.hero:after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:12px;
}

.hero-content{
    color:white;
    max-width:840px;
}


.hero-title{
    font-size:50px;
    margin-bottom:24px;
    display:flex;
    align-items:center;
    flex-direction:column;
    line-height:1.1;
/*    opacity:.95; */
}

.hero-title span{
    display:block;
}

.line-white{
    color:white;
}

.line-green{
    color:#37ff00;
}

.line-red{
    color:red;
}

.hero p{
    font-size:22px;
    margin-bottom:35px;
/*    opacity:.95; */
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    padding:15px 28px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:var(--red);
    color:white;
}

.btn-primary:hover{
    background:#9b0d18;
}

.btn-secondary{
    background:white;
    color:var(--dark);
}

.btn-secondary:hover{
    background:#eee;
}

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:14px;
    color:var(--green);
}

.section-title p{
    color:#666;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-image img{
    width:100%;
    display:block;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
}

.card{
    background:white;
    border-radius:22px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    border-top:5px solid var(--green);
}

.card:hover{
    transform:translateY(-6px);
}

.card h3{
    margin-bottom:16px;
    color:var(--red);
}

.events{
    background:var(--gray);
}

.event-item{
    background:white;
    padding:28px;
    border-radius:18px;
    margin-bottom:22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.date{
    background:var(--green);
    color:white;
    padding:14px 18px;
    border-radius:12px;
    font-weight:700;
    min-width:110px;
    text-align:center;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

.cta{
    background:
    linear-gradient(135deg,var(--green),var(--green2));
    color:white;
    text-align:center;
}

.cta h2{
    font-size:48px;
    margin-bottom:20px;
}

footer{
    background:#111827;
    color:#d1d5db;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    margin-bottom:50px;
}

footer h3{
    margin-bottom:18px;
    color:white;
}

footer ul{
    list-style:none;
}

footer li{
    margin-bottom:10px;
}

footer a{
    color:#d1d5db;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    text-align:center;
    font-size:14px;
}

@media(max-width:900px){

    .hero h1{
        font-size:44px;
    }

    nav{
        display:none;
    }

    .about-grid{
        grid-template-columns:1fr;
    }
}
