﻿.delivery-container {
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #f8f8f8, #FFFAF6, #FDEBDE, #FBD3B8, #F6AE82, #EE7D43, #EC7439);
}

.delivery-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
}

.delivery-header {
    color: black;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.header-text {
    flex: 1;
}

.delivery-header h1 {
    font-size: 1.5rem;
    margin: 0.25rem 0;
    font-weight: 600;
    line-height: 1.2;
}

.tap-icon {
    margin-top: 1rem;
}

.delivery-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.delivery-image {
    height: 500px;
    background-image: url('images/Delivery-ok.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.delivery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.delivery-icon-container {
    margin-bottom: 2rem;
}

.delivery-icon {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    display: inline-block;
}

    .delivery-icon img {

    }

.delivery-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.delivery-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.delivery-card-button {
    background: #0066CC;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
    margin-inline: 15%;
}

.delivery-button {
    display: block;
    background-color: #0066CC;
    color: white;
    text-align: center;
    padding: 1.25rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 50%;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .delivery-container {
        padding: 1rem;
        min-height:70vh;
    }

    .delivery-content {
        padding: 1rem;
    }

    .delivery-header h1 {
        font-size: 2rem;
    }

  

    .delivery-image {
        height: 300px;
    }

    .delivery-overlay h2 {
        font-size: 1.75rem;
    }

    .delivery-subtitle {
        font-size: 1.25rem;
    }

    .delivery-icon img {
        width: 48px;
        height: 48px;
    }
}
.container-icons-food{
    margin-top:5%;
}