body {
    width: 100vw;
    overflow-x: hidden;
}

section p {
    letter-spacing: 2px;
}

.home {
    width: 100vw;
    font-family: "Poppins";
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.intro-imgHolder {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-imgHolder img {
    width: 100vw;
}

.intro-text {
    padding-block: 50px;
    padding-inline: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #F6F4EF;
}

.intro-text span {
    background: linear-gradient(145deg, rgb(105, 105, 105), #121214);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.hosted {
    min-height: 100vh;
    padding-block-start: 35px;
    padding-block-end: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #0A171D;
}

.hosted .hosted-text {
    color: #fff;
    padding-block-end: 50px;
    padding-inline: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.hosted .hosted-text p {
    width: 75%;
    min-width: 200px;
    font-style: oblique;
}

.hosted-examples {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-inline: 40px;
    flex-wrap: wrap;
    row-gap: 25px;
}

.hosted-examples .hostedEx {
    position: relative;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s;
    border: 5px double transparent;
}

.hosted-examples .hostedEx:hover {
    border-radius: 35px;
    border: 5px double white;
}

.hosted-examples .hostedEx img {
    width: 400px;
    object-fit: cover;
    object-position: center;
}

.hosted-examples .hostedEx:hover .overlay {
    opacity: 1;
}

.overlay {
    opacity: 0;
    position: absolute;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 900;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(105, 105, 105, 0.25);
    backdrop-filter: blur(3px);
}

.experties {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 450px;
    background: #cb7560;
    position: relative;
    overflow: hidden;
}

.experties h1 {
    padding-block-start: 50px;
}

.experties p {
    padding-inline: 75px;
    padding-block: 20px;
    padding-block-end: 50px;
}

.experties .experties-show {
    position: absolute;
    bottom: 0px;
    left: 75px;
    height: 400px;
    padding-block-end: 75px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% {
        left: 75px;
    }

    50% {
        left: -190%;
    }

    100% {
        left: 0;
    }
}

.experties .experties-show .show {
    height: 400px;
    background: grey;
    position: relative;
}

.experties .experties-show .show img {
    height: 400px;
    object-position: center;
}

.experties .experties-show .show .showHidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(120, 120, 120, 0.5), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: 0.3s;
}

.experties .experties-show .show .showHidden h3 {
    color: white;
    border-radius: 50px;
    padding-inline: 20px;
    padding-block-start: 5px;
    border-top: 5px double white;
    text-shadow: 0 0 3px black;
    letter-spacing: 2px;
}

.experties .experties-show .show .showHidden p {
    color: white;
    border-radius: 50px;
    padding-inline: 20px;
    padding-block-end: 15px;
    border-bottom: 5px double white;
    text-shadow: 0 0 3px black;
    letter-spacing: 1px;
}

.experties .experties-show .show .showHidden:hover {
    opacity: 1;
}

.bottom-img {
    width: 100vw;
    height: 85vh;
    background-image: url("./assets/jewarWide (2).avif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.info-section {
    padding: 100px 50px;
    background: #F6F4EF; /* Matches your header */
    color: #0b1b23;
}

.info-section a {
    color: inherit;
}
.info-action a {
    color: black;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.info-why h2 {
    font-size: clamp(3rem, 8vw, 5rem);
    color: #c16543;
    margin-bottom: 40px;
    font-family: 'Unbounded', sans-serif;
}

.why-item {
    margin-bottom: 30px;
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #0b1b23;
}

.why-item p {
    font-weight: 300;
    opacity: 0.8;
}

.info-details {
    background: #0b1b23; /* Dark theme to contrast */
    padding: 60px;
    color: #F6F4EF;
    box-shadow: 15px 15px 0px #c16543; /* Stylish offset */
}

.detail-box {
    margin-bottom: 40px;
}

.detail-box span {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #c16543;
    margin-bottom: 10px;
}

.detail-box p {
    font-size: 1.3rem;
    font-weight: 500;
}

.info-action {
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .info-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .info-section {
        padding: 50px 20px;
    }
    .info-details {
        padding: 23px;
    }
}

@media (max-width: 370px) {
    .info-details p {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hosted .hosted-text p {
        width: 100%;
    }

    .intro-text {
        padding-inline: 25px;
    }

    .bottom-img {
        background-image: url("./assets/jewarFront\ \(2).avif");
        background-position: 41% 50%;
    }

    .hosted-examples .hostedEx {
        border-radius: 35px;
        border: 5px double white;
    }

    .hosted-examples .hostedEx:hover {
        border-radius: 0px;
        border: 5px double transparent;
    }

    .hosted-examples .hostedEx .overlay {
        opacity: 1;
    }

    .hosted-examples .hostedEx:hover .overlay {
        opacity: 0;
    }

    .experties p {
        padding-inline: 20px;
    }

.experties {
    padding-bottom: 250px;
}
.experties .experties-show {
    height: 250px;
}
.experties .experties-show .show {
    height: 200px;
}

.experties .experties-show .show img {
    height: 200px;
}

.experties .experties-show .show .showHidden {
    font-size: 0.75rem;
}

.experties .experties-show .show .showHidden h3 {
    color: white;
    border-radius: 50px;
    padding-inline: 20px;
    padding-block-start: 5px;
    border-top: 5px double white;
    text-shadow: 0 0 3px black;
    letter-spacing: 2px;
}

.experties .experties-show .show .showHidden p {
    color: white;
    border-radius: 50px;
    padding-inline: 20px;
    padding-block-end: 15px;
    border-bottom: 5px double white;
    text-shadow: 0 0 3px black;
    letter-spacing: 1px;
}

.experties .experties-show .show .showHidden:hover {
    opacity: 1;
}
}