/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 760px;
    overflow: hidden;
    background-position: top center;
    background-size: cover;
    margin-bottom: 90px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.hero-section:hover .hero-background img {
    /* transform: scale(1.05); */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 2;
    transition: background-color 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 760px;
    text-align: center;
    padding-bottom: 70px;
}

.hero-title {
    font-size: 85px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 58px 0;
    text-shadow: 0px 6px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    /* max-width: 837px; */
    font-family: 'Cormorant Infant';
    /* text-transform: uppercase; */
}

.hero-services {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
}

.service-button {
    width: 390px;
    height: 75px;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(192 151 54);
    transition: left 0.6s ease;
    z-index: -1;
}

.service-button:hover {
    transform: translateY(-3px);
    border-color: rgb(192 151 54);
    box-shadow: 0 8px 25px rgba(192, 151, 54, 0.3);
}

.service-button:hover::before {
    left: 0;
}

.service-button:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

.service-button span {
    color: #ffffff;
    font-size: 25px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 80px;
        max-width: 600px;
    }
    
    .hero-services {
        gap: 40px;
    }
    
    .service-button {
        width: 300px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 300px;
        background-position: bottom center;
        margin-bottom: 20px;
    }
    
    .hero-content {
        height: 300px;
        padding: 0 20px;
        display: flex;
    }
    
    .hero-title {
        font-size: 30px;
        margin-bottom: 80px;
        max-width: 100%;
    }
    
    .hero-services {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-button {
        width: 190px;
        height: 40px;
        border: 1px solid #ffffff;
    }
    
    .service-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(192, 151, 54, 0.3);
    }
    
    .service-button span {
        font-size: 13.5px;
    }
}
