@font-face {
    font-family: "Suisse Intl";
    font-weight: 400;
    src: url("./assets/fonts/Suisse_Intl_Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Suisse Intl";
    font-weight: 300;
    src: url("./assets/fonts/Suisse_Intl_Light.ttf") format("truetype");
}

@font-face {
    font-family: "Suisse Intl";
    font-weight: 500;
    src: url("./assets/fonts/Suisse_Intl_Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Suisse Intl";
    font-weight: 600;
    src: url("./assets/fonts/Suisse_Intl_Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Suisse Intl";
    font-weight: 700;
    src: url("./assets/fonts/Suisse_Intl_Book.ttf") format("truetype");
}

@font-face {
    font-family: "Suisse Intl Condensed";
    src: url("./assets/fonts/Suisse_Intl_Mono.ttf") format("truetype");
}

a {
    height: fit-content;
    text-decoration: none;   /* Removes underline */
    color: inherit;          /* Resets the color to inherit from parent */
    background: none;        /* Removes any background color */
    border: none;            /* Removes any borders */
    padding: 0;              /* Removes any padding */
    margin: 0;               /* Removes any margin */
    font-weight: inherit;    /* Resets font weight */
    font-size: inherit;      /* Resets font size */
    font-family: inherit;    /* Resets font family */
    line-height: normal;     /* Resets line-height to avoid extra spacing */
    outline: none;           /* Removes focus outline */
    display: inline;         /* Ensure it's inline unless you need block behavior */
}

a:hover, a:focus, a:active {
    text-decoration: none;  /* Ensures no underline on hover, focus, or active states */
    color: inherit;         /* Ensures the color doesn’t change */
    background: none;
    border: none;
    outline: none;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    font-family: 'Suisse Intl', sans-serif; /* Default font for body */
}

.content-area {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    right: 0;
    transition: right 0.5s ease-in-out;
    z-index: 0;
}

.content-area.menu-open {
    right:50%;
    
}

#menu {
    position: absolute;
    width: 50%;
    height: 100%; /* Limit menu height to the viewport */
    background-color: #ffffff;
    right: 0;
    top: 0;
    z-index: 1;
    transition: right 0.5s ease-in-out, background-color 0.1s ease-in-out;
    padding-top: calc(300 / 1920 * 100vw);
    padding-bottom: 100px;
    box-sizing: border-box;
    overflow-y: auto; /* Allow scroll only within the menu */
    overflow-x: hidden; /* Prevent horizontal scroll */
    display: flex;
    flex-direction: column;
    max-height: 100vh;
}

.menu-item-container {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    padding-left: calc(50 / 1920 * 100vw);
    font-family: 'Suisse Intl';
    font-weight: 300;
    font-size: 50px;
    position: relative;
    cursor:pointer;
    color: #1e1e1e;
}

.menu-item-container-divider {
    width: 100%;
    height: 0;
    border-top: 1px solid #1e1e1e;
    position: absolute; 
    bottom: 1px;
}

#menu.hidden {
    right: -50%;
}

#hamburger {
    position: fixed;
    z-index: 2;
    width: calc(58 / 1920 * 100vw);
    height: calc(58 / 1920 * 100vw);
    background-image: url("./assets/images/hamburger.png");
    background-repeat: no-repeat;
    background-size: contain;
    top: 20px;
    right: 20px;
    transition: transform 0.5s ease-in-out, filter 0.2s ease-in-out;
}

#hamburger.open {
    /* filter:invert(); */
    transform: rotate(-90deg);
    filter: none;
}
.tagbox {
    border-radius: calc(18.3 / 1920 * 100vw) ;
    padding: calc(4.39/ 1920 * 100vw) calc(23.43 / 1920 * 100vw) calc(4.39/ 1920 * 100vw) calc(23.43 / 1920 * 100vw) ;
    font-family: 'Suisse Intl Condensed';
    font-size: calc(18.3 / 1920 * 100vw) ;
    letter-spacing: -0.01em;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: calc(18.3 / 1920 * 100vw);
    height: calc(37.33 / 1920 * 100vw);
    cursor: pointer;
}

#hero {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
}

#hero #hero-logo {
    width: calc(179.63 / 1920 * 100vw) ;
    position: absolute;
}

