/* Delivery page container */
.delivery-container {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
}

.delivery-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.delivery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.delivery-section {
    background: var(--white-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

/* Online Delivery Section */
.online-delivery {
    text-align: center;
}

.online-services {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

.service-card {
    background: var(--background-color);
    padding: 25px;
    border-radius: 10px;
    flex: 1;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.location-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
}

.location-link {
    display: block;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 32px;
    transition: background-color 0.3s ease;
    width: 70%;
    text-align: center;
}

.location-link:hover {
    background: var(--primary-color-light);
}

/* Delivery Areas Section */
.delivery-areas {
    margin-bottom: 4rem;
    background-color: #8B0000; /* Deep red background */
    padding: 3rem 2rem;
    border-radius: 10px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.area-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 8px;
}

.area-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.area-content {
    margin-top: 1.5rem;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.area-list p {
    color: var(--text-color);
    padding: 0.75rem;
    background: var(--white-color);
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.area-list p:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.area-note {
    color: var(--subtext-color);
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.area-button {
    background-color: #8B0000; /* Deep red button */
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.area-button:hover {
    background-color: #A52A2A;
}

/* Menu Grid Layout */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.12);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-details {
    padding: 1.5rem;
}

.menu-details h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.menu-details p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.menu-details .price {
    color: #333;
    font-size: 1.4rem;
    font-weight: bold;
}

/* Delivery Area Section */
.delivery-info {
    background: #f9f9f9;
    padding: 3rem 0;
    margin: 3rem 0;
}

.info-content {
    display: grid;
    gap: 2rem;
}

.info-content.vertical {
    grid-template-columns: 1fr;
}

.info-item {
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: 8px;
    text-align: center;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.info-item p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.info-item p.small-red-note {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-align: center;
}

.phone-number {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--primary-color-light);
}

/* Notes Section */
.notes {
    background: #fff;
    padding: 3rem 0;
}

.notes-content {
    background: var(--white-color);
    padding: 2.5rem;
}

.notes-content ul {
    list-style: none;
    padding: 0;
}

.notes-content li {
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.notes-content li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.small-note {
    color: var(--subtext-color);
    font-size: 0.9rem;
    text-align: center;
}

.info-content.horizontal {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    align-items: stretch;
}

.info-card {
    background: var(--background-color);
    padding: 25px;
    border-radius: 10px;
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.info-item {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-item.contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    margin-top: 0;
}

.phone-number {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

/* Payment Methods Section */
.payment-methods {
    margin-bottom: 15px;
}

.payment-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9em;
}

.payment-option i {
    font-size: 1.2em;
}

.payment-option svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .delivery-container {
        padding: 1rem;
        margin-top: 100px;
    }

    .delivery-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .delivery-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .info-content.horizontal {
        flex-direction: column;
        gap: 15px;
    }

    .info-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        flex: 1 1 100%;
    }

    .info-item {
        padding: 0;
        width: 100%;
    }

    .info-item h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .info-item p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .info-item.contact {
        margin-top: 0;
    }

    .phone-number {
        font-size: 1.8rem;
        margin-top: 5px;
    }

    .area-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .area-list p {
        padding: 8px;
        font-size: 0.9rem;
        margin: 0;
        word-break: keep-all;
        white-space: nowrap;
    }

    .notes-content {
        padding: 0;
    }

    .notes-content li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        line-height: 1.5;
    }

    .payment-options {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .payment-option {
        justify-content: center;
        padding: 12px;
        font-size: 1rem;
    }

    .online-services {
        flex-direction: column;
        gap: 15px;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .location-link {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .delivery-title {
        font-size: 1.6rem;
    }

    .delivery-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .info-card {
        padding: 15px;
    }

    .info-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .info-item p {
        font-size: 0.95rem;
    }

    .phone-number {
        font-size: 1.6rem;
    }

    .area-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .area-list p {
        padding: 6px;
        font-size: 0.85rem;
    }

    .payment-option {
        padding: 10px;
        font-size: 0.95rem;
    }

    .small-note, .small-red-note {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .location-link {
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .info-content.horizontal {
        flex-direction: column;
        gap: 15px;
    }

    .info-card {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }
} 