/* Styles for the entire document */
html {
    height: 100%;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Stage Grotesk';
    font-size: 16px;
}

body {
    height: 100%;
    margin: auto;
    background: var(--Black-2);
}

:root {
    --Black-1: #090909;
    --Black-2: #0c0c0c;
    --Black-3: #1d1d1d;
    --Gray-1: #616161;
    --Gray-2: #F4F4F4;
    --White-1: #fefefe;
}

/*----------------------h1----------------------*/

h1 {
    font-size: 190px;
    font-weight: 400;
}

/*----------------------h2----------------------*/

h2 {
    color: var(--White-1);
    font-size: 128px;
    font-weight: 400;
    text-transform: uppercase;
}

h2 a {
    color: var(--White-1);
    font-size: 160px;
    font-weight: 400;
    line-height: 100%; /* 8rem */
    text-transform: uppercase;
    text-decoration: none;
}

h2 a:hover {
    text-decoration: underline;
}

/*----------------------h3----------------------*/

h3 {
    font-size: 96px;
    font-weight: 400;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Ensures smooth transition on hover */
}

/*----------------------h4----------------------*/

h4 {
    font-size: 64px;
    font-weight: 400;
}

/*----------------------h5----------------------*/

h5 {
    color: var(--White-1);
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
}

h5 a{
    color: var(--White-1);
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

h5 a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
}

/*----------------------h6----------------------*/

h6 {
    font-size: 20px;
    font-weight: 400;
}

h6 a{
    color: var(--White-1);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

h6 a:hover{
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
2) Custom - cursor
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.special-cursor, .special-cursor * {
    cursor: none !important;
}

.custom-cursor {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: var(--White-1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    text-align: center;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-cursor span {
    color: var(--Black-2);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
1) Transition grid styles
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.transition-grid-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 600;
    background-color: var(--Black-1);

    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 20px;
}

.counter-transition {
    grid-column: 2;
    grid-row: 9;
    font-size: 300px;
    color: var(--White-1);
}

/* Responsive styles for transition grid */
@media (max-width: 430px) {
    .transition-grid-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 10px;
    }

    .counter-transition {
        grid-column: 2;
        grid-row: 2;
        font-size: 160px;
    }
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
Header curtain (menu overlay)
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.header-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--Black-2);
    transform: translateY(-100%);
    z-index: 100;

    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: 495px 305px 240px;
    gap: 20px;
    overflow: hidden;
}

