
:root {

    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 50px;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --column-gap: 100px; 
}

.restaurant-info-section {
    padding: 120px 0;
    background-color: var(--bg-color);
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-content {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: var(--column-gap); 
}

.info-text {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 20px;
    margin-bottom: var(--spacing-md);
}

.info-title {
    font-size: clamp(36px, 5vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-main);
    position: relative;
}



.info-description {
    max-width: 640px;
    padding: 30px 0;
}

.info-description p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

.highlight-text {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.accent {
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
}

.accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 107, 74, 0.2);
    z-index: -1;
}
.info-feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
}

.info-images-container {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.info-images {
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    position: relative;
}

.image-primary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 1;
    transform: rotate(-2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-primary:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.image-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-secondary {
    position: absolute;
    top: 10%;
    right: 0;
    width: 65%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 2;
    transform: rotate(3deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-secondary:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-primary:hover img,
.image-secondary:hover img {
    transform: scale(1.05);
}

@media (min-width: 992px) {
    .info-content {
        flex-direction: row;
    }
    
    .info-text {
        flex: 0 0 calc(50% - var(--column-gap) / 2); 
        max-width: calc(50% - var(--column-gap) / 2);
        margin-bottom: 0;
    }
    
    .info-images-container {
        flex: 0 0 calc(50% - var(--column-gap) / 2); 
        max-width: calc(50% - var(--column-gap) / 2);
        height: auto;
    }
    
    .info-images {
        height: 100%;
        padding-bottom: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    
    .image-primary {
        width: 75%;
        height: 60%;
        bottom: 0;
        left: 0;
    }
    
    .image-secondary {
        width: 60%;
        height: 50%;
        top: 10%;
        right: 0;
    }
}

@media (max-width: 991px) {
    .restaurant-info-section {
        padding: var(--spacing-md) 0;
    }
    
    .info-content {
        gap: 60px;
    }
    
    .info-title {
        font-size: clamp(32px, 4vw, 46px);
    }
    
    .info-images {
        padding-bottom: 80%;
    }
    
    .image-primary {
        width: 70%;
        left: 0;
    }
    
    .image-secondary {
        width: 50%;
        right: 0;
        top: 20%;
    }
}

@media (max-width: 768px) {
    .restaurant-info-section {
        padding: 40px 0;
    }
    .info-text{
        margin-bottom: 0 !important;
    }
    .info-content {
        gap: 40px;
    }
    
    .info-title {
        font-size: 32px;
    }
    
    .highlight-text {
        font-size: 18px;
    }
    
    .info-description p {
        font-size: 15px;
    }
    
    .info-images {
        padding-bottom: 100%;
    }
    
    .image-primary {
        width: 75%;
    }
    
    .image-secondary {
        width: 55%;
    }
}

@media (max-width: 576px) {
    .info-content {
        gap: 30px; 
    }
    
    .info-title {
        font-size: 28px;
    }
    
    .info-description p {
        font-size: 14px;
    }
    
    .info-images {
        padding-bottom: 130%;
    }
    
    .image-primary {
        width: 80%;
        bottom: 5%;
    }
    
    .image-secondary {
        width: 60%;
        top: 10%;
    }
    
    .info-feature {
        padding: 8px 12px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .feature-text {
        font-size: 14px;
    }
}