#hero #hero-bottom-left {
    position: absolute;
    left: 50px;
    bottom: 50px;
}

#hero #hero-bottom-right {
    position: absolute;
    right: 50px;
    bottom: 50px;
}

#hero #hero-bottom-left img, #hero #hero-bottom-right img {
    width: calc(39 / 1920 * 100vw) ;
}

#hero #hero-bottom-left #hero-intro{
    width: calc(609 / 1920 * 100vw) ;
    height: calc(96 / 1920 * 100vw) ;
    font-family: 'Suisse Intl';
    color: #ffffff;
    margin-top: calc(20 / 1920 * 100vw) ;
    line-height: calc(32.43 / 1920 * 100vw) ;
    font-size: calc(25 / 1920 * 100vw) ;
    font-weight: 300;
    letter-spacing: 0.01em;
}

#hero #hero-bottom-right #hero-intro {
    width: calc(609 / 1920 * 100vw) ;
    height: calc(48 / 1920 * 100vw) ;
    font-family: 'Suisse Intl';
    color: #ffffff;
    margin-top: calc(20 / 1920 * 100vw) ;
    line-height: calc(32.43 / 1920 * 100vw) ;
    font-size: calc(25 / 1920 * 100vw) ;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-align: right;
}

#hero #hero-bottom-left #hero-tag-boxes {
    display: flex;
    flex-direction: row;
    margin-top: calc(20 / 1920 * 100vw) ;
    gap: calc(10 / 1920 * 100vw) ;
}

#hero #hero-bottom-right #hero-tag-boxes  {
    display: flex;
    flex-direction: row;
    margin-top: calc(20 / 1920 * 100vw) ;
    gap: calc(10 / 1920 * 100vw) ;
    justify-content: right;
}

#hero #hero-bottom-left #hero-tag-boxes .tagbox, #hero #hero-bottom-right #hero-tag-boxes .tagbox  {
    background-color: #545454;
    color: #ffffff;
    
}

#hero #hero-bottom-left #hero-tag-boxes .tagbox img, #hero #hero-bottom-right #hero-tag-boxes .tagbox img {
    width: calc(120 / 1920 * 100vw) ;
    
}

#section2 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: calc(200 / 1920 * 100vw) calc(234 / 1920 * 100vw) calc(200 / 1920 * 100vw) calc(234 / 1920 * 100vw);
}

#section2 #slogan {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .05em solid #1e1e1e; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: -0.01em; /* Adjust as needed */
    font-family: 'Suisse Intl';
    font-weight: 300;
    font-size: calc(70 / 1920 * 100vw);
    width: fit-content;
    animation: 
        typing 3.5s steps(30, end),
        blink-caret .75s step-end infinite;
}

#section2 #slogan span {
    font-weight: 400;
}



#section2 #slogan-intro {
    font-family: 'Suisse Intl';
    font-weight: 300;
    width: calc(1084 / 1920 * 100vw);
    margin-top: 100px;
    text-align: center;
    font-size: calc(25 / 1920 * 100vw);
    letter-spacing: -0.01em;
    color: #818181;

}

#section2 #slogan-intro span {
    font-weight: 400;
    color: #000000;
}

#section2 #what-we-do-button{
    background-color: #e7e7e7;
    color: #000000;
    margin-top: 50px;
    width: calc(157.67 / 1920 * 100vw);
}

.arrow-horizontal-line {
    width: calc(29.5 / 1920 * 100vw);
    border-top: 1px solid #000000;
    position: absolute;
    top: 50%;
    right: calc(23.43 / 1920 * 100vw);
}

.arrow-diagonal-lines {
    width: calc(9 / 1920 * 100vw);
    height: calc(9 / 1920 * 100vw);
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
    position: absolute;
    top: 50%;
    right: calc(23.43 / 1920 * 100vw);
    transform: rotateZ(45deg) translateX(1px);
    transform-origin: 100% 0;
}

#section2 #section2-video-area {
    width: calc(1452 / 1920 * 100vw);
    height: calc(619 / 1920 * 100vw);
    overflow: hidden;
    border-radius: calc(200 / 1920 * 100vw);
    margin-top: 200px;
}   

#section2 #section2-video-area video {
    width: 100%;
}

