/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700;800&display=swap');

:root {
    /* Modern, contrasting 4-color palette */
    --primary-color: #0F766E; /* Teal 700 - Primary */
    --accent-color: #F43F5E;  /* Rose 500 - Accent */
    --bg-light: #FEF3C7;      /* Amber 50 - Background */
    --text-dark: #1E293B;     /* Slate 800 - Text */
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Inter', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--text-dark);
    background-color: #FAFAFA;
}

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

/* Custom Utilities */
.text-primary { color: var(--primary-color); }
.bg-primary { background-color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.bg-accent { background-color: var(--accent-color); }
.bg-light-tint { background-color: var(--bg-light); }

.nav-link {
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--accent-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #0b5c56;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.btn-accent {
    background-color: var(--accent-color);
    color: #ffffff;
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background-color: #e11d48;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

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

.numbered-list-custom li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    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(--accent-color);
    color: #ffffff;
    border-radius: 50px;
    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;
}

/* Mobile Menu Overlay */
#mobile-menu {
    display: none;
}
#mobile-menu.active {
    display: block;
}