/* google fonts import */
@import url('https://fonts.googleapis.com/css2?family=Elsie&family=Roboto:wght@400;500;700&display=swap');

:root {
  --ocean: #064f64;
  --ocean-dark: #03313f;
  --coral: #ef7656;
  --coral-dark: #cf5538;
  --sea-glass: #d8eee8;
  --shell: #fbf8f2;
  --ink: #1f2a2e;
  --muted: #65757b;
  --line: #dde7e8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: var(--ink);
  background-color: var(--shell);
}

.skip-link {
  background-color: var(--coral);
  border-radius: 0 0 6px 0;
  color: var(--white);
  font-weight: 700;
  left: 0;
  padding: 0.75rem 1rem;
  position: absolute;
  top: -4rem;
  z-index: 2000;
}

.skip-link:focus {
  color: var(--white);
  top: 0;
}

a {
  color: var(--ocean);
}

a:hover {
  color: var(--coral-dark);
}

a:focus,
button:focus,
.btn:focus,
.form-control:focus {
  box-shadow: 0 0 0 0.22rem rgba(239, 118, 86, 0.42);
  outline: 0;
}

img {
  max-width: 100%;
  display: block;
}

.font-elsie {
  font-family: 'Elsie', cursive;
}

.site-header {
  background-color: var(--ocean-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1rem;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
}

.brand-tagline {
  color: var(--sea-glass);
  font-size: 0.75rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: var(--white);
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 0.18rem;
  text-underline-offset: 0.35rem;
}

.nav-cta {
  margin-left: 0.5rem;
}

.btn {
  border-radius: 6px;
  font-weight: 700;
}

.btn-coral {
  color: var(--white);
  background-color: var(--coral);
  border-color: var(--coral);
}

.btn-coral:hover,
.btn-coral:focus {
  color: var(--white);
  background-color: var(--coral-dark);
  border-color: var(--coral-dark);
}

.btn-ocean {
  color: var(--white);
  background-color: var(--ocean);
  border-color: var(--ocean);
}

.btn-ocean:hover,
.btn-ocean:focus {
  color: var(--white);
  background-color: var(--ocean-dark);
  border-color: var(--ocean-dark);
}

.btn-outline-ocean {
  color: var(--ocean);
  background-color: transparent;
  border-color: var(--ocean);
}

.btn-outline-ocean:hover,
.btn-outline-ocean:focus {
  color: var(--white);
  background-color: var(--ocean);
  border-color: var(--ocean);
}

.btn-outline-danger {
  border-color: #b42318;
  color: #b42318;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus {
  background-color: #b42318;
  border-color: #b42318;
  color: var(--white);
}

.btn-danger-solid {
  background-color: #b42318;
  border-color: #b42318;
  color: var(--white);
}

.btn-danger-solid:hover,
.btn-danger-solid:focus {
  background-color: #8d1d13;
  border-color: #8d1d13;
  color: var(--white);
}

.btn-light-outline {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.78);
  background-color: transparent;
}

.btn-light-outline:hover,
.btn-light-outline:focus {
  color: var(--ocean-dark);
  background-color: var(--white);
}

.hero-section {
  min-height: 76vh;
  background-image:
    linear-gradient(90deg, rgba(3, 49, 63, 0.88), rgba(3, 49, 63, 0.48)),
    url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1800&q=80');
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  min-height: 76vh;
  display: flex;
  align-items: center;
}

.min-vh-hero {
  min-height: 70vh;
}

