/* Pinco Bistro - Menu 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: Menu Hero */
.menu-hero {
    min-height: 90vh;
    background: linear-gradient(to bottom, var(--bg-cream), var(--bg-white));
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
}

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

.hero-text-block h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

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

.trio-img:hover {
    transform: translateX(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

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

/* Responsive for Section 1 */
@media (max-width: 1024px) {
    .menu-hero-content {
        gap: 3rem;
    }
    
    .hero-text-block h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-hero {
        padding: 3rem 1.5rem;
    }
    
    .menu-hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-text-block h2 {
        font-size: 2.5rem;
    }
    
    .hero-text-block p {
        font-size: 1rem;
    }
    
    .hero-images-trio {
        flex-direction: row;
    }
    
    .trio-img img {
        max-width: 100%;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-text-block h2 {
        font-size: 2.1rem;
    }
    
    .hero-images-trio {
        flex-direction: column;
    }
    
    .trio-img img {
        height: 200px;
    }
}




/* Section 2: Appetizers Menu */
.appetizers-menu {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

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

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

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

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.menu-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.menu-card:hover .menu-card-image img {
    transform: scale(1.15) rotate(2deg);
}

.menu-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.menu-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.menu-price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 25px;
    align-self: flex-start;
}

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

@media (max-width: 768px) {
    .appetizers-menu {
        padding: 3rem 1.5rem;
    }
    
    .appetizers-container h2 {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-card:last-child {
        grid-column: 1 / 2;
        max-width: 100%;
    }
    
    .menu-card-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .appetizers-container h2 {
        font-size: 2.1rem;
    }
    
    .menu-card-content h3 {
        font-size: 1.4rem;
    }
    
    .menu-card-image {
        height: 200px;
    }
}




/* Section 3: Main Courses */
.main-courses {
    padding: 5rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
}

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

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

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

.courses-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 2rem;
}

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

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

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

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

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

.course-item:hover img {
    transform: scale(1.2);
}

.course-overlay h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.course-overlay p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
}

.course-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 3 */
@media (max-width: 1024px) {
    .courses-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 320px);
    }
    
    .course-large {
        grid-row: 1 / 2;
    }
}

@media (max-width: 768px) {
    .main-courses {
        padding: 3rem 1.5rem;
    }
    
    .courses-container h2 {
        font-size: 2.7rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .courses-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 350px);
    }
    
    .course-large {
        grid-row: 1 / 2;
    }
}

@media (max-width: 480px) {
    .courses-container h2 {
        font-size: 2.3rem;
    }
    
    .courses-showcase {
        grid-template-rows: repeat(4, 320px);
    }
    
    .course-overlay h3 {
        font-size: 1.6rem;
    }
    
    .course-overlay p {
        font-size: 0.95rem;
    }
}




/* Section 4: Desserts & Sweets */
.desserts-sweets {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-cream));
}

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

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

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

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

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

.dessert-box {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

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

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

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

.dessert-box:hover .dessert-image::after {
    opacity: 1;
}

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

.dessert-box:hover .dessert-image img {
    transform: scale(1.2) rotate(-3deg);
}

.dessert-text {
    padding: 2rem;
}

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

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

.dessert-cost {
    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.12);
    border-radius: 25px;
}

