/* =========================
   Base / Reset
========================= */
:root {
  --eps-blue: #0D5C8F;
  --eps-gray: #A0A2A4;
  --eps-dark: #777777;
  --eps-bg: #F1F1F1;
}

*,
*::before,
*::after {
  border: none; 
  box-sizing: border-box;
}

body {
  background-color: var(--eps-bg);
  font-family: "Roboto", Verdana, Helvetica, sans-serif;
}

div, nav, li, ul, a, p, section, article,
h1, h2, h3, h4, h5, h6, form, input,
header, footer, main {
  border: 0;
  font-family: inherit;
}

.main-card {
  border: 2px solid rgba(0, 0, 0, 0.5); /* thicker + darker */
  border-radius: 14px;
  border-top-left-radius: 0; /* sharp top left corner */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.white-background {
  background-color: #ffffff;
}

/* Not sure I want this: */
/*
.main-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
*/

/* =========================
   Side Bar
========================= */
.custom-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);  /* subtle border */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden; /* keeps image corners rounded */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.card-content {
  padding: 1.25rem;
}

/* =========================
   Typography
========================= */
p {
  font-size: 16px;
  color: var(--eps-gray);
  line-height: 24px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--eps-blue);
  font-weight: 400;
}

h2 {
  font-size: 38px;
}

/* =========================
   Navigation
========================= */
nav a,
nav ul,
nav li {
  color: var(--eps-gray);
}

nav a:hover {
  color: var(--eps-blue);
}

/* =========================
   Banners
========================= */
.banner,
.pagebanner {
  background-image: url("https://cdn.shopify.com/s/files/1/0105/0837/0005/files/water_7ae45edd-5ed7-4372-b042-9e06a5505e2a.jpg?v=1768423275");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner { height: 400px; }
.pagebanner { height: 200px; }

.banner-200 { height: 200px; }

/* =========================
   Responsive image section
========================= */
.responsive-image {
  height: 400px; /* mobile/tablet/desktop per your current design */
  object-fit: cover;
}

/* =========================
   Logo responsive sizing
========================= */
.logo-responsive {
  width: 300px;
  height: auto;
}

@media (max-width: 768px) {
  .logo-responsive { width: 200px; }
}

/* =========================
   FOOTER (NEW)
========================= */
.site-footer {
  background-color: #f4f4f4 !important;
  color: #000000 !important;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

/* Force ALL text in footer to be white */
.site-footer,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6,
.site-footer p,
.site-footer a,
.site-footer span,
.site-footer li {
  color: #000000 !important;
}

/* Muted footer text */
.footer-muted {
  color: rgba(200, 200, 200, 0.75) !important;
}

/* CENTER EVERYTHING */
.site-footer .row {
  justify-content: center;
  text-align: center;
}

/* MORE SPACE BETWEEN COLUMNS */
.site-footer .col-lg-4,
.site-footer .col-lg-3,
.site-footer .col-lg-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Footer links */
.footer-links a {
  display: flex;
  justify-content: center;
}

.footer-links a:hover {
  transform: scale(1.1);
  transition: 0.2s ease;
}

/* Divider */
.footer-divider {
  border-color: rgba(255,255,255,0.25);
}

/* Logo */
.site-footer img {
  display: block;
  margin: 0 auto 1rem auto;
}

/* =========================
   Buttons
========================= */
.btn {
  border-radius: 0;
  background-color: var(--eps-blue);
  border: 0;
  padding: 5px 20px;
  color: #ffffff;
}

.btn:hover,
.btn:focus {
  background-color: var(--eps-dark);
  border: 0;
  color: #ffffff;
}

/* Force outline buttons to stay white text */
.btn-outline-primary,
.btn-outline-secondary {
  color: #ffffff;
}

.btn-outline-primary:hover,
.btn-outline-secondary:hover {
  color: #ffffff;
}

/* =========================
   Auth (Login/Signup)
========================= */
/* Show/Hide (CSS driven) */
.auth-pane { display: none; }
.auth-pane.is-active { display: block; }

/* Toggle button styling */
.auth-toggle {
  border: 1px solid var(--eps-dark);
  background: #ffffff;
  padding: .6rem 1rem;
  font-weight: 600;
}

.auth-toggle:hover {
  background-color: #41B1F2;
  color: #ffffff;
  border-color: #41B1F2;
}

.auth-toggle.is-active {
  background: var(--eps-blue);
  color: #ffffff;
  border-color: var(--eps-blue);
}

/* Left image cover */
.auth-left-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

/* Inputs focus */
.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--eps-dark);
}

/* Password show button (if you want it white) */
.showbuttoncolor {
  color: #ffffff;
}

/* Social buttons */
.social_button {
  color: #ffffff;
  padding: 10px;
}

.social_button:hover {
  color: #ffffff;
}

/* =========================
   Dropdown (Dashboard hover)
========================= */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Remove dropdown chrome */
.dropdown-clean {
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Default item state */
.dropdown-clean .dropdown-item {
  color: var(--eps-dark);
  padding: 10px 16px;
}

/* Hover LI background + white text */
.dropdown-clean li:hover {
  background-color: var(--eps-blue);
}

.dropdown-clean li:hover .dropdown-item {
  color: #ffffff;
  background-color: transparent;
}

/* Remove focus outlines */
.dropdown-item:focus,
.dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
}

/* =========================
   Utilities / Fixes
========================= */
/* You had: no-border { ... } but it needs a dot to be a class */
.no-border { border: none !important; }

/* Feature delete button visibility on hover */
.feature-card:hover .feature-delete-btn,
.feature-card:focus-within .feature-delete-btn {
  opacity: 1 !important;
}

/* =========================
   Header
========================= */
/*
.site-header {
  border-bottom: 2px solid #333333;
}
*/


/* =========================
   Map
========================= */

.locations-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #ffffff;
}

.location-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 100px auto;
}

.location-row.reverse {
  flex-direction: row-reverse;
}

.location-text {
  flex: 1;
}

.location-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.location-text p {
  font-size: 1.1rem;
  color: #333;
}

.location-map {
  flex: 1;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile */
@media (max-width: 992px) {
  .location-row,
  .location-row.reverse {
    flex-direction: column;
  }

  .location-row {
    gap: 30px;
    margin-bottom: 80px;
  }

  .location-text h2 {
    font-size: 2rem;
  }
}