/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Contrasting Palette (Light Theme) */
    --primary-color: #0d47a1; /* Deep Blue */
    --secondary-color: #e3f2fd; /* Light Blue Background */
    --accent-color: #ff6d00; /* Vibrant Orange */
    --dark-color: #1a202c; /* Slate Dark */
    --text-color: #333333;
    --background-light: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    --gradient-accent: linear-gradient(135deg, #ff6d00 0%, #ffa000 100%);

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-text: 'Open Sans', sans-serif;
}

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

main {
    flex: 1;
}

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

/* Custom Image Overlays */
.hero-overlay {
    background-color: rgba(26, 32, 44, 0.6);
}

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

#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

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

.custom-numbered-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.custom-numbered-list li .number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: bold;
    margin-right: 0.75rem;
    margin-top: 0.15rem;
}

/* Form Styles */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    font-family: var(--font-text);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.2);
}

/* 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(--accent-color);
  color: #ffffff;
  border-radius: 4px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: var(--font-text);
  transition: all 0.3s ease;
}

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

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