/*
Theme Name: Simple Template
Theme URI: https://example.com
Author: You
Description: Simple theme with royal blue menu buttons
Version: 2.4
Text Domain: simple-template
*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;   /* Cleaner modern font */
    line-height: 1.6;
    color: #333;
}

/* ====================== HEADER ====================== */
header {
    background-color: #ffffff;
    padding: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #eeeeee;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Clean Home Logo */
.home-logo img {
    max-height: 85px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.home-logo:hover img {
    transform: scale(1.05);

}

/* Centered Menu Wrapper */
.menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Royal Blue Buttons - Improved */
.main-menu {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    justify-content: center !important;
}

.main-menu li {
    margin: 0 !important;
}

.main-menu a {
    background-color: #3b6ef0 !important;
    color: white !important;
    padding: 14px 14px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 22px !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;        /* Centers text vertically */
    justify-content: center !important;   /* Centers text horizontally */
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(59, 110, 240, 0.4) !important;
    white-space: nowrap;
    min-width: 140px;
    height: 44px;                         /* Fixed height for better centering */
    text-align: center;
}

.main-menu a:hover {
    background-color: #2f5ad9 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 25px rgba(59, 110, 240, 0.5) !important;
}
/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .main-menu a {
        padding: 16px 32px !important;
        font-size: 17px !important;
    }
    
    .home-logo img {
        max-height: 65px;
    }
}

/* Footer - White Background with Royal Blue Text */
footer {
    background-color: #ffffff;           /* White background */
    color: #3b6ef0;                      /* Royal blue text */
    text-align: center;
    padding: 30px 0;
    margin-top: 80px;
    border-top: 1px solid #eeeeee;       /* Light gray line on top */
}

footer p {
    margin: 0;
    font-size: 15px;
    color: #3b6ef0;                      /* Royal blue */
}
/* ====================== DROPDOWN MENU - Completely Clean ====================== */

/* Parent "Our Menus" with arrow */
.main-menu > li.menu-item-has-children > a {
    position: relative;
    padding-right: 28px !important;
}

.main-menu > li.menu-item-has-children > a:after {
    content: " ▼";
    font-size: 13px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

/* Submenu - No box, no shadow, no border */
.main-menu ul.sub-menu {
    display: none;
    position: absolute;
    background-color: transparent;     /* Fully transparent */
    min-width: 240px;
    padding: 12px 0;
    z-index: 9999;
    margin-top: 8px;
    list-style: none;
    box-shadow: none !important;
    border: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.main-menu li:hover > ul.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transition-delay: 80ms;
}

/* Long delay before disappearing */
.main-menu ul.sub-menu {
    transition-delay: 3000ms !important;   /* 3 second delay */
}

.main-menu li:hover > ul.sub-menu {
    transition-delay: 0ms;
}

/* Individual menu items */
.main-menu ul.sub-menu li a {
    background-color: white !important;
    color: #e63939 !important;           /* Red */
    padding: 14px 26px !important;
    font-size: 16px !important;
    font-weight: 500;
    display: block;
    margin: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.main-menu ul.sub-menu li a:hover {
    background-color: #f0f4ff !important;
    color: #3b6ef0 !important;           /* Royal Blue on hover */
}
/* ====================== PDF MENU BUTTONS ====================== */
/* Fix for PDF buttons on "Our Menus" page */

.menu-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.menu-pdf-button {
    display: inline-block;
    background-color: #3b6ef0;
    color: white !important;
    padding: 22px 32px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    min-width: 280px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(59, 110, 240, 0.4);
}

.menu-pdf-button:hover {
    background-color: #2f5ad9;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(59, 110, 240, 0.5);
}