/* Responsive for Section 4 */
@media (max-width: 1024px) {
    .desserts-display {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dessert-box:last-child {
        grid-column: 1 / 3;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .desserts-sweets {
        padding: 3rem 1.5rem;
    }
    
    .desserts-header h2 {
        font-size: 2.7rem;
    }
    
    .desserts-header p {
        font-size: 1rem;
    }
    
    .desserts-display {
        grid-template-columns: 1fr;
    }
    
    .dessert-box:last-child {
        grid-column: 1 / 2;
        max-width: 100%;
    }
    
    .dessert-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .desserts-header h2 {
        font-size: 2.3rem;
    }
    
    .dessert-text h3 {
        font-size: 1.5rem;
    }
    
    .dessert-image {
        height: 220px;
    }
}




/* Section 5: Beverages & Drinks */
.beverages-drinks {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

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

.beverages-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.beverage-section {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
}

.beverage-reverse {
    direction: rtl;
}

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

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

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

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

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

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

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

.beverage-list {
    list-style: none;
    padding: 0;
}

.beverage-list li {
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.beverage-list li:last-child {
    border-bottom: none;
}

.beverage-list li::before {
    content: '•';
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Responsive for Section 5 */
@media (max-width: 1024px) {
    .beverage-section {
        gap: 2.5rem;
    }
    
    .beverage-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .beverages-drinks {
        padding: 3rem 1.5rem;
    }
    
    .beverages-container h2 {
        font-size: 2.7rem;
    }
    
    .beverages-intro {
        font-size: 1rem;
    }
    
    .beverages-layout {
        gap: 3rem;
    }
    
    .beverage-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .beverage-reverse {
        direction: ltr;
    }
    
    .beverage-content h3 {
        font-size: 1.9rem;
    }
    
    .beverage-content p {
        font-size: 1rem;
    }
    
    .beverage-img-wrapper img {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .beverages-container h2 {
        font-size: 2.3rem;
    }
    
    .beverage-content h3 {
        font-size: 1.7rem;
    }
    
    .beverage-img-wrapper img {
        height: 260px;
    }
    
    .beverage-list li {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
}




/* Section 6: Table Reservation */
.table-reservation {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

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

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

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

.reservation-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

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

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

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

.res-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

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

.reservation-form-info h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.booking-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.method-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.method-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.reservation-benefits {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
}

.reservation-benefits h4 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.reservation-benefits ul {
    list-style: none;
    padding: 0;
}

.reservation-benefits ul li {
    font-size: 1.05rem;
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.reservation-benefits ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Responsive for Section 6 */
@media (max-width: 1024px) {
    .reservation-layout {
        gap: 3rem;
    }
    
    .reservation-form-info h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .table-reservation {
        padding: 3rem 1.5rem;
    }
    
    .reservation-container h2 {
        font-size: 2.7rem;
    }
    
    .reservation-intro {
        font-size: 1rem;
    }
    
    .reservation-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .reservation-form-info h3 {
        font-size: 2rem;
    }
    
    .reservation-images {
        grid-template-rows: repeat(2, 220px);
    }
    
    .res-img img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .reservation-container h2 {
        font-size: 2.3rem;
    }
    
    .reservation-form-info h3 {
        font-size: 1.8rem;
    }
    
    .method-card h4 {
        font-size: 1.3rem;
    }
    
    .reservation-images {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 220px);
    }
    
    .res-img-1 {
        grid-column: 1 / 2;
    }
    
    .reservation-benefits ul li {
        font-size: 1rem;
    }
}




/* Section 7: Special Events */
.special-events {
    padding: 5rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
}

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

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

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

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

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

.event-card-wide {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

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

.event-card-wide img {
    height: 100%;
}

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

.event-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-info h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.event-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive for Section 7 */
@media (max-width: 1024px) {
    .events-gallery {
        gap: 2rem;
    }
    
    .event-card-wide {
        grid-template-columns: 1fr;
    }
    
    .event-card-wide img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .special-events {
        padding: 3rem 1.5rem;
    }
    
    .events-container h2 {
        font-size: 2.7rem;
    }
    
    .events-lead {
        font-size: 1rem;
    }
    
    .events-gallery {
        grid-template-columns: 1fr;
    }
    
    .event-card-wide {
        grid-column: 1 / 2;
    }
    
    .event-card img {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .events-container h2 {
        font-size: 2.3rem;
    }
    
    .event-info h3 {
        font-size: 1.7rem;
    }
    
    .event-info p {
        font-size: 1rem;
    }
    
    .event-card img {
        height: 260px;
    }
}

/* Section 6: Interactive Reservation */
.reservation-interactive {
    padding: 5rem 2rem;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

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

.reservation-text h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.reservation-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50%;
    height: 4px;
    background: var(--secondary-color);
    transition: width 0.5s ease;
}

.reservation-text:hover h2::after {
    width: 100%;
}

.reservation-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.reservation-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-card {
    flex: 1;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.detail-card h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail-card .detail-link {
    display: block;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    transition: var(--transition);
}

.detail-card .detail-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.reservation-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reservation-cta p {
    margin-bottom: 1rem;
    font-style: italic;
    color: #555;
}

.btn-reserve {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-reserve:hover {
    background: var(--primary-color);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.5);
    transform: translateY(-2px);
}

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

.reservation-gallery img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.6s ease, box-shadow 0.3s ease;
    filter: brightness(0.95);
}

.reservation-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    filter: brightness(1);
}

.res-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 500px;
}

.res-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.res-img-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Responsive for Reservation Section */
@media (max-width: 1024px) {
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .reservation-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 250px;
    }
    
    .res-img-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        height: 100%;
    }
    
    .res-img-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .res-img-3 {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }
    
    .reservation-details {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .reservation-interactive {
        padding: 3rem 1.5rem;
    }
    
    .reservation-text h2 {
        font-size: 2.5rem;
    }
    
    .reservation-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 250px);
    }
    
    .res-img-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .res-img-2 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .res-img-3 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
}
