/**
 * KIAN Hero Banner Component Styles
 * Styles for the hero banner widget with background image, text, and button
 */

.kian-hero-banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.kian-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.kian-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kian-hero-content-inner {
    max-width: 600px;
}

.kian-hero-title {
    margin: 0;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    color: #8B6F47;
    font-family: 'Delmon Delicate Font', serif;
    text-transform: uppercase;
}

.kian-hero-title p {
    margin: 0;
}

.kian-hero-subtitle {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    font-family: 'GeoSansLight', sans-serif;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    gap: 30px;
}

.kian-hero-subtitle::after {
    content: '';
    width: 100%;
    max-width: 150px;
    height: 4px;
    background-color: #90EE90;
}

.kian-hero-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #333333;
    font-family: 'GeoSansLight', sans-serif;
    letter-spacing: 0.1em; /* Kerning 100 */
}

.kian-hero-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.kian-hero-button:hover {
    background-color: #f5f5f5;
    border-color: #999999;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.kian-hero-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .kian-hero-content {
        padding: 50px 35px;
    }
}

@media (max-width: 768px) {
    .kian-hero-banner-wrapper {
        min-height: 500px;
        flex-direction: column;
    }

    .kian-hero-content {
        max-width: 100%;
        padding: 40px 30px;
        gap: 18px;
    }

    .kian-hero-title {
        font-size: 25px;
    }

    .kian-hero-subtitle {
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .kian-hero-description {
        font-size: 15px;
    }

    .kian-hero-button {
        padding: 12px 28px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .kian-hero-banner-wrapper {
        min-height: 400px;
    }

    .kian-hero-content {
        padding: 30px 20px;
        gap: 15px;
    }

    .kian-hero-title {
        font-size: 20px;
    }

    .kian-hero-subtitle {
        font-size: 14px;
        letter-spacing: 0.1em; /* Kerning 100 */
    }

    .kian-hero-description {
        font-size: 14px;
    }

    .kian-hero-button {
        padding: 10px 24px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
}

