.main {
    min-height: 100vh;
}

/*Hero style */

.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    display: flex;
    width: 100%;
    height: 600px;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.4);
    /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);*/
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 600px;
    padding: 40px;
    color: white;
}

.heroTitle {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.hero-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #D4AF37;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
}

.hero-controls-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.hero-controls {
    display: flex;
    gap: 12px;
}

.hero-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: black;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all .3s;
}

.hero-controls button:hover {
    transform: scale(1.1);
}


.heroSubtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.heroActions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/*Hero style end */

.featuredSection {
    padding: 6rem 1rem;
}

.sectionHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--color-gray-200);
    padding-bottom: 1rem;
}


.sectionTitle {
    font-size: 2.5rem;
    color: var(--color-navy);
}

.viewAllLink {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .heroTitle {
        font-size: 2.5rem;
    }

    .heroSubtitle {
        font-size: 1.2rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}