.eyebrow {
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.08rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hero-title {
  color: var(--white);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.35rem;
  max-width: 620px;
  margin: 1rem 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-proof div {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  min-width: 140px;
  padding: 0.85rem 1rem;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.2rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-band,
.split-section,
.form-section,
.booking-page,
.error-section {
  padding: 4.5rem 0;
}

.section-band {
  background-color: var(--shell);
}

.dashboard-band,
.split-section {
  background-color: var(--white);
}

.dashboard-hero {
  background:
    linear-gradient(135deg, rgba(3, 49, 63, 0.96), rgba(6, 79, 100, 0.82)),
    url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1800&q=80');
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: 4.5rem 0;
}

.dashboard-heading {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.dashboard-heading h1 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}

.dashboard-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  max-width: 680px;
}

.role-badge {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  min-width: 190px;
  padding: 1.25rem;
}

.role-badge span,
.role-badge small {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}

.role-badge strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  margin: 0.35rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading h2,
.split-section h2 {
  color: var(--ocean-dark);
  font-size: 3rem;
  font-weight: 600;
}

.feature-card,
.action-panel,
.contact-panel,
.menu-item,
.form-shell,
.auth-panel,
.empty-state,
.confirm-panel,
.reservation-card,
.booking_table {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card-placeholder {
  align-items: center;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--sea-glass), rgba(239, 118, 86, 0.22));
  color: var(--ocean-dark);
  display: flex;
  font-size: 2rem;
  justify-content: center;
  width: 100%;
}

.feature-card-body,
.action-panel,
.contact-panel {
  padding: 1.5rem;
}

.feature-card h3,
.action-panel h2,
.action-panel h3,
.contact-panel h2,
.menu-item h3 {
  color: var(--ocean-dark);
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-card p,
.action-panel p,
.contact-panel p,
.menu-item p,
.split-section p,
.site-footer p {
  color: var(--muted);
}

.action-panel i,
.contact-panel i {
  color: var(--coral);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-list {
  display: grid;
  gap: 1rem;
}

.info-list div {
  background-color: var(--sea-glass);
  border-left: 5px solid var(--ocean);
  border-radius: 8px;
  padding: 1.25rem;
}

.info-list strong,
.info-list span {
  display: block;
}

.info-list span {
  color: var(--muted);
  margin-top: 0.25rem;
}

.page-hero {
  color: var(--white);
  padding: 6rem 0;
  background-position: center;
  background-size: cover;
}

.page-hero h1 {
  font-size: 4rem;
  font-weight: 600;
  max-width: 760px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
  max-width: 620px;
}

.menu-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 49, 63, 0.88), rgba(3, 49, 63, 0.42)),
    url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?auto=format&fit=crop&w=1800&q=80');
}

.about-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 49, 63, 0.88), rgba(3, 49, 63, 0.42)),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80');
}

