/* *{
    box-sizing: border-box;
    border:1px solid red!important; 
    } */



@charset 'UTF-8';

/*
COLORS
================================================ */
:root {
    --text: #333;
    --bg: #fff;
    --video-opacity: .5;
}
@media (prefers-color-scheme: dark) {
    :root {
        --text: #ddd;
        --bg: #000;
        --video-opacity: .7;
    }
}


/*
GENERAL STYLING
================================================ */
html {
    font-size: 100%;
}
body {
	color: var(--text);
    background: var(--bg);
    /*font-family: 'Bree Serif', sans-serif;*/
    font-family: 'Noto Sans KR', sans-serif;
    transition: .5s;
}

/*
COMMON
================================================ */
p {
    line-height: 1.7;
}
img {
    max-width: 100%;
}
a:hover {
    color: #0bd;
}

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

/*
GRID
================================================ */
.grid {
    width: 94vw;
    margin: 0 auto 3vw;
    display: grid;
    gap: 2vw;
    grid-template-columns: repeat(2, 46vw); /* (94 - 2) / 2 */
    grid-template-rows: repeat(3, 46vw); /* repeat(8, 46vw); */
}
.grid-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /*filter: grayscale(100%);*/
}
.grid-big-top {
    grid-column: 1/3;
    grid-row: 2/3;
}
.grid-big-bottom {
    grid-column: 1/3;
    grid-row: 6/7;
}

/*
FOOTER
================================================ */
footer {
    text-align: center;
    padding-bottom: 3rem;
    padding: 3rem;  
}
.footer-link {
    margin-bottom: .5rem;
}
.contact {
    width: 270px;
    display: block;
    margin: auto;
    
    /*background-color:#5d5d5d;*/
    background: linear-gradient(135deg,#5bceeb,#37143a);
    color: #fff;
    
}




/*
LIGHTBOX LUMINOUS
================================================ */
.lum-lightbox.lum-open {
    z-index: 4;
}
.lum-lightbox-inner img {
    max-width: 120vw;
    max-height: 80vh;
}

/*
DESKTOP SIZE
================================================ */
@media (min-width: 600px) {
/* Header */
    .main-name {
        font-size: 5rem;
    }
/* Grid */
    .grid {
        width: 80vw;
        gap: 1vw;
        grid-template-columns: repeat(3, 26vw); /* (80 - 2) / 3 */
        grid-template-rows: repeat(2, 26vw); /*  repeat(5, 26vw); */
    }
    .grid-big-bottom {
        grid-column: 2/4;
        grid-row: 4/5;
    }
    .grid-item {
        transition: .3s;
    }
    .grid-item:hover {
        filter: grayscale(0);
        box-shadow: 0 0 2rem rgba(0, 0, 0, .5);
        transform: scale(1.1);
        z-index: 3;
        position: relative;
    }
}





/* project */

.introduction {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;

    padding: 3rem;  
    text-align: center;
    /*color: #000;*/
}

.introduction-title {
    font-size: 3rem;
    font-weight: 700;
}

.introduction-sub {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 30px;
}

.introduction-text {
    font-size: 1rem;
    font-weight: 300;
}

.video{
    padding: 0rem 3rem;  
}

/*.youtube {
    padding: 3rem;  
}*/


.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } 
.embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/* gallery */
.curation {
    padding: 3rem;  
    text-align: center;
    /*color: #000;*/
}

.curation-title {
    font-size: 3rem;
    font-weight: 700;
}

.curation-sub {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 30px;
}

.curation-text {
    font-size: 0.85rem;
    font-weight: 300;
}



/* home */

#home {
    position: relative;
    margin-bottom: .5rem;
}
.main {
    background-color: var(--light-blue);
    background-image: url('../images/skycanvas.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: screen; 
    /* animation: bg-color 24s infinite; */
    height: 65vh;
    position: static;
    display: flex;
    align-items: center;
    /* -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); */
    /* clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);*/
    
    /*position: absolute;*/
    top: 0;
    /*display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    text-align: center;
}

.main-title {
    font-size: 1.7rem;
    font-weight: 700;
    z-index: 3;
    color: #fff;

    padding: 0 1rem;
}
.main-name {
    font-size: 3.7rem;
    margin-bottom: 1rem;
    font-weight: 700;
    z-index: 3;
    color: #fff;

    padding: 0 1rem;
}

.main-pattern {
    position: absolute;
    z-index: 2;
    background-size: auto auto;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, var(--bg) 2px, var(--bg) 4px );
}

/*.video {
    object-fit: cover;
    object-position: center top;
    opacity: var(--video-opacity); 
}*/


.main,
.main-pattern,
 {
    width: 100vw;
    height: 90vh;
}


