/* ===== RESET / BASE ===== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

:root {
    --lipink: #F2DAE3;
    --midbrown: #564034;

    --dark: #23160E;
    --darkpink: #E7B6B8;
    --padding-global: 0px 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    line-height: 1.26;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: "Roboto", sans-serif;
    background: var(--midbrown);
    color: var(--darkpink);
    width: 100%;

}



/* ===== MEDIA ===== */

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* ===== FORM ELEMENTS ===== */

input,
button,
textarea,
select {
    font: inherit;
    color: var(--darkpink);
}

/* ===== TYPOGRAPHY ===== */

a{
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

p, ul, li{
    font-size: 21px;
}

h1{
    font-size: 90px;
    font-family: "Vesper Libre", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}

h2{
    font-size: 76px;
    font-family: "Vesper Libre", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}

h3{
    font-size: 50px;
    font-family: "Vesper Libre", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}
h4{
    font-size: 38px;
    font-family: "Vesper Libre", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}



a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

.roboto-var {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.vesper-libre-regular {
  font-family: "Vesper Libre", serif;
  font-weight: 400;
  font-style: normal;
}

.vesper-libre-medium {
  font-family: "Vesper Libre", serif;
  font-weight: 500;
  font-style: normal;
}

.vesper-libre-bold {
  font-family: "Vesper Libre", serif;
  font-weight: 700;
  font-style: normal;
}

.vesper-libre-black {
  font-family: "Vesper Libre", serif;
  font-weight: 900;
  font-style: normal;
}

main {
    position: relative;
    z-index: 1;
}

.bg {
    position: fixed;
    inset: 0;

    background: linear-gradient(
        10deg,
        var(--darkpink) 0%,
        var(--midbrown) 36%,
        var(--midbrown) 80%,
        var(--darkpink) 100%
    );

    background-size: 140% 140%;
    animation: drift 10s ease-in-out infinite alternate;
}

@keyframes drift {
    0% { background-position: 0% 50%; background-size: 120% 130%; }
    100% { background-position: 100% 50%; background-size: 200% 130%; }
}

#grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: soft-light;
    width: 100%;
    height: 100%;
}

header{
    display: flex;
    position: fixed;
    width: 100vw;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding-global);
    padding-top: 20px;
    z-index: 20;
}

header img{
    height: 50px;
    width: 50px;
}

.nav-box{
    display: flex;
    flex-wrap: nowrap;
    column-gap: 20px;
    font-size: 28px;
}

.nav-box a{
    text-decoration: none;
    cursor: pointer;
}
.nav-box a:hover{
    text-decoration: underline 2px;
}

.query-logotype{
    display: none;
}

main{
    padding: var(--padding-global);
}

section{
    width: 100%;
}

#hero{
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
}

/* LEFT LOGO */
.hero-logo{
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: 100%;
    height: auto;
    object-fit: contain;
    align-self: center;
}

/* RIGHT BLOCK */
.hero-logotype-box{
    grid-column: 2 / 7;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 30px;
    height: calc((100vw - 200px) / 6 );

    align-self: center;
}

/* TOP CONTENT */
.logotype-desc-box{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: end;
}

/* LOGOTYPE IMAGE */
.hero-logotype{
    width: 20vw;
}

/* CTA */
.cta-hero{
    display: flex;
    align-items: end;
}

.btn{
    background-color: transparent;
    border: 2px var(--darkpink) solid;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 16px;
    transition: all 0.15s ease-in-out;
}

.btn:hover{
    background-color: var(--darkpink);
    color: var(--dark);
}

.scroll-cta{
    display: flex;
    column-gap: 20px;
    grid-column: 1 / 7;
    grid-row: 3 / 4;
    align-self: flex-end;
    padding-bottom: 20px;
}

.big-divider{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    height: auto;
    margin: 100px 0px;
}

.big-divider img:nth-child(1){
    grid-column: 1 / 2;
}
.big-divider img:nth-child(2){
    grid-column: 3 / 4;
    transform: rotate(180deg);
}
.big-divider img:nth-child(3){
    grid-column: 5 / 6;
    transform: rotate(180deg);
}
.big-divider img:nth-child(4){
    grid-column: 6 / 7;
}

.p-line{
    width: 100%;
    height: 2px;
    background-color: var(--darkpink);
}

.program-day{
    display: flex;
    flex-direction: column;
    align-items: start;
}

.date-box{
    display: flex;
    color: var(--midbrown);
    background-color: var(--darkpink);
    padding: 20px 20px 10px 20px;
    align-items: center;
    justify-content: start;
    column-gap: 20px;
    width: auto;
    border-radius: 10px 10px 0px 0px;
}

.event-container{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    padding: 100px 0px;
    border-bottom: 2px var(--darkpink) solid;
    height: auto;
    width: 100%;

}

.undertitle{
    font-size: 21px;
    font-family: "Roboto", sans-serif;
    text-transform: none;
}

