
.about-restaurant-section {
    padding: 140px 0;
    background: #f8f8f8; 
    font-family: "Clarity City", sans-serif;
    position: relative;
    overflow: hidden;
}

.about-restaurant-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-restaurant-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}


.about-restaurant-left {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.chef-image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 3/4; 
}

.chef-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chef-photo:hover {
    transform: scale(1.05);
}

.restaurant-info {
    text-align: left;
}

.restaurant-name {
    font-family: "Clarity City", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.restaurant-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone, .website {
    font-family: "Clarity City", sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    letter-spacing: 0.5px;
}

.phone a {
    color: #E51E2A;
    text-decoration: underline;
    text-decoration-color: #E51E2A;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.phone a:hover {
    color: #c41e2a;
    text-decoration-color: #c41e2a;
}

.phone a:visited {
    color: #E51E2A;
    text-decoration-color: #E51E2A;
}


.about-restaurant-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 70px;
}


.decorative-circle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f5f5f5;
    opacity: 0.6;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-title {
    font-family: "Clarity City", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-description {
    font-family: "Clarity City", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}

.about-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


.about-btn-reserve,
.about-btn-directions {
    display: inline-block;
    padding: 16px 32px;
    font-family: "Clarity City", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    align-content: space-evenly;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.about-btn-reserve {
    background: #E51E2A;
    color: #ffffff;
}

.about-btn-reserve:hover {
    background: #c41e3a;
    transform: translateY(-2px);
}

.about-btn-directions {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.about-btn-directions:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}


.sushi-image {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    align-self: flex-end;
    aspect-ratio: 1/1; 
}

.sushi-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sushi-photo:hover {
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .about-restaurant-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-btn-reserve,
    .about-btn-directions {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .chef-image {
        max-width: 100%;
        aspect-ratio: 3/4; 
    }
    
    .decorative-circle {
        width: 150px;
        height: 150px;
        bottom: -30px;
        right: -30px;
    }
    
    .sushi-image {
        max-width: 250px;
        align-self: center;
        aspect-ratio: 1/1; 
    }
}

@media (max-width: 480px) {
    .about-restaurant-section {
        padding: 60px 0;
    }
    
    .about-restaurant-container {
        padding: 0 15px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .restaurant-name {
        font-size: 20px;
    }
    
    .chef-image {
        aspect-ratio: 3/4; 
    }
    
    .sushi-image {
        max-width: 200px;
        aspect-ratio: 1/1; 
    }
    
    .decorative-circle {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }
}