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

:root {
  /* Colors */
  --primary-color: #2F855A; /* Green */
  --secondary-color: #ED8936; /* Orange accent */
  --dark-color: #1A202C; /* Dark text/bg */
  --light-color: #F7FAFC; /* Light bg */
  --accent-color: #DD6B20; /* Darker Orange for hover */

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

body {
  font-family: var(--font-text);
  color: var(--dark-color);
  background-color: var(--light-color);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* 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: inherit;
  transition: all 0.3s ease;
}

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

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

/* Custom styles for numbered lists in Reserve page */
.numbered-list-custom {
  list-style: none;
  counter-reset: custom-counter;
  padding-left: 0;
}

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

.numbered-list-custom li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: bold;
}

/* Base utility overrides */
.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #276749;
}

.btn-accent {
  background-color: var(--secondary-color);
  color: #fff;
  transition: background-color 0.3s;
}

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

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

main {
  flex: 1 0 auto;
}

.footer-custom {
  flex-shrink: 0;
}