body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #F8F7F6;
}


/* ----- */
/* GLOBAL STYLES */
/* ----- */

a {
    color: #D55201;
}

a:hover {
    text-decoration: none;
}

.divider {
    margin: 100px 200px 100px 80px;
    height: 1px;
    background-color: #aa918b;
    border: none;
}

.arrow {
    font-family: 'Noto Sans JP', serif;
    font-size: 23px;
    font-weight: 800;
    color: #9e938d;
    margin: 0px 10px 0px 0px;
}

.arrow_small {
    font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: 300;
    offset: 10px;
    color: #D55201;
    margin: 0px 10px 0px 0px;
}


/* ----- */
/* HEADER */
/* ----- */

.index_header_container {
    display: flex;
    flex-wrap: no-wrap;
    flex-direction: row;
    justify-content: flex-start;
    width: auto;
    margin: 0px 0px 0px 80px;
}

.header_hr {
    margin: 102px 13px 0px 15px;
    height: 4px;
    background-color: #dfd5d3;
    border: none;
    width: 40px;
}

.logo {
    border: none;
    transition: filter 0.3s ease; 
    margin: 82px 0px 0px 0px;
    width: 45px;
    height: 45px;
}

.index_title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 37px;
    font-weight: 500;
    color: #9e938d;
    letter-spacing: -0.03em;
    display: flex;
    justify-content: flex-start;
    margin: 80px 0px 0px 0px;
}

.index_summary {
    font-family: 'Roboto Condensed', sans-serif; 
    font-size: 80px;
    font-weight: 300;
    color: #000000;
    line-height: 77px;
    margin: 100px 230px 0px 80px;
    width: auto;
}


/* ----- */
/* EXPERIENCE SECTION */
/* ----- */

.experience_container {
    display: flex;
    flex-direction: row;
    flex-wrap: no-wrap;
    width: auto;
    margin: 0px 200px 50px 80px;
}

.experience_container_left {
    display: flex;
    flex-direction: column;
    width: 470px;
    margin: 0px 50px 0px 0px;
}

.experience_container_right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 450px;
}

.experience_title {
    font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', Times, serif;
    font-size: 25px;
    font-weight: 400;
    color: #000000;
    margin: 0px 0px 20px 0px;
    width: auto;
}

.experience_role {
    font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', Times, serif;
    font-weight: 300; /* Font weight */
    font-size: 18px; /* Font size */
    color: #353330; /* Text color */
    line-height: 28px; /* Line spacing */
    width: auto;
    margin: 0px 0px 10px 0px;
}

.experience_summary {
    font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', Times, serif;
    font-weight: 300; /* Font weight */
    font-size: 18px; /* Font size */
    color: #353330; /* Text color */
    line-height: 28px; /* Line spacing */
    width: auto;
    margin: 0px 0px 50px 0px;
}

.experience_previews_container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 450px;
    height: 350px;
    border-radius: 15px;
    background: #917f75;
    margin: 0px 0px 0px 0px;
}

.experience_image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 10px 10px 10px 10px;
}


/* ----- */
/* CAROUSELS */
/* ----- */

.carousel-container {
    width: 450px;
    height: 310px;
    background-color: #917f75;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 300px;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide img {
    width: 430px;
    height: 250px;
    object-fit: cover;
    margin: 10px 10px 10px 10px;
    border-radius: 10px;
    border: 7px solid #aea09e;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border: 1px solid #dfd5d3;
    border-radius: 10px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background-color: transparent;
}

.carousel-dot.active {
    background-color: #dfd5d3;
}

