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

:root {
    /* Color Palette */
    --clr-bg: #F8FAFC;         /* Light Gray/Off-white for background */
    --clr-text: #1E293B;       /* Dark Slate for text readability */
    --clr-accent1: #0F766E;    /* Deep Teal for trust and calm */
    --clr-accent2: #F97316;    /* Vibrant Orange for calls to action */
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-text: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

main {
    flex: 1;
}

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

/* Custom Utilities */
.text-accent1 { color: var(--clr-accent1); }
.text-accent2 { color: var(--clr-accent2); }
.bg-accent1 { background-color: var(--clr-accent1); }
.bg-accent2 { background-color: var(--clr-accent2); }
.hover-bg-accent1:hover { background-color: #0b5c56; }
.hover-bg-accent2:hover { background-color: #ea580c; }

/* Navigation */
.nav-link {
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--clr-accent2);
}

/* Hero Overlay */
.hero-overlay {
    background: linear-gradient(rgba(30, 41, 59, 0.7), rgba(15, 118, 110, 0.7));
}

/* Ordered Lists with Colored Circles (Reserve Page) */
.custom-list {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding-left: 0;
}
.custom-list li {
    counter-increment: my-awesome-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}
.custom-list li::before {
    content: counter(my-awesome-counter);
    position: absolute;
    left: 0;
    top: -0.1rem;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background-color: var(--clr-accent2);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    margin-top: 0.5rem;
    font-family: var(--font-text);
}
.form-input:focus {
    outline: none;
    border-color: var(--clr-accent1);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.2);
}

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

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

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