/* Mobile Hero v2 — isolated classes to avoid conflicts */

/* Base: hidden by default; shown via media query */
.hero-section-mobile2 {
    display: none;
    width: 100%;
    background-color: #fffbee;
    min-height: 80vh;
    max-height: 85vh;
    padding: 1.5vh 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between; */
    text-align: center;
    font-family: 'Lemon Milk', Arial, sans-serif;
}

/* Contact info at top */
.hero-contact-info2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0vh;
    margin-bottom: 2vh;
    flex-shrink: 0;
}

.hero-logo-mobile2 {
    display: none;
    width: clamp(120px, 55vw, 200px);
    height: auto;
    margin: 0 auto 1vh auto;
}

.hero-phone2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #BC6743;
    /* margin-bottom: 0.25rem; */
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); */
}

.hero-hours2 {
    font-size: 1rem;
    color: #BC6743;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); */
}

/* Button container */
.hero-background-container2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5vh;
    margin: 2vh 0;
    width: 100%;
    flex-shrink: 0;
}

/* Button styling */
.hero-btn2 {
    display: inline-block;
    padding: 1.2vh 1.5rem;
    margin: 0;
    width: clamp(250px, 65vw, 320px);
    text-align: center;
    text-decoration: none;
    font-size: clamp(0.95rem, 2.8vw, 1.05rem);
    font-weight: 600;
    border: 2px solid #d4a017;
    border-radius: 8px;
    background-color: #fffbee;
    color: #d4a017;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    pointer-events: auto;
}

.order-online-btn2,
.allergens-btn2,
.view-menu-btn2 {
    background-color: #fffbee !important;
    color: #BC6743 !important;
    border: 2px solid #d4a017 !important;
}

.hero-btn2:hover {
    background-color: #d4a017 !important;
    color: black !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Image below buttons */
.hero-image-mobile2 {
    display: none;
    /* margin: 1vh 0.5rem 0 0.5rem; */
    width: calc(100%);
    height: 35vh;
    max-height: 40vh;
    border-radius: 8px;
    flex-shrink: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Show v2 on mobile, hide desktop hero to prevent conflicts */
@media (max-width: 480px) {
    .hero-section {
        display: none !important;
    }

    .hero-section-mobile2 {
        display: flex !important;
    }

    .hero-logo-mobile2 {
        display: block;
    }

    .hero-image-mobile2 {
        display: block !important;
    }
}