/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fcf7f7;
    color: #1c0d0f;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 160px;
}

/* Header Styles */
.header {
    background-color: #fcf7f7;
    border-bottom: 1px solid #e5e8eb;
    height: 65px;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 160px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    width: 16px;
    height: 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1c0d0f;
    letter-spacing: 0;
    line-height: 23px;
}

.nav-actions {
    display: flex;
    gap: 8px;
}



/* Main Content */
.main-content {
    padding: 20px 0 90px 0;
}

/* Hero Section */
.hero-section {
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #1c0d0f;
    letter-spacing: 0;
    line-height: 40px;
    margin-left: 16px;
}

/* Restaurants Section */
.restaurants-section {
    margin-top: 72px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1c0d0f;
    letter-spacing: 0;
    line-height: 28px;
    margin-left: 16px;
    margin-bottom: 40px;
}

/* Category Section */
.category-section {
    margin-bottom: 47px;
}

.category-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1c0d0f;
    letter-spacing: 0;
    line-height: 23px;
    margin-left: 16px;
    margin-bottom: 16px;
}

/* Restaurant Grid */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-left: 16px;
    margin-right: 16px;
}

/* Restaurant Card */
.restaurant-card {
    display: flex;
    flex-direction: column;
    width: 458px;
    height: 327px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.restaurant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.restaurant-image {
    width: 458px;
    height: 258px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.05);
}

.restaurant-info {
    padding: 12px 16px;
    height: 57px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.restaurant-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c0d0f;
    letter-spacing: 0;
    line-height: 24px;
    margin: 0;
}

.restaurant-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #964f52;
    letter-spacing: 0;
    line-height: 21px;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #fcf7f7;
    padding: 40px 0 72px 0;
    margin-top: auto;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.social-icons {
    display: flex;
    gap: 40px;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.copyright {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #964f52;
    letter-spacing: 0;
    line-height: 24px;
    text-align: center;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .container, .navbar {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 1200px) {
    .container, .navbar {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .restaurant-grid {
        margin-left: 8px;
        margin-right: 8px;
    }
    
    .restaurant-card {
        width: 100%;
        max-width: 458px;
    }
    
    .restaurant-image {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .restaurant-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .section-title {
        font-size: 20px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .container, .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 32px;
        margin-left: 8px;
    }
    
    .section-title, .category-title {
        margin-left: 8px;
    }
    
    .restaurant-grid {
        margin-left: 8px;
        margin-right: 8px;
    }
    
    .nav-brand {
        gap: 12px;
    }
    
    .brand-text {
        font-size: 16px;
    }
}

/* Image fallback */
.restaurant-image img {
    background-color: #f0f0f0;
}

.restaurant-image img[alt*="loading"] {
    background-color: #f0f0f0;
}