:root {
    --primary-color: #FF6B6B;
    --secondary-color: #FF8E8E;
    --accent-color: #4ECDC4;
    --text-color: #2b2d42;
    --light-color: #f8f9fa;
    --dark-color: #292F36;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    opacity: 0.2;
    z-index: 0;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.app-card {
    display: flex;
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    align-items: center;
    flex-wrap: wrap;
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--accent-color);
    margin-right: 20px;
    box-shadow: var(--shadow);
}

.app-info {
    flex: 1;
    min-width: 200px;
}

.app-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.app-developer {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 1rem;
}

.app-description {
    margin-bottom: 15px;
    color: var(--text-color);
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: flex-start; /* Default alignment for desktop */
}

.feature-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mobile centering */
@media (max-width: 768px) {
    .app-features {
        justify-content: center; /* Center badges on mobile */
    }
}
.download-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: block;
    margin: 20px auto;
    width: fit-content;
}

.download-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.screenshots {
    margin: 30px 0;
}

.screenshots h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.screenshot-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

.screenshot-container::-webkit-scrollbar {
    height: 8px;
}

.screenshot-container::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.screenshot-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.screenshot {
    height: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.03);
}
.restaurant-partners {
    margin: 30px 0;
    text-align: center;
}

.restaurant-partners h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--dark-color);
}

.restaurant-logos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.restaurant-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 150px;
    transition: all 0.3s ease;
}

.restaurant-logo {
    height: 150px;
    width: 150px;
    object-fit: contain;
    border-radius: 50%;
    padding: 10px;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    filter: grayscale(30%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.restaurant-name {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

.restaurant-card:hover .restaurant-logo {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.restaurant-card:hover .restaurant-name {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .restaurant-logos-container {
        gap: 20px;
    }
    
    .restaurant-card {
        width: 120px;
        gap: 10px;
    }
    
    .restaurant-logo {
        height: 60px;
        width: 60px;
    }
    
    .restaurant-name {
        font-size: 0.9rem;
    }
}
.terms {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.terms h2 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.terms-content {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    color: #6c757d;
    font-size: 0.9rem;
    border-top: 1px solid #dee2e6;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .app-card {
        flex-direction: column;
        text-align: center;
    }

    .app-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .download-btn {
        width: 100%;
    }

    .screenshot {
        height: 150px;
    }

    .restaurant-logos {
        gap: 15px;
    }

    .restaurant-logo {
        height: 40px;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}