.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 49, 63, 0.88), rgba(3, 49, 63, 0.42)),
    url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1800&q=80');
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category h2 {
  color: var(--ocean-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.menu-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-item {
  padding: 1.25rem;
}

.menu-item-heading {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.menu-item strong {
  color: var(--coral-dark);
  white-space: nowrap;
}

.featured-menu-band {
  background-color: var(--white);
}

.menu-feature-card img {
  min-height: 220px;
}

.section-action {
  margin-top: 0.5rem;
}

.content-image {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.location-strip {
  align-items: center;
  background-color: var(--ocean-dark);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 2rem;
}

.location-strip h2 {
  margin-bottom: 0;
}

.message-stack {
  padding-top: 1.25rem;
}

.message-stack .alert {
  border: 0;
  border-radius: 8px;
  font-weight: 700;
}

.form-section {
  background:
    linear-gradient(135deg, rgba(216, 238, 232, 0.8), rgba(251, 248, 242, 0.94));
}

.auth-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.form-shell,
.auth-panel,
.empty-state,
.confirm-panel,
.error-panel {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem;
}

.auth-panel-wide {
  max-width: 760px;
}

.form-intro {
  margin-bottom: 1.5rem;
}

.form-intro h1,
.empty-state h1,
.confirm-panel h1,
.error-panel h1 {
  color: var(--ocean-dark);
  font-size: 3rem;
  font-weight: 600;
}

.form-intro p:not(.eyebrow),
.empty-state p,
.confirm-panel p,
.error-panel p {
  color: var(--muted);
}

.booking-form label,
.auth-panel label {
  color: var(--ocean-dark);
  font-weight: 700;
}

.booking-form .form-control,
.auth-panel .form-control {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  min-height: 2.75rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button-row .btn {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  justify-content: center;
  min-height: 2.75rem;
}

.empty-state {
  text-align: center;
}

.error-section {
  background:
    linear-gradient(135deg, rgba(216, 238, 232, 0.72), rgba(251, 248, 242, 0.96));
  min-height: 62vh;
}

.error-panel {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.confirm-panel {
  text-align: left;
}

.booking-page {
  background-color: var(--shell);
}

.page-heading-row {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.page-heading-row h1 {
  color: var(--ocean-dark);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0;
}

.table-section {
  margin-bottom: 2.5rem;
}

.table-section h2 {
  color: var(--ocean-dark);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.booking_table {
  width: 100%;
}

.booking-table {
  margin-bottom: 0;
}

.booking-table thead {
  background-color: var(--ocean-dark);
  color: var(--white);
  letter-spacing: 0;
}

.booking-table th,
.booking-table td {
  border-color: var(--line);
  padding: 0.85rem;
  vertical-align: middle;
}

.booking-table tbody tr:hover {
  background-color: rgba(216, 238, 232, 0.55);
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.reservation-card-list {
  display: none;
}

.reservation-card {
  padding: 1.25rem;
}

.reservation-card h2 {
  color: var(--ocean-dark);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.75rem 0 0.25rem;
}

.reservation-card h3 {
  color: var(--ocean-dark);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.75rem 0 0.25rem;
}

.reservation-card p {
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.dashboard-bookings {
  margin-top: 1rem;
}

.dashboard-card-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-empty-state {
  max-width: none;
}

.status-badge {
  background-color: var(--sea-glass);
  border-radius: 999px;
  color: var(--ocean-dark);
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  white-space: nowrap;
}

.site-footer {
  background-color: var(--ocean-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.site-footer h3 {
  color: var(--sea-glass);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-brand {
  font-size: 2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  height: 2.4rem;
  justify-content: center;
  width: 2.4rem;
}

.footer-social a:hover,
.footer-social a:focus {
  background-color: var(--white);
  color: var(--ocean-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Legacy booking and account helpers */
.logo {
  color: var(--white);
  font-size: 5.5rem !important;
  font-weight: 600 !important;
}

.btn-lg {
  font-size: 1.15rem;
  padding: 0.8rem 1.3rem;
}

.heading {
  color: var(--ocean-dark);
  font-size: 4rem;
  font-weight: 500;
}

.sub-heading {
  font-size: 2rem;
}

.button-font {
  font-size: 1.25rem;
}

.main-paragraph-text {
  font-size: 1.5rem;
}

.form {
  margin: 5rem auto;
  width: 30%;
}

.form-text-bold {
  font-weight: 800;
}

#hint_id_password {
  font-family: 'Elsie', cursive;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .nav-cta {
    margin: 0.75rem 0;
  }

  .dashboard-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-title {
    font-size: 4rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 650px) {
  .brand-name {
    font-size: 1.55rem;
  }

  .hero-title,
  .dashboard-heading h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.1rem;
  }

  .section-heading h2,
  .split-section h2 {
    font-size: 2.35rem;
  }

  .section-band,
  .split-section,
  .form-section,
  .booking-page,
  .error-section {
    padding: 3rem 0;
  }

  .form-shell,
  .auth-panel,
  .empty-state,
  .confirm-panel,
  .error-panel {
    padding: 1.5rem;
  }

  .form-intro h1,
  .empty-state h1,
  .confirm-panel h1,
  .error-panel h1,
  .page-heading-row h1 {
    font-size: 2.35rem;
  }

  .page-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-page .booking_table {
    display: none;
  }

  .reservation-card-list {
    display: grid;
    gap: 1rem;
  }

  .dashboard-card-list {
    grid-template-columns: 1fr;
  }

  .button-row .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .heading {
    font-size: 3rem;
  }

  .sub-heading {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 400px) {
  .brand-tagline {
    display: none;
  }

  .hero-title,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .heading {
    font-size: 2.2rem;
    font-weight: 600;
  }

  .button-font {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