.time-icon{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: 1 / 3;
    min-height: 300px;
}

.event-icon{
    width: 200px;
}

.event-info-box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: 3 / 7;
}

.event-desc-p{
    width: 70%;
}

.event-title-box{
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.event-title-box h3{
    text-transform: uppercase;
}

.event-location{
    display: flex;
    column-gap: 10px;
    align-items: center;
    text-wrap-mode: nowrap;
}

.divider-pattern{
    width: 100%;
    height: auto;
    margin: 100px 0px;
}

.exhibition-info{
    border-bottom: 2px var(--darkpink) solid;
    padding-bottom: 20px;
    margin-bottom: 25px;
    width: 100%;
}

.eloadas{
    justify-content: start;
}

.eloadas h4:nth-child(1){
    width: 160px;
}

footer{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.footer-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav{
    display: flex;
    column-gap: 20px;
    font-size: 21px;
}

.uni-logos{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
    height: auto;
    padding: 100px 0px;
    width: 100%;
}

.uni-logos img{
    height: 60px;
}


/* ALOLDALAK */

.whitespace-page{
    height: 30vh;
}

.cimek-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0px;
    text-align: center;
    margin-bottom: 50px;
}

.felhivas-p-box{
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    padding: 0px 40px;
    text-align: justify;
}

b{
    font-weight: 800;
}


/* MEDIA QUERY */

@media screen and (max-width: 1100px) {
    
    .nav-box{
        font-size: 21px;
    }

    .event-icon{
        display: none;
    }

    .time-icon{
        min-height: auto;
        height: auto;
        padding: 20px 0px;
    }

    .event-container{
        display: flex;
        flex-direction: column;
        padding: 50px 0px;
    }

    .uni-logos{
        justify-content: start;
        padding: 40px 0px;
    }

    .uni-logos img{
    height: 40px;
    }

    .footer-box{
        align-items: start;
    }

    .footer-nav{
        flex-direction: column;
        align-items: end;
        row-gap: 10px;
    }

    .hero-logotype-box{
        grid-column: 1 / 7;
        align-self: center;
        width: auto;
        padding-left: 0px;
        justify-self: center;
    }

    .hero-logo{
        display: none;
    }

    .hero-logotype{
        display: none;

    }

    .query-logotype{
        display: block;
        width: 400px;
    }

    .logotype-desc-box{
        flex-direction: column;
        align-items: start;
        row-gap: 20px;
        margin-top: -50px;

    }

    .cta-hero{
        margin-top: 20px;
    }

    h2{
        font-size: 50px;
    }

    /* ALOLDAL QUERY */

    .felhivas-p-box{
        padding: 0px;
    }

        .whitespace-page{
        height: 160px;
    }


}

@media screen and (max-width: 768px) {

    :root {
    --padding-global: 0px 50px;
}
    .event-desc-p{
        width: 100%;
    }

    p, li, ul{
        font-size: 16px;
    }

    h1{
        font-size: 50px;
    }

    h2{
        font-size: 38px;
    }

    h3{
        font-size: 38px;
    }

    h4{
        font-size: 28px;
    }

    .event-title-box{
        flex-direction: column;
        margin-bottom: 10px;
    }

    .uni-logos{
        justify-content: center;
        flex-wrap: wrap;
        padding: 40px 0px;
        row-gap: 20px;
    }

    .eloadas h4{
        margin-bottom: 10px;
    }

    .date-box img{
        width: 28px;
    }

         .logotype-desc-box{
        margin-top: -60px;
    }

    .whitespace-page{
        height: 110px;
    }
}


@media screen and (max-width: 576px) {

    :root {
    --padding-global: 0px 50px;
}

    header{
        justify-content: center;
    }

    header img{
        display: none;
    }
    .nav-box{
        font-size: 16px;
    }
    .event-desc-p{
        width: 100%;
    }

    .event-container{
        padding: 0px 0px 20px 0px;
    }

    p{
        font-size: 16px;
    }

    h2{
        font-size: 28px;
    }

    h3{
        font-size: 38px;
    }

    h4{
        font-size: 28px;
    }

    .event-title-box{
        flex-direction: column;
        margin-bottom: 10px;
    }

    .uni-logos{
        justify-content: center;
        flex-wrap: wrap;
        padding: 40px 0px;
        row-gap: 20px;
    }

    .footer-nav{
        display: none;
    }

    h4{
        margin-bottom: 10px;
    }

     .logotype-desc-box{
        margin-top: -80px;
    }

    .felhivas-p-box{
        text-align: left;
    }

    .cimek-box{
        text-align: left;
    }

    .cimek-box p{
        text-align: left;
        margin-top: 20px;
    }
}


@media screen and (max-width: 480px) {

    :root {
    --padding-global: 0px 25px;
    }

    .date-box{
        width: 100%;
        justify-content: center;
    }

    .date-box img{
        display: none;
    }

    .logotype-desc-box{
        margin-top: -120px;
    }

}
