* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.container {
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Header Section - acts as overlay */
.header-section {
    width: 100%;
    height: 100vh;
    background: #f4e4a6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    overflow: hidden;
    transition: width 0.8s ease-in-out;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('foods.jpg') center center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1f2937;
    padding: 1rem;
}

.header-logo {
    margin-bottom: 0;
}

.header-image {
    max-width: 400px;
    height: 400px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Restaurants Column - positioned on right side */
.restaurants-column {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.restaurant-section {
    flex: 1;
    height: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.restaurant-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: 1;
    transition: filter 0.3s ease;
}

.yellow-section {
    background: url('yellow.jpg') center center/cover no-repeat;
}

.red-section {
    background: url('red.jpg') center center/cover no-repeat;
}

.content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #1f2937;
    padding: 1rem;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.logo-container {
    margin-bottom: 1rem;
}

.logo {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.6rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.info-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-item:nth-child(3) {
    grid-column: 1 / -1;
    padding: 0.8rem;
}

.info-item h3 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #1f2937;
}

.info-item p {
    font-size: 0.7rem;
    line-height: 1.3;
    color: #4b5563;
    word-break: break-word;
    hyphens: auto;
}

.visit-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: center;
}

.yellow-btn {
    background: linear-gradient(135deg, #f7d794, #f7d794);
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(247, 215, 148, 0.4);
    border: 2px solid #f0c78a;
}

.yellow-btn:hover {
    background: linear-gradient(135deg, #f4d08c, #f0c78a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 215, 148, 0.6);
}

.red-btn {
    background: linear-gradient(135deg, #a00, #a00);
    color: white;
    box-shadow: 0 4px 15px rgba(170, 0, 0, 0.4);
    border: 2px solid #a00;
}

.red-btn:hover {
    background: linear-gradient(135deg, #a00, #a00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(170, 0, 0, 0.6);
}

/* Hover effects for sections */
.restaurant-section:hover {
    transform: scale(1.01);
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        overflow: auto;
        height: auto;
    }
    
    .container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
        position: relative;
    }
    
    .container.animated .header-section {
        height: 200px;
        width: 100% !important;
    }
    
    .container.animated .restaurants-column {
        width: 100vw !important;
        margin-top: 200px;
    }
    
    .header-section {
        width: 100% !important;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 20;
        transition: height 0.8s ease-in-out;
    }
    
    .header-image {
        max-width: 250px;
        height: 180px;
    }
    
    .restaurants-column {
        width: 100vw !important;
        flex-direction: column;
        height: auto;
        min-height: 600px;
        position: relative;
        z-index: 1;
        margin-top: 100vh;
    }
    
    .restaurant-section {
        min-height: 300px;
    }
    
    .content {
        padding: 1rem;
        max-width: 400px;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .info-container {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .info-item {
        padding: 0.6rem;
    }
    
    .info-item:nth-child(3) {
        padding: 0.8rem;
    }
    
    .info-item h3 {
        font-size: 0.8rem;
    }
    
    .info-item p {
        font-size: 0.7rem;
    }
    
    .visit-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header-section {
        width: 100% !important;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 20;
    }
    
    .container.animated .header-section {
        height: 200px;
        width: 100% !important;
    }
    
    .container.animated .restaurants-column {
        width: 100vw !important;
        margin-top: 200px;
    }
    
    .header-image {
        max-width: 200px;
        height: 180px;
    }
    
    .restaurants-column {
        width: 100vw !important;
        min-height: 500px;
        position: relative;
        z-index: 1;
        margin-top: 100vh;
    }
    
    .content {
        max-width: 380px;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .info-item {
        padding: 0.6rem;
    }
    
    .info-item:nth-child(3) {
        grid-column: 1;
        padding: 0.8rem;
    }
    
    .info-item h3 {
        font-size: 0.8rem;
    }
    
    .info-item p {
        font-size: 0.7rem;
    }
    
    .visit-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.8rem;
    }
}

/* Animated state classes */
.container.animated .header-section {
    width: 50%;
}

.container.animated .restaurants-column {
    width: 50%;
} 