/* ============================================
   DINING PAGE STYLES
   Hotel Kaiser Bridge
   ============================================ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.dining-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.dining-hero .hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dining-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dining-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.5)
    );
}

.dining-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.dining-hero .hero-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.dining-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.dining-hero .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION COMMON STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.dining-section {
    padding: 6rem 0;
}

.dining-section:nth-child(even) {
    background: var(--sand);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BREAKFAST SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.breakfast-section {
    background: white;
}

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

.section-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.breakfast-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--warm-gray);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Images Layout */
.section-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-wrapper.main-image {
    grid-column: 1 / -1;
    height: 350px;
}

.image-wrapper.secondary-image {
    grid-column: 1 / -1;
    height: 250px;
}

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

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CORFIOT FLAVOURS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.corfiot-section {
    background: var(--sand);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--warm-gray);
}

/* Dishes Grid */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dish-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

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

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

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

.dish-info {
    padding: 1.5rem;
}

.dish-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.dish-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--warm-gray);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MEDITERRANEAN OPTIONS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.mediterranean-section {
    background: white;
}

/* Menu Options Grid */
.menu-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-option {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--sand);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.menu-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--ocean-blue);
}

.menu-icon svg {
    width: 100%;
    height: 100%;
}

.menu-option h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.75rem;
}

.menu-option p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--warm-gray);
}

/* CTA Section */
.section-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--sand);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRACTICAL INFO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.practical-info-section {
    background: white;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--sand);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--ocean-blue);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
}

/* Hours Card */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
}

.meal-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-blue);
}

.meal-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold);
}

/* Location Features */
.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: white;
    color: var(--ocean-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    border: 1px solid var(--ocean-blue);
}

/* Dietary Options */
.dietary-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.dietary-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: white;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    border: 1px solid var(--gold);
}

/* Contact Note */
.contact-note {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.05) 0%, rgba(201, 165, 104, 0.05) 100%);
    border-radius: 8px;
    border-left: 4px solid var(--ocean-blue);
}

.contact-note p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--warm-gray);
    margin: 0;
}

.contact-note a {
    color: var(--ocean-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.contact-note a:hover {
    border-bottom-color: var(--ocean-blue);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE DESIGN
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 1024px) {
    .dining-hero .hero-title {
        font-size: 3rem;
    }

    .section-grid {
        gap: 3rem;
    }

    .features-grid,
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dining-section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .dining-hero {
        height: 60vh;
        min-height: 400px;
    }

    .dining-hero .hero-title {
        font-size: 2.5rem;
    }

    .dining-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Swap order on mobile: images first, text second */
    .section-text {
        order: 2;
    }

    .section-images {
        order: 1;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .image-wrapper.main-image {
        height: 250px;
    }

    .image-wrapper.secondary-image {
        height: 200px;
    }

    .features-grid,
    .dishes-grid,
    .menu-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .dish-image {
        height: 200px;
    }

    .section-cta {
        padding: 2rem 1.5rem;
    }

    .cta-text {
        font-size: 1.25rem;
    }

    .contact-note {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dining-hero .hero-title {
        font-size: 2rem;
    }

    .dining-hero .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .feature-card,
    .menu-option {
        padding: 1.5rem 1rem;
    }
}