.carousel-button {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    color: white;
    font-size: 20px;
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-container:hover .carousel-button {
    display: block;
}


/* ----- */
/* QUOTE */
/* ----- */

.quote_big {
    font-family: 'Roboto Condensed', sans-serif; 
    font-weight: 300; /* Font weight */
    font-size: 40px; /* Font size */
    color: #353330; /* Text color */
    line-height: 43px; /* Line spacing */
    width: auto;
    text-align: center; /* Center text */
    align-items: center; /* Center items vertically */
    margin: 0px 300px 50px 170px;
}

.quote_big_header {
    font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', Times, serif;
    font-weight: 700; /* Font weight */
    font-size: 15px; /* Font size */
    color: #D55201; /* Text color */
    text-align: center; /* Center text */
    align-items: center; /* Center items vertically */
    margin: -15px 270px 50px 150px;
} 


/* ----- */
/* ABOUT ME */
/* ----- */

.about_me_container {
    display: flex;
    flex-direction: row;
    flex-wrap: no-wrap;
    width: auto;
    margin: 0px 200px 0px 80px;
}

.about_me_divider {
    width: 1px;
    height: 500px;
    margin: 0px 10px 50px 30px;
}

.about_me_container_left {
    display: flex;
    flex-direction: column;
    width: auto;
    margin: 0px 50px 0px 0px;
}

.about_me_container_right {
    display: flex;
    flex-direction: column;
    width: 400px;
    margin: 0px 50px 0px 0px;
}


/* ----- */
/* PHOTO CARDS */
/* ----- */

.card-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 400px;
    margin: 0px 0px 0px 0px;
}
.card-1 {
    max-width: 250px;
    border: 10px solid white;
    border-radius: 15px;
    margin: 0; /* Remove margin to allow overlapping */
    position: absolute; /* Use absolute positioning for overlap */
    transition: 0.2s ease-out; /* Transition for hover effect */
    rotate: 0deg;
    transform: translate(0px, 0px);
}
.card-2 {
    max-width: 250px;
    border: 10px solid white;
    border-radius: 15px;
    margin: 0; /* Remove margin to allow overlapping */
    position: absolute; /* Use absolute positioning for overlap */
    transition: 0.2s ease-out; /* Transition for hover effect */
    rotate: 10deg;
    transform: translate(50px, 0px);
}
.card-3 {
    max-width: 250px;
    border: 10px solid white;
    border-radius: 15px;
    margin: 0; /* Remove margin to allow overlapping */
    position: absolute; /* Use absolute positioning for overlap */
    transition: 0.2s ease-out; /* Transition for hover effect */
    rotate: 20deg;
    transform: translate(100px, 0px);
}
.card-container:hover .card-1 {
    rotate: 5deg;
    transform: translate(0px, 0px);
}
.card-container:hover .card-2 {
    rotate: 20deg;
    transform: translate(50px, 0px);
}
.card-container:hover .card-3 {
    rotate: 35deg;
    transform: translate(100px, 0px);
}
.card-1 img {
    width: 100%;
    height: auto;
}
.card-2 img {
    width: 100%;
    height: auto;
}
.card-3 img {
    width: 100%;
    height: auto;
}





/* ---------------------------------------------------------------------------------------------------- */
/* ----- */
/*  MOBILE VIEWS */
/* ----- */


