@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,700;1,700&display=swap');

.shr-hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.shr-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.shr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.shr-hero-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, serif;
    margin: 0;
    line-height: 1.1;
    color: #ffffff;
}

.shr-hero-subtitle {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0;
    line-height: 1.6;
}

.shr-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.shr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.shr-btn-primary {
    background-color: #0A2540; /* Navy Blue */
    color: #ffffff !important;
    border: 2px solid #0A2540;
}

.shr-btn-primary:hover {
    background-color: #06182a; /* Darker Navy */
    border-color: #06182a;
}

.shr-btn-outline {
    background-color: transparent;
    color: #ffffff !important;
    border: 2px solid #ffffff;
}

.shr-btn-outline:hover {
    background-color: #ffffff;
    color: #333333 !important;
}

.shr-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.shr-scroll-mouse {
    width: 30px;
    height: 46px;
    border: 2px solid #ffffff;
    border-radius: 15px;
    display: block;
    position: relative;
}

.shr-scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 2px;
    display: block;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

@media (max-width: 768px) {
    .shr-hero-title {
        font-size: 36px;
    }
    .shr-hero-subtitle {
        font-size: 16px;
    }
    .shr-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .shr-btn {
        width: 100%;
    }
}
