* {
    margin: 0;
    box-sizing: border-box;
    /* background: #000; */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Times New Roman", Times, serif;
    overflow-x: hidden;
}

nav {
    margin-bottom: 100px;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.menu-container {
    /* max-width: 1440px; */
    /* margin: 0 auto; */
    padding-top: 50px;
    padding-left: 50px;
}

.menu-container,
.social-container {
    position: relative;
    z-index: 1;
}


.menu-container:hover {
    cursor: pointer;
    filter: brightness(90%);
}

.social-container {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: absolute;
    bottom: 50px;
    right: 50px;
}

.social-container a:hover {
    filter: brightness(90%);
}


/* canvs */
.canvas-content {
    display: flex;
    column-gap: 20px;
    font-size: 20px;
    align-items: center;
    line-height: 36px;

}

.canvas-content img {
    height: 555px;
    width: 100%;
    display: block;
    object-fit: cover;
}

.canvas-header-container {
    padding: 2rem 1rem;
    width: 100%;
    /* max-width: 1440px; */
    padding: 0 30px;
    margin: 50px auto;
    padding-left: 50px;

}

.canvas-header {
    font-weight: 700;
    font-size: 75px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.canvas-text {
    padding-left: 5px;
    font-size: 20px;
}

.canvas-center-text {

    font-size: 20px;
    margin: 100px auto;

    line-height: 26px;
    font-weight: 400;

    padding: 2rem 1rem;
    width: 100%;
    /* max-width: 1440px; */
    padding: 0 30px;
    margin: 50px auto;
    padding-left: 50px;

}

.content-bold {
    font-weight: 700;
}


.creator-image-container img {
    width: 678px;
    height: 764px;
    background-repeat: no-repeat;
}

.creator-content {
    display: flex;
    column-gap: 20px;
    align-items: center;
    font-size: 20px;
    line-height: 36px;
}

.creatort-content-header {
    font-weight: 700;
    font-size: 24px;
}

.creator-text {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    /* align-items: center; */
    padding: 0 50px;
    text-align: justify;
}


/* cornerd */
.corner-grid-container {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.2fr 1.5fr 0.5fr 1.1fr 1.2fr 0.7fr 1.1fr 0.9fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1.5fr 1.1fr 0.4fr 1fr;
    gap: 15px 15px;
    grid-auto-flow: row;
    grid-template-areas:
        ". . . . . . . . . ."
        ". . . . . . img7 . . ."
        ". . . . . img6 img7 box_blue . ."
        ". . box_green img3 img3 img6 img7 box_blue img11 ."
        ". img1 img1 img3 img3 img6 image8 image8 img11 ."
        ". img1 img1 image4 image5 image5 image5 image9 box_orange ."
        ". . img2 image4 image5 image5 image5 image10 . ."
        ". . . image4 . . . . . ."
        ". . . . . . . . . .";
    height: 100vh;
}

.box_green {
    grid-area: box_green;
}

.img3 {
    grid-area: img3;
}

.img6 {
    grid-area: img6;
}

.img7 {
    grid-area: img7;
}

.box_blue {
    grid-area: box_blue;
}

.img11 {
    grid-area: img11;
}

.box_orange {
    grid-area: box_orange;
}

.image5 {
    grid-area: image5;
}

.image8 {
    grid-area: image8;
}

.image9 {
    grid-area: image9;
}

.image10 {
    grid-area: image10;
}

.image4 {
    grid-area: image4;
}

.img1 {
    grid-area: img1;
}

.img2 {
    grid-area: img2;
}


/* .corner-grid-container * {
    border: 1px solid red;
    position: relative;
}

.corner-grid-container *:after {
    content: attr(class);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
} */

.corner-grid-container div img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* Optional: Crop to fill if container is fixed size */
}

.corner-green-box {
    width: 100%;
    height: 100%;
    background: #8CC63F;
}

.corner-blue-box {
    width: 100%;
    height: 100%;
    background: #52C1EC;
}

.corner-orange-box {
    width: 100%;
    height: 90%;
    background: #F79520;
}


.corner-coursel-text {
    width: 100%;
    max-width: 1440px;
    margin: 50px auto;
    padding: 0 30px;
    font-size: 20px;
}

.menu-small {
    position: absolute;
    top: 0;
    left: 0;
    /* Slide from the left */
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 2rem 1rem;
    transform: translateX(-100%);
    /* Initially hidden to the left */
    transition: transform 0.3s ease-in-out;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding-left: 110px;
}

.menu-small.active {
    transform: translateX(0%);
}

.close-ham-container {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-top: 50px;
}

.close-ham-container:hover {
    cursor: pointer;
    filter: brightness(90%);
}

.menu-small-item {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 50px;
}

.menu-small-item a {
    font-family: 'Inter', sans-serif;

    text-transform: uppercase;
    font-style: 700;
    color: #fff;
    text-decoration: none;
    font-size: 45px;
    transition: all .3s;
}

.menu-small-item a:hover {
    filter: brightness(90%);
    font-weight: lighter;
}

.canvas,
.creator,
.corner,
.coming-up,
.collective,
.contact-us {
    margin: 100px 0;
}




/* ========== MEDIA QUERIES ========== */

/* Extra Small Devices (phones) */
@media (max-width: 600px) {

    .canvas-content,
    .creator-content {
        flex-direction: column;
        font-size: 16px;
        line-height: 28px;
    }

    .canvas-content img,
    .creator-image-container img {
        height: auto;
        width: 100%;
    }

    .canvas-header {
        font-size: 40px;
    }

    .creator-text {
        padding: 0 20px;
    }

    .menu-small-item a {
        font-size: 30px;
    }

    .corner-grid-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        height: auto;
    }

    .corner-grid-container div img,
    .corner-green-box,
    .corner-blue-box,
    .corner-orange-box {
        height: auto;
        width: 100%;
    }

    .canvas-header-container {
        padding-left: 20px;
        margin: 30px auto;
    }

    .menu-container {
        padding: 20px;
    }

    .social-container {
        bottom: 20px;
        right: 20px;
    }

    .menu-small {
        padding-left: 30px;
    }

    .corner-coursel-text {

        font-size: 17px;
    }

    .canvas-center-text {
        font-size: 20px;
        margin: 100px auto;
        line-height: 26px;
        font-weight: 400;
        padding: 2rem 1rem;
        width: 100%;
        /* max-width: 1440px; */
        padding: 0 20px;
        margin: 20px auto;
        /* padding-left: 50px; */
        text-align: justify;
    }
}