@media (max-width: 768px) {


    /* ----- */
    /* GLOBAL STYLES */
    /* ----- */

    a {
        color: #D55201;
    }
    
    .divider {
        margin: 40px 55px 40px 30px;
        height: 1px;
        background-color: #aa918b;
        border: none;
    }
    
    .arrow {
        font-family: 'Noto Sans JP', serif;
        font-size: 20px;
        font-weight: 800;
        color: #9e938d;
        margin: 0px 10px 0px 0px;
    }

    .arrow_small {
        font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', Times, serif;
        font-size: 20px;
        font-weight: 300;
        offset: 10px;
        color: #D55201;
        margin: 0px 10px 0px 0px;
    }


    /* ----- */
    /* HEADER */
    /* ----- */

    .index_header_container {
        display: flex;
        flex-wrap: no-wrap;
        flex-direction: row;
        justify-content: flex-start;
        width: auto;
        margin: 0px 0px 0px 30px;
    }
    
    .header_hr {
        margin: 55px 13px 0px 15px;
        height: 4px;
        background-color: #dfd5d3;
        border: none;
        width: 25px;
    }
    
    .logo {
        border: none;
        transition: filter 0.3s ease; 
        margin: 42px 0px 0px 0px;
        width: 30px;
        height: 30px;
    }
    
    .index_title {
        font-family: 'Hanken Grotesk', sans-serif;
        font-size: 28px;
        font-weight: 500;
        color: #9e938d;
        letter-spacing: -0.03em;
        display: flex;
        justify-content: flex-start;
        margin: 38px 0px 0px 0px;
    }
    
    .index_summary {
        font-family: 'Roboto Condensed', sans-serif; 
        font-size: 46px;
        font-weight: 300;
        color: #000000;
        line-height: 46px;
        margin: 40px 50px 0px 30px;
        width: auto;
    }


    /* ----- */
    /* EXPERIENCE SECTION */
    /* ----- */

    .experience_container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: auto;
        margin: 0px 20px 50px 30px;
    }

    .experience_container_left {
        display: flex;
        flex-direction: column;
        width: auto;
        margin: 0px 50px 0px 0px;
    }

    .experience_container_right {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 375px;
    }

    .experience_title {
        font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', Times, serif;
        font-size: 21px;
        font-weight: 400;
        color: #000000;
        margin: 0px 0px 20px 0px;
        width: auto;
    }

    .experience_role {
        font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', Times, serif;
        font-weight: 300; /* Font weight */
        font-size: 17px; /* Font size */
        color: #353330; /* Text color */
        line-height: 24px; /* Line spacing */
        width: auto;
        margin: 0px 0px 10px 0px;
    }

    .experience_summary {
        font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', Times, serif;
        font-weight: 300; /* Font weight */
        font-size: 17px; /* Font size */
        color: #353330; /* Text color */
        line-height: 26px; /* Line spacing */
        width: auto;
        margin: 0px 0px 30px 0px;
    }

    .experience_previews_container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 450px;
        height: 310px;
        border-radius: 15px;
        background: #917f75;
        margin: 0px 0px 0px 0px;
    }

    .experience_image {
        width: 100%;
        height: auto;
        border-radius: 15px;
        margin: 10px 10px 10px 10px;
    }



    /* ----- */
    /* CAROUSELS */
    /* ----- */

    .carousel-container {
        width: 375px;
        height: 260px;
        background-color: #917f75;
        border-radius: 15px;
        position: relative;
        overflow: hidden;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        height: 300px;
    }

    .carousel-slide {
        min-width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .carousel-slide img {
        width: 355px;
        height: 208px;
        object-fit: cover;
        margin: 10px 10px 10px 10px;
        border-radius: 10px;
    }

    .carousel-nav {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border: 1px solid #dfd5d3;
        border-radius: 10px;
        padding: 0;
        margin: 0;
        cursor: pointer;
        background-color: transparent;
    }

    .carousel-dot.active {
        background-color: #dfd5d3;
    }

    .carousel-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.3);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: none;
        color: white;
        font-size: 20px;
    }

    .carousel-button.prev {
        left: 20px;
    }

    .carousel-button.next {
        right: 20px;
    }

    .carousel-container:hover .carousel-button {
        display: block;
    }



    /* ----- */
    /* QUOTE */
    /* ----- */

    .quote_big {
        font-family: 'Roboto Condensed', sans-serif; 
        font-weight: 300; /* Font weight */
        font-size: 30px; /* Font size */
        color: #353330; /* Text color */
        line-height: 33px; /* Line spacing */
        width: auto;
        text-align: left; /* Center text */
        align-items: center; /* Center items vertically */
        margin: 0px 30px 50px 30px;
    }

    .quote_big_header {
        font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', Times, serif;
        font-weight: 700; /* Font weight */
        font-size: 13px; /* Font size */
        color: #D55201; /* Text color */
        text-align: left; /* Center text */
        align-items: center; /* Center items vertically */
        margin: 0px 30px 25px 30px;
    } 



    /* ----- */
    /* ABOUT ME */
    /* ----- */

    .about_me_container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: auto;
        margin: 0px 30px 0px 30px;
    }

    .about_me_divider {
        display: none;
    }

    .about_me_container_left {
        display: flex;
        flex-direction: column;
        width: auto;
        margin: 0px 50px 0px 0px;
    }

    .about_me_container_right {
        display: none;
    }


    /* ----- */
    /* PHOTO CARDS */
    /* ----- */

    .card-container {
        position: relative;
        display: flex;
        justify-content: center;
        width: 400px;
        margin: 0px 0px 0px -50px;
    }
    .card-1 {
        max-width: 250px;
        border: 10px solid white;
        border-radius: 15px;
        margin: 0; /* Remove margin to allow overlapping */
        position: absolute; /* Use absolute positioning for overlap */
        transition: 0.2s ease-out; /* Transition for hover effect */
        rotate: 0deg;
        transform: translate(0px, 0px);
    }
    .card-2 {
        max-width: 250px;
        border: 10px solid white;
        border-radius: 15px;
        margin: 0; /* Remove margin to allow overlapping */
        position: absolute; /* Use absolute positioning for overlap */
        transition: 0.2s ease-out; /* Transition for hover effect */
        rotate: 10deg;
        transform: translate(50px, 0px);
    }
    .card-3 {
        max-width: 250px;
        border: 10px solid white;
        border-radius: 15px;
        margin: 0; /* Remove margin to allow overlapping */
        position: absolute; /* Use absolute positioning for overlap */
        transition: 0.2s ease-out; /* Transition for hover effect */
        rotate: 20deg;
        transform: translate(100px, 0px);
    }
    .card-container:hover .card-1 {
        rotate: 5deg;
        transform: translate(0px, 0px);
    }
    .card-container:hover .card-2 {
        rotate: 20deg;
        transform: translate(50px, 0px);
    }
    .card-container:hover .card-3 {
        rotate: 35deg;
        transform: translate(100px, 0px);
    }
    .card-1 img {
        width: 100%;
        height: auto;
    }
    .card-2 img {
        width: 100%;
        height: auto;
    }
    .card-3 img {
        width: 100%;
        height: auto;
    }

}