#section2 #section2-artist-link-area {
    width: 100%;
    margin-top: 200px;
    margin-bottom: 100px;
    position: relative;
}

#section2 #section2-artist-link-area .header {
    font-family: 'Suisse Intl';
    font-weight: 300;
    font-size: calc(70 / 1920 * 100vw);
    letter-spacing: -0.01em;
    color: #1e1e1e;
}

#section2 #section2-artist-link-area .content {
    font-family: 'Suisse Intl';
    font-weight: 400;
    font-size: calc(25 / 1920 * 100vw);
    letter-spacing: -0.01em;
    color: #1e1e1e;
    width: calc(716 / 1920 * 100vw);
    margin-top: 5px;
}

#section2 #section2-artist-link-area .button {
    margin-top: 50px;
    background-color: #e7e7e7;
    color: #1e1e1e;
    width: calc(250 / 1920 * 100vw);
    

}

.artist-link-area-arrow-horizontal{
    width: calc(202 / 1920 * 100vw);
    right: 0;
}
.artist-link-area-arrow-diagonal{
    width: calc(65 / 1920 * 100vw);
    height: calc(65 / 1920 * 100vw);
    right: 0;
}

.artist-link-area-arrow-circle {
    width: 3px;
    height: 3px;
    position: absolute;
    top: 50%;
    background-color: #1e1e1e;
    border-radius: 50%;
    right: calc(202 / 1920 * 100vw);
    transform: translateY(-1px);
}

.link-box {
    height: calc(91 / 1920 * 100vw);
    margin-top: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Suisse Intl';
    font-weight: 400;
    font-size: calc(70 / 1920 * 100vw);
    letter-spacing: -0.01em;
    position: relative;
    gap: 30px;
    transition: height 0.5s ease-in-out;

}

.link-box-title {
    width: 100%;
    position: relative;


}

.link-box-image {
    width: 100%;
    height: 0;
    overflow: hidden;
    border-radius: calc(200 / 1920 * 100vw);
    transition: height 0.3s ease-in-out;
}

.link-box-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.link-box:hover {
    height: calc(800 / 1920 * 100vw);
    
}

.link-box:hover .link-box-image {
    height: calc(619 / 1920 * 100vw);
}


.link-box-arrow-horizontal {
    right: 0;
    width: calc(99.5 / 1920 * 100vw);
    transition: border-color 0.3s ease-in-out;
}

.link-box-arrow-diagonal {
    right: 0;
    width: calc(33 / 1920 * 100vw);
    height: calc(33 / 1920 * 100vw);
    transition: border-color 0.3s ease-in-out;

}

.link-box-arrow-circle {
    width: 3px;
    height: 3px;
    position: absolute;
    top: 50%;
    background-color: #1e1e1e;
    border-radius: 50%;
    right: calc(99.5 / 1920 * 100vw);
    transform: translateY(-1px);
    transition: background-color 0.3s ease-in-out;
}

.link-box:hover .link-box-arrow-horizontal {
    border-color: #ff4726;
}

.link-box:hover .link-box-arrow-diagonal {
    border-color: #ff4726;
}

.link-box:hover .link-box-arrow-circle {
    background-color: #ff4726;
}

.projects-button-area {
    width: 100%;
}

.projects-button {
    background-color: #e7e7e7;
    color: #1e1e1e;
    width: calc(135 / 1920 * 100vw);
    margin-top: 50px;
}

#artist-interview-section{
    width: 100%;
    height: calc(838 / 1920 * 100vw);
    background-image: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 100%), url("./assets/images/amy/amy-lamp-background.png");
    background-size:105%;
    background-position: 40% 60%;
    position: relative;
}

#artist-interview-section .title {
    font-family: 'Suisse Intl';
    font-weight: 400;
    font-size: calc(40 / 1920 * 100vw);
    letter-spacing: -0.01em;
    color: #ffffff;
    position: absolute;
    left: calc(50 / 1920 * 100vw);
    bottom: calc(50 / 1920 * 100vw);

}

#artist-interview-section .button {
    color: #1e1e1e;
    background-color: #ffffff;
    position: absolute;
    width: calc(180 / 1920 * 100vw);
    right: calc(50 / 1920 * 100vw);
    bottom: calc(50 / 1920 * 100vw);

}