/* Medium Devices (tablets) */
@media (min-width: 601px) and (max-width: 1024px) {

    .canvas-content,
    .creator-content {
        flex-direction: column;
        font-size: 18px;
        line-height: 32px;
    }

    .canvas-content img,
    .creator-image-container img {
        width: 100%;
        height: auto;
    }

    .canvas-header {
        font-size: 50px;
    }

    .canvas-header-container {
        padding-left: 30px;
    }

    .corner-grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-flow: dense;
        height: auto;
    }

    .corner-grid-container div {
        height: auto;
    }

    .menu-small-item a {
        font-size: 35px;
    }

    .menu-container {
        padding-left: 30px;
        padding-top: 30px;
    }

    .social-container {
        bottom: 30px;
        right: 30px;
    }
}

/* Large Devices (desktops and up) */
@media (min-width: 1025px) {

    .canvas-content,
    .creator-content {
        flex-direction: row;
    }

    .canvas-header {
        font-size: 75px;
    }

    .canvas-header-container {
        padding-left: 50px;
    }

    .corner-grid-container {
        display: grid;
        grid-template-columns: 1fr 0.8fr 1.2fr 1.5fr 0.5fr 1.1fr 1.2fr 0.7fr 1.1fr 0.9fr;
        grid-template-rows: repeat(9, 1fr);
        height: 100vh;
    }
}