/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/main-slider/slider5/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 100px;
    /* Offset for header */
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c5a47e;
    /* Primary skin color */
    border-left: 3px solid #c5a47e;
    padding-left: 10px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 80px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero-description {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Animations */
.hero-section [class*="hero-"] {
    animation: fadeInUp 1s ease-out both;
}

.hero-subtitle {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.3s;
}

.hero-description {
    animation-delay: 0.5s;
}

.hero-buttons {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media only screen and (max-width: 1200px) {
    .hero-title {
        font-size: 65px;
    }

    .hero-description {
        font-size: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-title {
        font-size: 50px;
    }

    .hero-content {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 180px 0 100px;
        background-attachment: scroll;
        display: flex;
        align-items: center;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 18px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .site-button,
    .hero-buttons .site-button-secondry {
        width: 100%;
        max-width: 250px;
        margin: 0 !important;
    }
}

@media only screen and (max-width: 480px) {
    .hero-section {
        padding: 160px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-description {
        font-size: 16px;
    }
}