.hero-section {
    width: 100%;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 50%, rgba(254, 242, 242, 0.3) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1264.67px;
    min-height: 600px;
    padding: 80px 0 60px 32px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.main-title {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.title-line {
    font-size: 60px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0A0A0A;
    display: block;
}

.title-brand {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #590401;
    display: block;
}







.location-text {
    position: relative;
    color: #0A0A0A;
}

.location-text::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(89, 4, 1, 0.08);
    z-index: -1;
    border-radius: 4px;
}

.description {
    font-size: 20px;
    color: #4A5565;
    line-height: 1.6;
    margin-bottom: 48px;

}

.join-btn {
    background-color: #590401;
    color: #FFFFFF;
    border: none;
    width: 174.93px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px -4px rgba(89, 4, 1, 0.3),
        0 10px 15px -3px rgba(89, 4, 1, 0.3);
    transition: all 0.3s ease;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    /* Keeps it square but responsive */
    align-self: center;
    border-radius: 24px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
    /* Uniform look for both images */
    border-radius: 24px;
}


.hero-slide.active {
    opacity: 1;
    position: relative;
}

/* Dots Navigation */


.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #590401;
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 1200px) {
    .hero-container {
        height: auto;
        padding: 100px 32px;
        gap: 40px;
    }

    .title-line,
    .title-brand {
        font-size: 52px;
    }

    .hero-image-wrapper {
        height: 500px;
        width: 500px;
    }
}

@media (max-width: 1024px) {


    .hero-content {
        max-width: 100%;

    }

    .title-line,
    .title-brand {
        font-size: 48px;
    }

    .description {
        font-size: 18px;
        max-width: 100%;
    }

    .hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        height: 500px;
        border-radius: 24px;
        overflow: hidden;
    }

    .hero-slide {
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 60px 32px;
    }

    .hero-section {
        padding-top: 0;
    }

    .hero-container {
        padding: 40px 20px;
    }

    .title-line,
    .title-brand {
        font-size: 38px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-image-wrapper {
        height: 380px;
        border-radius: 16px;
    }

    .hero-slide {
        border-radius: 16px;
    }

    .hero-content {
        height: auto;
        margin-bottom: 0;
    }
}

.hero-cta-link {
    text-decoration: none;
    display: inline-block;
}

html {
    scroll-behavior: smooth;
}