/* 
   Theme: Colorful Modern
   Font Heading: Oswald
   Font Text: Open Sans
*/

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

:root {
    --primary-color: #0f172a; /* Dark Slate Blue */
    --secondary-color: #1d3557; /* Navy Blue */
    --accent-color: #e63946; /* Vibrant Red */
    --light-color: #f1faee; /* Mint Cream / Light */
    --text-color: #333333;
    
    --font-heading: 'Oswald', sans-serif;
    --font-text: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--text-color);
    background-color: var(--light-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

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

.text-accent {
    color: var(--accent-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-accent {
    background-color: var(--accent-color);
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #ffffff;
    font-family: var(--font-heading);
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Header styling */
header {
    background-color: var(--primary-color);
    color: #ffffff;
}

header a {
    color: #ffffff;
    transition: color 0.3s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

header a:hover {
    color: var(--accent-color);
}

/* Footer styling */
footer {
    background-color: var(--secondary-color);
    color: #a8b2d1;
}

footer a {
    color: #ffffff;
}

footer a:hover {
    color: var(--accent-color);
}

/* Custom Numbered List for Reserve Page */
.custom-numbered-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.custom-numbered-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    background: #ffffff;
    padding: 0.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.custom-numbered-list li .num-circle {
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    font-weight: bold;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Hero Overlay */
.hero-overlay {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(29, 53, 87, 0.8));
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: var(--font-text);
    margin-bottom: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-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(--accent-color);
    color: #ffffff;
    border-radius: 4px;
    border: none;
    display: inline-block;
    font-weight: bold;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

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

/* Minimum height wrapper for pages */
.min-h-content {
    min-height: calc(100vh - 200px);
}