@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --primary-color: #0D9488; /* Teal 600 */
    --secondary-color: #65A30D; /* Lime 600 */
    --dark-color: #111827; /* Gray 900 */
    --light-color: #F3F4F6; /* Gray 100 */
    --accent-color: #0F766E; /* Teal 700 */
    
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--dark-color);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

.text-primary { color: var(--primary-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-light { background-color: var(--light-color); }
.text-dark { color: var(--dark-color); }

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom Numbered List for Reserve Page */
.numbered-list-custom {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.numbered-list-custom li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
}

.numbered-list-custom li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: -2px;
    width: 1.75rem;
    height: 1.75rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px; /* arbitrary large max-height */
}

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
    cursor: pointer;
    padding: 0.6rem 2rem;
    margin: 0.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 4px;
    border: none;
    display: inline-block;
    font-weight: bold;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn-alt {
    background-color: #4B5563;
}