/* Buffet Page Specific Styles */

/* Card Styles */
.buffet-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.buffet-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Section Headers */
.buffet-page .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.buffet-page .section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--penkey-orange);
}

.buffet-page .section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--penkey-navy);
    margin-bottom: 0.75rem;
}

.buffet-page .section-header p {
    font-size: 1.1rem;
    color: var(--penkey-navy);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Cards */
.content-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2.5rem;
}

/* Split Sections */
.split-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .split-section {
        flex-direction: row;
    }
    
    .split-section-content,
    .split-section-image {
        flex: 1;
    }
    
    .split-section.image-right .split-section-content {
        order: 1;
    }
    
    .split-section.image-right .split-section-image {
        order: 2;
    }
    
    .split-section.image-left .split-section-content {
        order: 2;
    }
    
    .split-section.image-left .split-section-image {
        order: 1;
    }
}

.split-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Homepage Banner Styles */
.buffet-banner-section {
    padding: 3rem 0;
    background-color: var(--penkey-cream);
}

.buffet-banner-container {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .buffet-banner-container {
        flex-direction: row;
        height: 400px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .buffet-banner-content,
    .buffet-banner-image {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .buffet-banner-content {
        padding: 2rem;
    }
    
    .buffet-banner-content h3 {
        font-size: 1.4rem;
    }
    
    .buffet-banner-content p {
        font-size: 0.95rem;
    }
}

.buffet-banner-content {
    padding: 4rem 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.buffet-banner-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--penkey-navy);
    margin-bottom: 0.75rem;
}

.buffet-banner-content p {
    margin-bottom: 1rem;
    color: var(--penkey-navy);
    font-size: 1rem;
    line-height: 1.5;
}

.buffet-banner-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.buffet-banner-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.buffet-banner-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--penkey-orange);
    font-weight: bold;
}

.buffet-banner-image {
    position: relative;
    flex: 1;
    min-height: 300px;
    overflow: hidden;
}

.buffet-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0.5rem 0.5rem;
    transition: transform 0.3s ease;
}

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

@media (min-width: 768px) {
    .buffet-banner-image img {
        border-radius: 0 0.5rem 0.5rem 0;
    }
}

.buffet-banner-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
}

.buffet-cta-button {
    display: inline-block;
    background-color: var(--penkey-orange);
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--penkey-orange);
}

.buffet-cta-button:hover {
    background-color: transparent;
    color: var(--penkey-orange) !important;
    border-color: var(--penkey-orange);
}
