/* Pinco Bistro - Home Page Styles */

/* Utility class for h1 */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Section 1: Hero Gallery */
.hero-gallery {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #ffffff 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    font-style: italic;
    line-height: 1.7;
    padding-left: 1.5rem;
    border-left: 3px solid var(--secondary-color);
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
    animation: fadeInRight 1s ease-out;
}

.hero-image-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

.hero-image-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.hero-image-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.hero-image-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-image-item:hover img {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-gallery {
        padding: 3rem 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description,
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-images {
        grid-template-rows: repeat(2, 180px);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-gallery {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description,
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-images {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    
    .hero-image-1,
    .hero-image-2,
    .hero-image-3 {
        grid-column: 1 / 2;
    }
    
    .hero-image-1 {
        grid-row: 1 / 2;
    }
    
    .hero-image-2 {
        grid-row: 2 / 3;
    }
    
    .hero-image-3 {
        grid-row: 3 / 4;
    }
}




/* Section 2: About Pinco */
.about-pinco {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-image-left,
.about-image-right {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.about-image-left img,
.about-image-right img {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-left:hover,
.about-image-right:hover {
    transform: scale(1.05);
}

.about-image-left:hover img,
.about-image-right:hover img {
    transform: scale(1.15) rotate(2deg);
}

.about-text-center {
    padding: 2rem;
    text-align: center;
}

.about-text-center h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-text-center h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.about-text-center p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Responsive for Section 2 */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .about-image-right {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .about-text-center {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }
    
    .about-text-center h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .about-pinco {
        padding: 3rem 1.5rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-left,
    .about-image-right,
    .about-text-center {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    
    .about-image-left img,
    .about-image-right img {
        max-width: 100%;
        height: 350px;
        margin: 0 auto;
    }
    
    .about-text-center h2 {
        font-size: 2rem;
    }
    
    .about-text-center p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-text-center h2 {
        font-size: 1.7rem;
    }
    
    .about-image-left img,
    .about-image-right img {
        height: 280px;
    }
}




/* Section 3: Signature Dishes Carousel */
.signature-dishes {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--bg-cream), var(--bg-white));
}

.dishes-container {
    max-width: 1400px;
    margin: 0 auto;
}

.dishes-container h2 {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.dishes-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.dishes-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.dish-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.dish-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.dish-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.dish-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: var(--transition);
}

.dish-card:hover .dish-image::after {
    opacity: 1;
}

.dish-image img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.15);
}

.dish-info {
    padding: 2rem;
}

.dish-info h3 {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.dish-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.dish-price {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
}

/* Responsive for Section 3 */
@media (max-width: 1024px) {
    .dishes-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .dish-card:last-child {
        grid-column: 1 / 3;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .signature-dishes {
        padding: 3rem 1.5rem;
    }
    
    .dishes-container h2 {
        font-size: 2.3rem;
    }
    
    .dishes-intro {
        font-size: 1rem;
    }
    
    .dishes-carousel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dish-card:last-child {
        grid-column: 1 / 2;
        max-width: 100%;
    }
    
    .dish-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .dishes-container h2 {
        font-size: 1.9rem;
    }
    
    .dish-info h3 {
        font-size: 1.4rem;
    }
    
    .dish-info p {
        font-size: 0.9rem;
    }
}




/* Section 4: Coffee Culture */
.coffee-culture {
    padding: 5rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
}

.coffee-container {
    max-width: 1400px;
    margin: 0 auto;
}

.coffee-header {
    text-align: center;
    margin-bottom: 3rem;
}

.coffee-header h2 {
    font-size: 3.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.coffee-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.coffee-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.coffee-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.coffee-large {
    grid-row: 1 / 3;
}

.coffee-item img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.coffee-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(60%);
    transition: var(--transition);
}

.coffee-item:hover .coffee-overlay {
    transform: translateY(0);
}

.coffee-item:hover img {
    transform: scale(1.1);
}

.coffee-overlay h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.coffee-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.coffee-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Responsive for Section 4 */
@media (max-width: 1024px) {
    .coffee-grid {
        grid-template-rows: repeat(2, 250px);
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .coffee-culture {
        padding: 3rem 1.5rem;
    }
    
    .coffee-header h2 {
        font-size: 2.5rem;
    }
    
    .coffee-header p {
        font-size: 1rem;
    }
    
    .coffee-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 280px);
    }
    
    .coffee-large {
        grid-row: 1 / 2;
    }
    
    .coffee-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .coffee-header h2 {
        font-size: 2rem;
    }
    
    .coffee-grid {
        grid-template-rows: repeat(3, 250px);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
}




/* Section 5: Breakfast & Brunch */
.breakfast-brunch {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.breakfast-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.breakfast-content h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.breakfast-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.breakfast-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-box {
    padding: 1.5rem;
    background: var(--bg-cream);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.breakfast-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
}

.breakfast-img-1,
.breakfast-img-2,
.breakfast-img-3 {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.breakfast-img-1 {
    grid-column: 1 / 3;
}

.breakfast-img-1 img,
.breakfast-img-2 img,
.breakfast-img-3 img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.breakfast-img-1:hover,
.breakfast-img-2:hover,
.breakfast-img-3:hover {
    transform: scale(1.05);
}

.breakfast-img-1:hover img,
.breakfast-img-2:hover img,
.breakfast-img-3:hover img {
    transform: scale(1.15) rotate(-2deg);
}

/* Responsive for Section 5 */
@media (max-width: 1024px) {
    .breakfast-wrapper {
        gap: 3rem;
    }
    
    .breakfast-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .breakfast-brunch {
        padding: 3rem 1.5rem;
    }
    
    .breakfast-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .breakfast-content h2 {
        font-size: 2.2rem;
    }
    
    .breakfast-content > p {
        font-size: 1rem;
    }
    
    .breakfast-features {
        grid-template-columns: 1fr;
    }
    
    .breakfast-images {
        grid-template-rows: repeat(2, 180px);
    }
}

@media (max-width: 480px) {
    .breakfast-content h2 {
        font-size: 1.9rem;
    }
    
    .breakfast-images {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 220px);
    }
    
    .breakfast-img-1 {
        grid-column: 1 / 2;
    }
    
    .feature-box h3 {
        font-size: 1.2rem;
    }
}




/* Section 6: Ambiance & Interior */
.ambiance-interior {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

.ambiance-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ambiance-container h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.ambiance-lead {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.ambiance-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ambiance-text h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.ambiance-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.ambiance-images-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ambiance-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.ambiance-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.ambiance-img:hover::before {
    opacity: 1;
}

.ambiance-img:hover {
    transform: translateY(-10px) rotate(2deg);
}

.ambiance-img img {
    width: 100%;
    max-width: 350px;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ambiance-img:hover img {
    transform: scale(1.1);
}

/* Responsive for Section 6 */
@media (max-width: 1024px) {
    .ambiance-container h2 {
        font-size: 2.7rem;
    }
    
    .ambiance-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .ambiance-images-grid {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .ambiance-interior {
        padding: 3rem 1.5rem;
    }
    
    .ambiance-container h2 {
        font-size: 2.3rem;
    }
    
    .ambiance-lead {
        font-size: 1rem;
    }
    
    .ambiance-text h3 {
        font-size: 1.8rem;
    }
    
    .ambiance-text p {
        font-size: 1rem;
    }
    
    .ambiance-images-grid {
        flex-direction: column;
    }
    
    .ambiance-img img {
        max-width: 100%;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .ambiance-container h2 {
        font-size: 2rem;
    }
    
    .ambiance-text h3 {
        font-size: 1.6rem;
    }
    
    .ambiance-img img {
        height: 220px;
    }
}




/* Section 7: Chef's Team */
.chefs-team {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3.5rem;
}

.team-showcase {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.team-image-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.team-image-block img {
    width: 100%;
    max-width: 350px;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-image-block:hover img {
    transform: scale(1.1);
}

.team-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--secondary-color);
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.team-description h3 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.team-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.team-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    max-width: 350px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Responsive for Section 7 */
@media (max-width: 1024px) {
    .team-container h2 {
        font-size: 2.7rem;
    }
    
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .team-image-block img {
        max-width: 100%;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .chefs-team {
        padding: 3rem 1.5rem;
    }
    
    .team-container h2 {
        font-size: 2.3rem;
    }
    
    .team-intro {
        font-size: 1rem;
    }
    
    .team-description h3 {
        font-size: 1.9rem;
    }
    
    .team-description p {
        font-size: 1rem;
    }
    
    .team-image-block img {
        height: 400px;
    }
    
    .gallery-item img {
        max-width: 100%;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .team-container h2 {
        font-size: 2rem;
    }
    
    .team-description h3 {
        font-size: 1.7rem;
    }
    
    .team-gallery {
        grid-template-columns: 1fr;
    }
    
    .team-image-block img {
        height: 350px;
    }
    
    .team-badge {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}




/* Section 8: Fresh Ingredients */
.fresh-ingredients {
    padding: 5rem 2rem;
    background: linear-gradient(to right, var(--bg-cream), var(--bg-white));
}

.ingredients-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.ingredients-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ingredient-img-main,
.ingredient-img-secondary {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.ingredient-img-main::after,
.ingredient-img-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.ingredient-img-main:hover::after,
.ingredient-img-secondary:hover::after {
    opacity: 1;
}

.ingredient-img-main img {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ingredient-img-secondary img {
    width: 100%;
    max-width: 350px;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ingredient-img-main:hover img,
.ingredient-img-secondary:hover img {
    transform: scale(1.1) rotate(-2deg);
}

.ingredients-content h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.ingredients-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Responsive for Section 8 */
@media (max-width: 1024px) {
    .ingredients-wrapper {
        gap: 3rem;
    }
    
    .ingredients-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .fresh-ingredients {
        padding: 3rem 1.5rem;
    }
    
    .ingredients-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .ingredients-content h2 {
        font-size: 2.2rem;
    }
    
    .ingredients-content p {
        font-size: 1rem;
    }
    
    .ingredient-img-main img,
    .ingredient-img-secondary img {
        max-width: 100%;
    }
    
    .ingredient-img-main img {
        height: 300px;
    }
    
    .ingredient-img-secondary img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .ingredients-content h2 {
        font-size: 1.9rem;
    }
    
    .ingredient-img-main img {
        height: 260px;
    }
    
    .ingredient-img-secondary img {
        height: 200px;
    }
}




/* Section 9: Desserts & Pastries */
.desserts-pastries {
    padding: 5rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
}

.desserts-container {
    max-width: 1400px;
    margin: 0 auto;
}

.desserts-container h2 {
    font-size: 3.2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.desserts-lead {
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.desserts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.dessert-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dessert-feature:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
}

.dessert-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.dessert-img img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dessert-feature:hover .dessert-img img {
    transform: scale(1.15) rotate(3deg);
}

.dessert-details {
    padding: 2rem;
}

.dessert-details h3 {
    font-size: 1.7rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.dessert-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.dessert-price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0.6rem 1.8rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 30px;
    border: 2px solid var(--secondary-color);
}

/* Responsive for Section 9 */
@media (max-width: 1024px) {
    .desserts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desserts-pastries {
        padding: 3rem 1.5rem;
    }
    
    .desserts-container h2 {
        font-size: 2.5rem;
    }
    
    .desserts-lead {
        font-size: 1rem;
    }
    
    .desserts-grid {
        grid-template-columns: 1fr;
    }
    
    .dessert-feature:last-child {
        grid-column: 1 / 2;
        max-width: 100%;
    }
    
    .dessert-img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .desserts-container h2 {
        font-size: 2.1rem;
    }
    
    .dessert-details h3 {
        font-size: 1.5rem;
    }
    
    .dessert-details p {
        font-size: 0.95rem;
    }
    
    .dessert-img {
        height: 220px;
    }
}




/* Section 10: Beverages Collection */
.beverages-collection {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
}

.beverages-container {
    max-width: 1400px;
    margin: 0 auto;
}

.beverages-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.beverages-header h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.beverages-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    max-width: 950px;
    margin: 0 auto;
}

.beverages-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.beverage-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.beverage-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.beverage-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.beverage-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.beverage-card:hover .beverage-image::before {
    opacity: 1;
}

.beverage-image img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.beverage-card:hover .beverage-image img {
    transform: scale(1.2);
}

.beverage-info {
    padding: 2rem;
    flex-grow: 1;
}

.beverage-info h3 {
    font-size: 1.7rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.beverage-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Responsive for Section 10 */
@media (max-width: 1024px) {
    .beverages-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .beverages-collection {
        padding: 3rem 1.5rem;
    }
    
    .beverages-header h2 {
        font-size: 2.5rem;
    }
    
    .beverages-header p {
        font-size: 1rem;
    }
    
    .beverages-showcase {
        grid-template-columns: 1fr;
    }
    
    .beverage-card:last-child {
        grid-column: 1 / 2;
        max-width: 100%;
    }
    
    .beverage-image {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .beverages-header h2 {
        font-size: 2.1rem;
    }
    
    .beverage-info h3 {
        font-size: 1.5rem;
    }
    
    .beverage-info p {
        font-size: 0.95rem;
    }
    
    .beverage-image {
        height: 230px;
    }
}




/* Section 11: Lunch & Dinner Specials */
.lunch-dinner-specials {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.specials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.specials-container h2 {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.specials-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3.5rem;
}

.specials-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(2, 350px);
    gap: 2rem;
}

.special-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.special-highlight {
    grid-row: 1 / 3;
}

.special-item img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.special-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    color: var(--text-light);
    transform: translateY(40%);
    transition: var(--transition);
}

.special-item:hover .special-overlay {
    transform: translateY(0);
}

.special-item:hover img {
    transform: scale(1.15);
}

.special-overlay h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.special-overlay > p:first-of-type {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.special-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.special-price {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0.7rem 2rem;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    border: 2px solid var(--secondary-color);
}

/* Responsive for Section 11 */
@media (max-width: 1024px) {
    .specials-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 320px);
    }
}

@media (max-width: 768px) {
    .lunch-dinner-specials {
        padding: 3rem 1.5rem;
    }
    
    .specials-container h2 {
        font-size: 2.5rem;
    }
    
    .specials-intro {
        font-size: 1rem;
    }
    
    .specials-layout {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 350px);
    }
    
    .special-highlight {
        grid-row: 1 / 2;
    }
    
    .special-overlay {
        transform: translateY(30%);
    }
}

@media (max-width: 480px) {
    .specials-container h2 {
        font-size: 2.1rem;
    }
    
    .specials-layout {
        grid-template-rows: repeat(3, 320px);
    }
    
    .special-overlay h3 {
        font-size: 1.7rem;
    }
    
    .special-overlay {
        padding: 2rem;
    }
    
    .special-description {
        font-size: 0.95rem;
    }
}




/* Section 12: Outdoor Terrace */
.outdoor-terrace {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--bg-cream), var(--bg-white));
}

.terrace-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.terrace-content h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.terrace-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.terrace-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.terrace-img-top,
.terrace-img-bottom {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: var(--transition);
}

.terrace-img-top::after,
.terrace-img-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.2), rgba(212, 175, 55, 0.2));
    opacity: 0;
    transition: var(--transition);
}

.terrace-img-top:hover::after,
.terrace-img-bottom:hover::after {
    opacity: 1;
}

.terrace-img-top:hover,
.terrace-img-bottom:hover {
    transform: translateX(15px);
}

.terrace-img-top img,
.terrace-img-bottom img {
    width: 100%;
    max-width: 350px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.terrace-img-top:hover img,
.terrace-img-bottom:hover img {
    transform: scale(1.1);
}

/* Responsive for Section 12 */
@media (max-width: 1024px) {
    .terrace-container {
        gap: 3rem;
    }
    
    .terrace-content h2 {
        font-size: 2.7rem;
    }
}

@media (max-width: 768px) {
    .outdoor-terrace {
        padding: 3rem 1.5rem;
    }
    
    .terrace-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .terrace-content h2 {
        font-size: 2.3rem;
    }
    
    .terrace-content p {
        font-size: 1rem;
    }
    
    .terrace-images {
        flex-direction: row;
    }
    
    .terrace-img-top img,
    .terrace-img-bottom img {
        max-width: 100%;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .terrace-content h2 {
        font-size: 2rem;
    }
    
    .terrace-images {
        flex-direction: column;
    }
    
    .terrace-img-top img,
    .terrace-img-bottom img {
        height: 220px;
    }
}




/* Section 13: Wine & Bar */
.wine-bar {
    padding: 5rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
}

.wine-container {
    max-width: 1400px;
    margin: 0 auto;
}

.wine-container h2 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.wine-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wine-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.wine-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.wine-images-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.wine-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.wine-img-1 {
    grid-column: 1 / 3;
}

.wine-img img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wine-img-1 img {
    height: 300px;
}

.wine-img-2 img {
    height: 250px;
}

.wine-img:hover {
    transform: translateY(-10px) rotate(-2deg);
}

.wine-img:hover img {
    transform: scale(1.15);
}

/* Responsive for Section 13 */
@media (max-width: 1024px) {
    .wine-container h2 {
        font-size: 3rem;
    }
    
    .wine-layout {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .wine-bar {
        padding: 3rem 1.5rem;
    }
    
    .wine-container h2 {
        font-size: 2.5rem;
    }
    
    .wine-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .wine-lead,
    .wine-text p {
        font-size: 1rem;
    }
    
    .wine-img-1 img {
        max-width: 100%;
        height: 260px;
    }
    
    .wine-img-2 img {
        max-width: 100%;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .wine-container h2 {
        font-size: 2.1rem;
    }
    
    .wine-images-stack {
        grid-template-columns: 1fr;
    }
    
    .wine-img-1 {
        grid-column: 1 / 2;
    }
    
    .wine-img-1 img,
    .wine-img-2 img {
        height: 240px;
    }
}




/* Section 14: Guest Experience */
.guest-experience {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
}

.experience-container h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.experience-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3.5rem;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.experience-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.experience-reverse {
    direction: rtl;
}

.experience-reverse > * {
    direction: ltr;
}

.experience-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.experience-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.experience-image img {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-image:hover img {
    transform: scale(1.1);
}

.experience-text h3 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.experience-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

/* Responsive for Section 14 */
@media (max-width: 1024px) {
    .experience-container h2 {
        font-size: 2.7rem;
    }
    
    .experience-block {
        gap: 2.5rem;
    }
    
    .experience-text h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .guest-experience {
        padding: 3rem 1.5rem;
    }
    
    .experience-container h2 {
        font-size: 2.3rem;
    }
    
    .experience-intro {
        font-size: 1rem;
    }
    
    .experience-grid {
        gap: 3rem;
    }
    
    .experience-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-reverse {
        direction: ltr;
    }
    
    .experience-text h3 {
        font-size: 1.9rem;
    }
    
    .experience-text p {
        font-size: 1rem;
    }
    
    .experience-image img {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .experience-container h2 {
        font-size: 2rem;
    }
    
    .experience-text h3 {
        font-size: 1.7rem;
    }
    
    .experience-image img {
        height: 260px;
    }
}




/* Section 15: Location & Contact */
.location-contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
}

.location-container h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.location-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3.5rem;
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.location-images-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.location-images-small img {
    width: 100%;
    max-width: 350px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.location-images-small img:hover {
    transform: scale(1.05);
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* Responsive for Section 15 */
@media (max-width: 1024px) {
    .location-container h2 {
        font-size: 2.7rem;
    }
    
    .location-layout {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .location-contact {
        padding: 3rem 1.5rem;
    }
    
    .location-container h2 {
        font-size: 2.3rem;
    }
    
    .location-intro {
        font-size: 1rem;
    }
    
    .location-layout {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        min-height: 400px;
    }
    
    .location-images-small img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .location-container h2 {
        font-size: 2rem;
    }
    
    .info-card h3 {
        font-size: 1.4rem;
    }
    
    .info-card p {
        font-size: 0.95rem;
    }
    
    .location-images-small {
        grid-template-columns: 1fr;
    }
    
    .location-images-small img {
        height: 180px;
    }
    
    .map-placeholder {
        min-height: 350px;
    }
}

.map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
}