/*become a model big text*/
.become-a-model-big {
    width: 100%;
    height: 100%;
    grid-area: 1 / 2 / 1 / 12;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.become-a-model-big,
.overlay-menu-list {
    opacity: 0;
}

/*menu list overlay*/
.menu-list-overlay-container {
    width: 100%;
    height: 100%;
    grid-area: 2 / 16 / 2 / 20;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.overlay-menu-list li a {
    color: var(--White-1);
    font-size: 48px;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
    text-decoration: none;
}

.overlay-menu-list li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
}

/* Social media titles */
.social-media-links-overlay-menu {
    width: 100%;
    height: 100%;
    grid-area: 2 / 2 / 2 / 10;
}

.overlay-social-media-titles {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

/* Responsive styles for header curtain */
@media (max-width: 430px) {
    /* 1. Estilos para .header-curtain */
    .header-curtain {
        width: calc(100vw - 48px);
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 100px 655px 100px;
        gap: 10px;
        margin-left: 24px;
        margin-right: 24px;
    }

    /* 2. Ocultar texto grande en móviles */
    .become-a-model-big {
        display: none;
    }

    /* 3. Estilos para .menu-list-overlay-container */
    .menu-list-overlay-container {
        grid-area: 2 / 1 / 2 / 5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 4. Estilos para .overlay-menu-list */
    .overlay-menu-list li a {
        font-size: 40px;
    }

    /* 5. Estilos para .social-media-links-overlay-menu */
    .social-media-links-overlay-menu {
        grid-area: 3 / 1 / 3 / 5;
    }

    /* 6. Estilos para .overlay-social-media-titles */
    .overlay-social-media-titles h6 a {
        font-size: 20px;
    }

    .overlay-social-media-titles {
        align-items: center;
        justify-content: space-between;
    }
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
3) Navbar section
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.navbar-section {
    width: 100%;
    height: 95px;
    gap: 20px;
    grid-area: 1 / 1 / 1 / 21;

    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: auto;
}

.header-content {
    height: 95px;
    width: 100%;
    z-index: 500;
    grid-area: 1 / 1 / 1 / 21;

    display: grid;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
}

.brand-logo {
    height: 45px;
    width: 33.659px;
    grid-column: 2;
    height: 100%;
    width: 100%;

    grid-area: 1 / 2 / 1 / 4;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    opacity: 1;
    transform: translateY(0%);
    transition: opacity 0.2s, transform 0.8s;
}

.brand-logo a {
    cursor: pointer;
}

.brand-logo img {
    height: 45px;
    cursor: pointer;
}

.navbar-list {
    grid-area: 1 / 8 / 1 / 14;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    opacity: 1;
    transform: translateY(0%);
    transition: opacity 0.2s, transform 0.8s;
}

.header-content .navbar-list .navbar-text {
    display: flex;
    width: 100%;
    justify-content: space-between;
    list-style: none;
    text-transform: uppercase;
}

.header-content .navbar-list .navbar-text li a {
    text-decoration: none;
    list-style: none;
    color: var(--White-1);
    font-weight: 400;
}

.header-content .navbar-list .navbar-text li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

/* Header Burger */

.navbar-burger-menu {
    width: 100%;
    height: 100%;
    grid-area: 1 / 18 / 1 / 20;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Estilos proporcionados previamente */
.header__burger {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 38px;
    vertical-align: middle;
    cursor: pointer;
    pointer-events: initial;
}

.header__burger:hover .header__burger-line:nth-of-type(1) {
    transform: scaleX(1);
}

.header__burger:hover .header__burger-line:nth-of-type(2) {
    transform: scaleX(0.75);
}

.header__burger:hover .header__burger-line:nth-of-type(3) {
    transform: scaleX(1);
}

.header__burger_opened .header__burger-line:nth-of-type(1),
.header__burger_opened:hover .header__burger-line:nth-of-type(1) {
    transform: scaleX(1) rotate(45deg) translate(13px, 20px);
}

.header__burger_opened .header__burger-line:nth-of-type(2),
.header__burger_opened:hover .header__burger-line:nth-of-type(2) {
    transform: scaleX(0);
}

.header__burger_opened .header__burger-line:nth-of-type(3),
.header__burger_opened:hover .header__burger-line:nth-of-type(3) {
    transform: scaleX(1) rotate(-45deg) translate(13px, -20px);
}

.header__burger-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--White-1);
    transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.header__burger-line:nth-of-type(1) {
    top: 9px;
    left: 0;
    transform-origin: right center;
    transform: scaleX(0.75);
}

.header__burger-line:nth-of-type(2) {
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: left center;
}

.header__burger-line:nth-of-type(3) {
    bottom: 9px;
    left: 0;
    transform-origin: right center;
    transform: scaleX(0.75);
}

.header__wrapper-menu {
    position: relative;
    width: 100%;
    max-width: 50%;
    margin: auto 0;
}

.header-curtain {
    transform: translateY(-100%);
}

.header__burger_opened + #menu + .header__overlay-menu-back {
    display: block;
}

.header__burger_opened .header__burger-line {
    background-color: var(--White-1);
}

/* Responsive styles for navbar section */
@media (max-width: 1280px) {
    .header-content .navbar-list {
        display: none;
    }
}

@media (max-width: 430px) {
    .navbar-section {
        grid-area: 1 / 1 / 1 / 5;

        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
    }

    .header-content {
        grid-area: 1 / 1 / 1 / 5;
        display: grid;
    }

    .brand-logo {
        grid-area: 1 / 1 / 1 / 2;
    }

    .navbar-burger-menu {
        grid-area: 1 / 4 / 1 / 5;
    }
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
4) Photo slider frame
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.photo-slider-frame {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background-color: var(--Black-1);
}

.photo-slider-frame img {
    max-width: 100%;
    object-fit: cover;
    transition: transform 1.3s cubic-bezier(.215, .61, .355, 1);
}

.photo-slider-frame img:hover {
    transform: scale(1.2);
    transition: 1s cubic-bezier(.215, .61, .355, 1);
}

@media (max-width: 430px) {
    .photo-slider-frame img {
        max-height: 100%;
        max-width: none;
    }
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------
5) Footer
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.footer-grid {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: 95px 100px 115px;
    grid-gap: 20px;
}

.footer-mail {
    width: 100%;
    height: 100%;
    grid-area: 1 / 2 / 3 / 8;
    display: flex;
    align-items: center;
}

.footer-mail a {
    text-decoration: none;
}

.footer-mail h4 {
    color: var(--White-1);
    font-style: normal;
    text-transform: uppercase;
}

/* Social media titles */
.footer-social-media-titles {
    width: 100%;
    height: 100%;
    grid-area: 1 / 14 / 1 / 20;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-social-media-icons {
    display: none;
    grid-area: 1 / 14 / 2 / 20;
}

.social-icon {
    width: 32px;
    height: 32px;
}

.footer-social-media-icons-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Copyright & made by */
.copyright-made-by {
    width: 100%;
    height: 100%;
    grid-area: 3 / 14 / 3 / 17;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--White-1);
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

.copyright-made-by h3 a {
    color: var(--White-1);
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

.skopos-discover-container-link {
    width: 100%;
    height: 100%;
    grid-area: 3 / 17 / 3 / 20;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    color: inherit;
}

.skopos-discover-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.skopos-discover-container h3 a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--White-1);
    font-weight: 400;
}

.skopos-discover-btn-wrap {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.skopos-discover-btn span {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 20px;
    background-color: var(--White-1);
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
}

.skopos-discover-btn-text-wrap {
    height: 50px;
    display: flex;
    align-items: center;
    padding-top: 2px;
    padding-right: 5px;
}

.skopos-discover-btn-text {
    float: left;
    overflow: hidden;
    text-align: right;
    font-size: 16px;
    color: var(--White-1);
}

.skopos-discover-btn-text .text-skopos {
    position: relative;
    display: inline-block;
    text-align: right;
    transition: transform 0.3s;
}

.skopos-discover-btn-text .text-skopos::before {
    position: absolute;
    top: 100%;
    right: 0;
    content: attr(data-hover);
}

.skopos-discover-container:hover .skopos-discover-btn-text .text-skopos {
    transform: translate3d(0, -100%, 0);
}

/* Responsive styles for footer */
@media (max-width: 430px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 130px 80px 80px 100px;
    }

    .footer-mail {
        grid-area: 1 / 1 / 1 / 5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-mail h4 {
        font-size: 42px;
        text-align: center;
    }

    .footer-social-media-titles {
        display: none;
    }

    .footer-social-media-icons {
        display: block;
        width: 100%;
        height: 100%;
        grid-area: 2 / 2 / 2 / 4;
    }

    .copyright-made-by {
        grid-area: 4 / 1 / 4 / 3;
    }

    .skopos-discover-container-link {
        grid-area: 4 / 4 / 4 / 5;
    }

    .skopos-discover-container {
        align-items: flex-start;
        display: flex;
        align-items: center;
    }

    .skopos-discover-container:hover .skopos-discover-btn-text .text-skopos,
    .skopos-discover-container .skopos-discover-btn-text .text-skopos {
        transform: translate3d(0, -100%, 0);
    }
}
