@import url('https://fonts.googleapis.com/css2?family=Muli:wght@400;600;700&display=swap');

:root {
    --primary-color: #41556B; /* Slate Blue */
    --accent-color: #B4A179; /* Gold */
    --text-color: #4C4C4C;
    --bg-color: #FFFFFF;
    --font-family: 'Muli', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ========================================================================= */
/* HEADER & LOGO */
/* ========================================================================= */
.main-header {
    background-color: var(--bg-color);
    width: 100%;
    z-index: 9999;
    position: relative;
    padding-top: 30px;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    max-height: 90px;
    width: auto;
}

.header-titles {
    text-align: right;
    color: var(--primary-color);
}

.header-titles h1 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.header-titles h2 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

/* ========================================================================= */
/* NAVIGATION */
/* ========================================================================= */
.main-nav {
    max-width: 1100px;
    margin: 30px auto 0;
    background-color: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.main-nav ul li a:hover, .main-nav ul li a.active {
    background-color: var(--accent-color);
}

/* Dropdown */
.main-nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    min-width: 250px;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 9999;
}

.main-nav ul li:hover > .dropdown {
    display: flex;
}

.main-nav ul li .dropdown li {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.main-nav ul li .dropdown li a {
    padding: 12px 20px;
    text-transform: none;
    font-size: 15px;
}

.main-nav ul li .dropdown li a:hover {
    background-color: var(--accent-color);
}

/* Nested Dropdown (3rd level) */
.main-nav ul li .dropdown li .dropdown {
    top: 0;
    left: 100%;
}

.main-nav ul li:hover > .dropdown > li:hover > .dropdown {
    display: flex;
}

/* ========================================================================= */
/* KEYVISUAL SLIDER */
/* ========================================================================= */
.keyvisual {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    background-color: #eee; /* Fallback */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-1 {
    background-image: url('assets/banner.jpg'); /* Default single banner placeholder */
}

/* ========================================================================= */
/* CONTENT LAYOUT */
/* ========================================================================= */
.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
}

main {
    flex: 2;
    min-width: 0; 
}

aside {
    flex: 1;
    min-width: 300px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

h1 { font-size: 26px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; margin-top: 30px; border-bottom: 2px solid var(--accent-color); padding-bottom: 10px; display: inline-block;}
h3:first-child { margin-top: 0; }

main p {
    margin-bottom: 20px;
    line-height: 1.8;
}

main a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

main a:hover {
    color: var(--primary-color);
}

main ul, main ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

main li {
    margin-bottom: 10px;
}

/* ========================================================================= */
/* CM4ALL & IMAGES / FLEXBOX GRID */
/* ========================================================================= */
img {
    max-width: 100%;
    height: auto;
}

/* Native rendering logic for Strato */
.cm_column_wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.cm_column, .cm_column_gap {
    box-sizing: border-box;
    flex: 0 0 auto;
}

img[data-uro-width] {
    width: 100%;
    height: auto;
}

/* ========================================================================= */
/* CONTACT BUTTONS */
/* ========================================================================= */
.contact-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    width: 100%;
}

.contact-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
    text-decoration: none;
}

.contact-btn.outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.contact-btn.outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ========================================================================= */
/* FOOTER */
/* ========================================================================= */
footer {
    background-color: var(--primary-color);
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
    color: #fff;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-copy {
    font-size: 13px;
    opacity: 0.6;
}

/* ========================================================================= */
/* MOBILE MENU (BURGER) & RESPONSIVE */
/* ========================================================================= */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 15px;
    align-items: flex-end;
}

.burger-menu span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.burger-text {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 5px;
}

@media (max-width: 850px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .header-titles {
        text-align: center;
        margin-top: 15px;
    }

    .burger-menu {
        display: flex;
        align-items: center;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        margin-top: 0;
    }
    
    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav ul li .dropdown,
    .main-nav ul li .dropdown li .dropdown {
        position: static;
        width: 100%;
        background-color: #2F3E4E;
    }

    .content-wrapper {
        flex-direction: column;
    }
    
    aside {
        width: 100%;
        min-width: 0;
    }

    .keyvisual {
        height: 200px;
    }

    .cm_column {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .cm_column_wrapper {
        flex-wrap: wrap;
    }

    .cm_column_gap {
        display: none;
    }
}

/* ========================================================================= */
/* STRATO OPENING HOURS WIDGET */
/* ========================================================================= */
.cm-widget_openinghours_2 {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.cm-w_oh-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    vertical-align: middle;
    margin-right: 10px;
}

.cm-w_oh-status {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.cm-w_oh-day {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cm-w_oh-day:last-child {
    border-bottom: none;
}

.cm-w_oh-name {
    font-family: var(--font-family);
    font-weight: bold;
    color: var(--primary-color);
    width: 40%;
}

.cm-w_oh-time {
    width: 60%;
    text-align: right;
    font-family: var(--font-family);
}

.cm-w_oh-time1, .cm-w_oh-time2 {
    margin-bottom: 5px;
}

.cm-w_oh-expander {
    display: none; /* Hide the Strato JS expand arrow */
}

/* ========================================================================= */
/* STRATO NATIVE BUTTON OVERRIDES */
/* ========================================================================= */
.cm-widget-button_2, .cm-w_btn-hover-border {
    display: inline-block;
    box-sizing: border-box;
    text-decoration: none;
    line-height: 1.2;
    text-align: center;
}

.cm-widget-button_2:hover, .cm-w_btn-hover-border:hover {
    text-decoration: none;
}

/* ========================================================================= */
/* COOKIE BANNER */
/* ========================================================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 10000;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 800px;
    text-align: center;
}

.cookie-content h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cookie-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.cookie-buttons button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-buttons button:hover {
    background-color: var(--accent-color);
}
