@import url('root.css');

/* Base */
body{
    background-color: var(--4);
    color: var(--8);
    font-family: var(--poppins) !important;
    margin: 0;
    padding: 0;
}

.super-container{
    width: 100%;
}

.super-container .hero-intro{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 60vh;
    text-align: right;
}

.super-container .hero-intro .hero-col .hero-content h1{
    font-size: 80px;
    color: var(--8);
    font-family: 'SloopScriptPro' !important;
    margin: 0;
}

.super-container .hero-intro .hero-col .hero-content p{
    font-size: 25px;
}

/* two 50% columns inside hero */
.hero-col{
    width:50%;
}
.hero-intro{
    background-image: url('../images/about-hero.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height:70vh !important;
}

@media(max-width: 767px){
.hero-intro{
    background-image: url('../images/about-us.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height:70vh !important;
}
}
.hero-col.right{
    display:flex;
    align-items:center;
    justify-content:center;
    background: transparent;
}

/* Center hero content in right column */
.hero-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding: 20px 40px;
    text-align:center;
    width:100%;
    max-width:720px;
}

.content1{
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 20px;
    text-align: center;
}

.content1 p{
    font-size: 20px;
    font-family: var(--poppins);
}

.content2 {
    background-image: url('../images/content2.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.content2-container h3,
.content2-container p{
    text-align: center;
}

.content2-container{
    background-color: #1827369f;
    padding: 30px;
    border-radius: 15px;
    color: var(--hard-white);
    width: 900px;
}

.content2-container h3{
    font-family: var(--sloop-script), cursive;
    font-size: 70px;
    margin-bottom: 20px;
}

.content2-container p,
.content2-container ul li{
    font-size: 20px;
    font-family: var(--poppins);
}

.about-slideshow {
    position: relative;
    width: 100%;
}

.about-slide {
    display: none;
    position: relative;
}

.about-slide.is-active {
    display: block;
}

.about-slide-image {
    display: block;
    width: 100%;
    height: auto;
}

.about-slide-cta {
    position: absolute;
    top: 15%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.about-next-label {
    color: var(--10);
    font-family: var(--poppins);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(6, 10, 14, 0.45);
    max-width: 160px;
}

.about-next-button {
    position: absolute;
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: var(--10);
    box-shadow: 0 10px 30px rgba(6, 10, 14, 0.22);
    cursor: pointer;
    animation: aboutPulse 1.8s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-next-button:hover,
.about-next-button:focus-visible {
    transform: scale(1.05);
    box-shadow: 0 14px 36px rgba(6, 10, 14, 0.28);
}

.phone{
    display: none;
}

.about-next-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 4px;
}

.about-next-icon {
    display: block;
    width: 60px;
    height: auto;
}

@keyframes aboutPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 10px 30px rgba(6, 10, 14, 0.22);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0), 0 10px 30px rgba(6, 10, 14, 0.22);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 10px 30px rgba(6, 10, 14, 0.22);
    }
}

@media (max-width: 767px) {
    .about-slide-cta {
        right: 12px;
        gap: 10px;
    }

    .about-next-button {
        width: 60px;
        height: 60px;
    }

    .about-next-icon {
        width: 26px;
    }

    .about-next-label {
        font-size: 12px;
        max-width: 120px;
    }
}
/* Phone-specific adjustments (<=480px) */
@media (max-width: 480px) {
    .hero-intro {
        flex-direction: column;
        align-items: center;
        height: auto;
        min-height: 40vh;
        padding: 18px 8px;
        gap: 12px;
    }

    .desktop{
        display: none;
    }

    .phone{
        display: block;
    }

    .hero-col {
        width: 100%;
    }

    .hero-col.left {
        display: none;
    }

    .hero-content {
        padding: 12px 16px;
        max-width: 95%;
    }

    .super-container .hero-intro .hero-col .hero-content h1 {
        font-size: 28px;
        text-align: center;
        color: var(--8);
        margin: 0 0 6px;
    }

    .super-container .hero-intro .hero-col .hero-content p {
        font-size: 14px;
    }

    .content1 {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
    }

    .content1 img {
        width: 160px;
    }

    .about-slide-image {
        width: 100%;
        height: 90vh;
        object-fit: cover;
    }

    .about-slide-cta {
        right: 12px;
        gap: 8px;
        top: 20%;
        transform: translateY(-50%);
    }

    .about-next-button {
        width: 48px;
        height: 48px;
        box-shadow: 0 8px 20px rgba(6,10,14,0.18);
    }

    .about-next-icon { width: 22px; }

    .about-next-label {
        font-size: 11px;
        max-width: 96px;
    }

    .content2-container {
        width: calc(100% - 32px);
        max-width: 100%;
        padding: 18px;
        margin: 18px auto;
    }

    .content2 {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    .about-next-button { animation-duration: 2.2s; }

    .about-slide-cta { right: 8px; }
}