#service-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: calc(200 / 1920 * 100vw) calc(234 / 1920 * 100vw) calc(200 / 1920 * 100vw) calc(234 / 1920 * 100vw);
}

#service-section .title {
    letter-spacing: -0.01em; /* Adjust as needed */
    font-family: 'Suisse Intl';
    font-weight: 300;
    font-size: calc(70 / 1920 * 100vw);
    width: 100%;
}

#service-section .intro-area {
    margin-top: 5px;
    width: 100%;
    position: relative;
}

#service-section .intro-area .intro {
    font-family: 'Suisse Intl';
    font-size: calc(25 / 1920 * 100vw);
    letter-spacing: -0.01em;
    font-weight: 400;
    width: calc(716 / 1920 * 100vw);
}

.service-area-arrow-horizontal{
    width: calc(202 / 1920 * 100vw);
    right: 0;
}
.service-area-arrow-diagonal{
    width: calc(65 / 1920 * 100vw);
    height: calc(65 / 1920 * 100vw);
    right: 0;
}

.service-area-arrow-circle {
    width: 3px;
    height: 3px;
    position: absolute;
    top: 50%;
    background-color: #1e1e1e;
    border-radius: 50%;
    right: calc(202 / 1920 * 100vw);
    transform: translateY(-1px);
}


.service-list {
    display: flex;
    width: 100%;

}

.service-list-column {
    display: flex;
    flex: 0 0 50%;
    flex-direction: column;
}

.service-list-button {
    background-color: #e7e7e7;
    color: #1e1e1e;
    width: calc(360 / 1920 * 100vw);
}

.service-list-item {
    font-family: 'Suisse Intl';
    letter-spacing: -0.01em;
    font-weight: 300;
}

.service-list-item-title {
    font-size: calc(40 / 1920 * 100vw);
    margin-bottom: 10px;
}

.service-list-item-content {
    font-size: calc(25 / 1920 * 100vw);
    margin-bottom: 30px;
}

#footer {
    background-color: #1E1E1E;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: calc(200 / 1920 * 100vw) calc(234 / 1920 * 100vw) calc(200 / 1920 * 100vw) calc(234 / 1920 * 100vw);
}

#footer #slogan {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .05em solid #FFFFFF; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: -0.01em; /* Adjust as needed */
    font-family: 'Suisse Intl';
    font-weight: 300;
    font-size: calc(70 / 1920 * 100vw);
    width: fit-content;
    color: #FFFFFF;
    animation: 
        typing 3.5s steps(30, end),
        blink-caret-white .75s step-end infinite;
}

#footer #slogan span {
    font-weight: 400;
}

#footer-text {
    font-family: 'Suisse Intl';
    font-weight: 300;
    text-align: center;
    color: #ffffff;
    margin-top: 50px;
    font-size: calc(25 / 1920 * 100vw);
}

#email-area {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    border-radius: calc(200 / 1920 * 100vw);
    height: calc(619 / 1920 * 100vw);
    margin-top: 50px;
}

#email-area textarea {
    width: calc(100% - 2 * (150 / 1920 * 100vw));
    height: calc(100% - (170 / 1920 * 100vw));
    position: absolute;
    outline: none;
    background-color: transparent; /* Makes the background transparent */
    border: none; /* Removes the border */
    left: calc(150 / 1920 * 100vw);
    top: calc(50 / 1920 * 100vw);
    box-sizing: border-box;
    resize: none;
}

#email-area input {
    position: absolute;
    width: calc(767 / 1920 * 100vw);
    height: calc(67 / 1920 * 100vw);
    border-radius: calc(33.5 / 1920 * 100vw);
    background-color: #545454;
    color: #ffffff;
    outline: none;
    border: none;
    left: 50%;
    bottom: calc(40 / 1920 * 100vw);
    transform: translateX(-50%);
    padding: 0 20px 0 20px;
}

#email-area input::placeholder {
    font-family: 'Suisse Intl';
    color: #f6f6f6;
    font-weight: 300;
}

/* The typing effect */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #1E1E1E; }
}

@keyframes blink-caret-white {
    from, to { border-color: transparent }
    50% { border-color: #FFFFFF; }
}