/* Main Wrapper */
.kks-menu-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    /* Default text color for dark theme */
}

/* --- LANDING PAGE --- */
.kks-landing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    min-height: 400px;
    align-items: center;
    flex-wrap: wrap;
}

.kks-landing-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #fff;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.kks-landing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

/* Gradients */
.brunch-card {
    background: linear-gradient(135deg, #FF9966 0%, #FF5E62 100%);
}

.dinner-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.kks-landing-card .kks-card-content h3 {
    margin: 0 0 10px;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.kks-landing-card .kks-card-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

/* --- MENU SECTIONS (Dark Theme) --- */

/* Nav Bar - White Strip */
.kks-nav-bar {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
    padding: 15px 0;
    border-bottom: 4px solid #f39c12;
    /* Orange Accent */
    text-align: center;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.kks-nav-bar a {
    display: inline-block;
    color: #333;
    text-decoration: none;
    padding: 8px 15px;
    margin: 0 2px;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kks-nav-bar a:hover {
    color: #f39c12;
}

/* Grid Layout */
.kks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

/* Item - Dark Theme */
.kks-item {
    background: transparent;
    padding: 0 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kks-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.kks-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    /* White Name */
}

.kks-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f39c12;
    /* Orange Price */
    margin-left: 10px;
}

.kks-desc {
    font-size: 0.9rem;
    color: #ccc;
    /* Light Grey Desc */
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Headlines */
.kks-cat-title {
    text-align: left;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 50px 20px 30px;
    text-transform: uppercase;
    color: #f39c12;
    /* Orange Headers */
    letter-spacing: 0px;
    border-bottom: none;
}

.kks-sub-title {
    grid-column: 1 / -1;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    color: #f39c12;
}

.kks-subtitle {
    grid-column: 1 / -1;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    /* Match the primary header color */
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: left;
    display: block;
    width: 100%;
}

/* Back Button */
.kks-section-header {
    padding: 20px 20px 0;
    margin-bottom: 20px;
}

.kks-back-button {
    background: transparent;
    border: 1px solid #f39c12;
    color: #f39c12;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.kks-back-button:hover {
    background: #f39c12;
    color: #000;
}

/* Dark Background Helper (Optional, if theme isn't dark) */
body.page-template-default {
    /* Try to force dark bg only for this section if needed, 
       but usually safer to style wrapper if theme allows full width */
}

.kks-menu-section {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}