body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    box-sizing: border-box;
}

.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('../images/hero.jpg'); 
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-text {
    color: white;
    font-size: 5rem;
    margin-bottom: 50px;
    text-align: center;
    font-family: "Charm", cursive;
}

.button-container {
    display: flex;
    gap: 20px; 
    flex-wrap: wrap; 
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    font-size: 1rem;
    color: white;
    background-color: transparent; 
    border: 2px solid #FF0000;
    border-radius: 0; 
    cursor: pointer;
    transition: all 0.3s ease; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: #000000; 
}

.btn-outline {
    background-color: transparent;
    color: #FF0000;
}

.btn-outline:hover {
    background-color: #FF0000;
    color: white;
}

/* Mobile */
@media screen and (max-width: 768px) {

    .hero-section {
        position: relative;
        height: 60vh;
        background-image: url('../images/mobileRiceChicken.jpg'); 
        background-size: cover;
        background-position: center;
    }

    .header-text {
        font-size: 2rem; 
        margin-bottom: 15px;
    }

    .button-container {
        gap: 15px;
    }

    .btn {
        font-size: 0.9rem; 
        padding: 10px 20px;
    }
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .hero-section {
        position: relative;
        height: 80vh;
        background-image: url('../images/hero.jpg'); 
        background-size: cover;
        background-position: center;
    }

    .header-text {
        font-size: 2.5rem; 
    }

    .button-container {
        gap: 18px;
    }

    .btn {
        font-size: 0.95rem; 
        padding: 11px 22px;
    }
}