/* Custom Font: Amug Regular (Local) */
@font-face {
    font-family: 'AmugRegular';
    src: url('../fonts/amug-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.hero-title,
.typing-text,
#typing-text {
    font-family: 'AmugRegular', sans-serif !important;
    font-weight: 400 !important;
    font-size: clamp(3rem, 10vw, 12rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px !important;
    display: inline-block;
}

/* Enforce layout consistency for alignment */
.hero-product-title {
    min-height: 2.8em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-slide-content.align-items-md-end .hero-product-title {
        justify-content: flex-end;
    }

    .hero-slide-content.align-items-md-start .hero-product-title {
        justify-content: flex-start;
    }
}

.hero-des {
    min-height: 1.5em;
}

/* High Contrast "See More" Buttons */
.hero-buttons button {
    background-color: #000000 !important;
    /* Pure Black for contrast on white video parts */
    color: #ffffff !important;
    /* White text */
    border: 1px solid #000000 !important;
    transition: all 0.3s ease;
}

.hero-buttons button:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
}