* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    scrollbar-width: none;
}

.home-splashscreen {
    width: 100%;
    height: 100svh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow: hidden;
}

.home-splashscreen h1 {
    font-size: 8rem;
    color: #fff;
    z-index: 2;
    transition: color 0.8s ease;
    text-transform: uppercase;
    font-family: "Cinzel", serif;
}

@media (max-width: 600px) {
    .home-splashscreen h1 {
        font-size: 4rem;
    }
}

.home-mainmenupage {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1;
    transform: translateX(100%);
    overflow: hidden;
    transition: height 1.2s ease; /* optional fallback for non-GSAP environments */
}

/* hero-swiper-section */
.hero-section {
    display: flex;
    overflow: hidden;
    position: relative;
}

.hero-swiper-section {
    width: 100%;
    height: 100svh;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-swiper-section img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 50;
    pointer-events: none;
}

.swiper-buttons span {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    user-select: none;
    pointer-events: auto;
}

/* about section */
.homepage-about-section {
    position: relative;
    width: 100%;
    height: 100%;
}

.homepage-about-section-content {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 40px;
    align-items: center;
}

.homepage-about-section-content h2 {
    padding-top: 40px;
    font-size: 70px;
    font-family: "Nothing You Could Do", cursive;
    word-spacing: 15px;
}
.homepage-about-section-content .homepage-about-section-content-para {
    font-size: 30px;
    width: fit-content;
    padding-left: 230px;
}

.homepage-about-section .homepage-about-section-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-about-main-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 10px;
    margin: 20px;
}
.homepage-about-main-content img {
    width: 100%;
    object-fit: cover;
}

.homepage-about-main-content-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: left;
    /* padding-top: 80px; */
    position: relative;
}
.homepage-about-main-content-text h3 {
    font-size: 35px;
}
.homepage-about-main-content-text p {
    font-size: 25px;
}

.homepage-about-main-content-text .sign {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 20px;
}
.homepage-about-main-content-text .sign img {
    width: 100%;
    height: 100%;
    max-width: 222px;
}
.homepage-about-main-content-text .sign p {
    font-family: "Nothing You Could Do", cursive;
    width: fit-content;
    font-size: 45px;
    transform: rotate(-10deg);
    text-decoration: underline solid 2px;
}

/* portfolio */
.homepage-my-portfolio-section {
    background: #fff;
    padding: 70px;
}

.homepage-my-portfolio-section h2 {
    font-size: 95px;
    font-family: Cormorant Garamond;
    font-weight: 300;
}

.portfolio-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.portfolio-item {
    position: relative;
    width: 100%;
    max-width: 800px;
}
.portfolio-item a {
    text-decoration: none;
    color: #000;
}
.portfolio-item-header {
    font-size: 30px;
    font-family: Cormorant Garamond;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* View More Overlay */
.view-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    background: linear-gradient(to top, #000, transparent);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 22px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.image-container:hover .view-more {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.view-more hr {
    width: 100%;
    border: 1px solid #fff;
}

.view-more div {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 900px) {
    .portfolio-item-header {
        font-size: 20px;
    }
    .hero-section {
        gap: 7px;
        margin-bottom: 7px;
    }
    .hero-swiper-section {
        height: 50svh;
    }
    .swiper-buttons {
        height: 30px;
        gap: 10px;
    }
    .swiper-buttons span {
        width: 30px;
        height: 30px;
    }

    .homepage-contentwrapper {
        padding: 20px;
    }
    .homepage-contentwrapper h2 {
        font-size: 35px;
        padding-bottom: 20px;
        word-spacing: 10px;
    }
    .homepage-content img {
        width: 100%;
    }

    .homepage-about-section-content {
        padding: 20px;
    }

    .homepage-about-section-content h2 {
        padding-top: 20px;
        font-size: 40px;
        word-spacing: 0px;
    }
    .homepage-about-section-content .homepage-about-section-content-para {
        font-size: 20px;
        padding-left: 0px;
    }

    .homepage-about-main-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .homepage-about-main-content-text .sign {
        padding: 10px;
    }
    .homepage-about-main-content-text .sign p {
        font-size: 45px;
        transform: rotate(0deg);
    }

    .homepage-about-main-content-text {
        gap: 15px;
        padding-top: 20px;
        position: relative;
    }
    .homepage-about-main-content-text h3 {
        font-size: 25px;
    }
    .homepage-about-main-content-text p {
        font-size: 18px;
    }

    .homepage-my-portfolio-section {
        padding: 35px;
    }

    .homepage-my-portfolio-section h2 {
        font-size: 45px;
    }
    .portfolio-section {
        flex-direction: column;
    }
}
