main {
    width: 100%;
    height: 100vh;
    background-color: #000;
    margin-top: 60px;
    background-image: url(../img/website_background.png);
    background-position: center 20%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(14, 11, 26, 0.2);
}

main > * {
    position: relative;
    z-index: 1;
}

main .main-image {
    width: 75vh;
    height: 75vh;
    display: flex;
    justify-content: center;
}

main .main-intro h1 {
    font-size: 96px;
    line-height: 106px;
}

main p {
    font-size: 33px;
    line-height: 42px;
}

main a {
    margin-top: 30px;
    font-family: 'RobotoMedium', sans-serif;
    font-size: 15px;
    display: block;
    background-color: var(--site-color-01);
    padding: 5px 10px;
    width: fit-content;
}

main .main-intro {
    padding-bottom: 15vh;
}

/* CATEGORY SECTION */

.index-category {
    width: 100%;
    padding: 60px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    column-gap: 20px;
    flex-wrap: wrap;
}

.index-category P {
    color: #111;
    text-align: center;
    padding-bottom: 40px;
    flex-basis: 100%;
    font-size: 22px;
    font-family: 'RobotoMedium', sans-serif;
}

.index-category-box {
    width: 200px;
    height: 200px;
    background-color: #111;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.index-category-box:nth-child(1) {
    background-image: url(../img/categories/mixing-mastering.png);
}

.index-category-box:nth-child(2) {
    background-image: url(../img/categories/social-media.png);
}

.index-category-box:nth-child(3) {
    background-image: url(../img/categories/distribution.png);
}

.index-category-box:nth-child(4) {
    background-image: url(../img/categories/streaming.png);
}

.dark-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    transition: all ease-in-out 200ms;
}
.index-category-box:hover .dark-overlay {
    opacity: 0;
}

.index-category-box h3 {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    text-shadow: -2px 2px 4px #000;
    z-index: 100;
}

/* ABOUT SECTION */

.index-about {
    width: 100%;
    padding: 90px 0;
    background-color: rgb(14, 11, 26);
}

.index-about-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 80px;
}

.index-about-img img {
    width: 300px;
    border-radius: 300px;
}

.index-about-text {
    flex-basis: 500px;
}

.index-about-text h2 {
    margin-bottom: 20px;
}

.index-about-text p {
    padding: 0;
    margin-bottom: 28px;
    font-family: 'RobotoMedium', sans-serif;
    color: rgb(199, 199, 199);
    line-height: 1.9;
    font-size: 18px;
}

.index-about-text .about-role-line {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
}

/* Regular inline links in About text */
.index-about-text a:not(.button) {
    color: #d6d6d6;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.index-about-text a:not(.button):hover {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

/* Button */
.index-about-text a.button {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 28px;
    font-family: 'RobotoMedium', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.index-about-text a.button:hover {
    background-color: #fff;
    color: rgb(14, 11, 26);
    transform: translateY(-1px);
}

/* <600px, 601px, 768px, 992px, 1200px */

/* TABLET VERSION */

@media only screen and (max-width: 992px) {

    main {
        width: 100%;
        height: 100vh;
    }
    
    .index-category {
        padding: 40px 0 20px;
        row-gap: 10px;
    }
    
    .index-category P {
        padding-bottom: 20px;
    }

    .index-category-box {
        width: calc(100% - 20px);
        height: 160px;
    }
}


/* MOBILE VERSION */

@media only screen and (max-width: 600px) {
    main {
        width: 100%;
        height: 100vh;
    }
    
    main .main-image {
        width: 55vh;
        height: 55vh;
        display: flex;
        justify-content: center;
    }
 
    main p {
        text-align: center;
        padding: 0 10%
    }
    
    main .main-intro {
        padding-bottom: 15vh;
    }
   
    .index-category {
        padding: 40px 0 20px;
        row-gap: 10px;
    }
    
    .index-category P {
        padding-bottom: 20px;
    }
    
    .index-category-box {
        width: calc(100% - 20px);
        height: 160px;
    }

    .index-about-flex {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .index-about-flex {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .index-about-img {
        width: 80%;

    }
    
    .index-about-img img {
        width: 100%;
    }
   
    .index-about-text {
        flex-basis: 100%;
    }

    .index-about-text h2 {
        text-align: center;
    }
    
    .index-about-text p {
        text-align: center;
        margin: 10px 30px;
    }
    
    .index-about-text a {
            margin: 0 auto;
        }

    }