
/* Hero Section with Restaurant Image */
.homepage-hero-section {
    margin-bottom: -100px;
    width: 100%;
    padding: 0px !important;
    position: relative;
    overflow: hidden;
}

.homepage-hero-image {
    position: relative;
    width: 100%;
    padding-top: calc(100% * 5 / 16);
    background: #F7F7F7;
    overflow: hidden;
    color: white;
    border: none;
}

.homepage-hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.homepage-hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(28, 28, 28, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    border: none;
}



/* Action Buttons Grid */
.actions-section {
    position: relative;
    z-index: 10;
    background: transparent;
    padding-bottom:0;
    padding-top:2rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 0 auto;
}

.action-card {
    background: white;
    border-radius: 16px;
    padding: 1rem 0.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--headings-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.action-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transform: translateY(-2px);
    text-decoration: none;
    border-bottom: 2px solid var(--mb-colour);
}

.action-icon {
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--headings-color);
    font-weight: 300;
    display: block;
    font-size: 24px;
    height: 60px;
    line-height: 65px;
    margin-bottom: 5px;
    text-align: center;
    width: 60px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.action-card:hover .action-icon {
    background-color: var(--mb-colour);
    color:white;
}

.action-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.action-card:hover .action-title {
    color: var(--mb-colour);
}


/* Location Section */
.homepage-working-hours-block {
    padding-left: 15px;
    border-left: 3px solid var(--mb-colour);
    text-align: start;
    margin-bottom: 0px;
}

.location-card {
    padding: 5px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container {
    width: 100%;
    height: 300px;
    background: #fff;
}

/* Responsive Design */

@media (max-width: 480px) {
   
    
}

@media (max-width: 768px) {
    .homepage-hero-image {
        padding-top: 50%;
    }

    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .actions-section {
        padding-top: 60px;
    }
    .actions-grid {
        gap: 5px;
    }
    .action-card {
        min-height: 70px;
        height:70px;
        padding: 10px 5px;
    }
    .action-icon {
        font-size: 16px;
        height: 40px;
        line-height: 38px;
        width: 40px;
        margin-bottom:0px;
    }
    .action-title {
        font-size: 14px;
        line-height:normal;
    }

    .homepage-working-hours-block {
        padding-left: 0px;
        border-left: none;
        text-align: center;
        margin-bottom: 20px;
    }
   
}

