@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@600;800&display=swap');

/* Basic reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: 'Lato', sans-serif; color: #142d55; scroll-behavior: smooth; }
h1, h2, h3, h4, h5, h6, .brand .logo { font-family: 'Poppins', sans-serif; }
img { max-width: 100%; display: block; }

:root{
  --ink:#142d55;
  --ink-2:#1e3b73;
  --sky:#e6f0ff;
  --accent:#ff5a3c;
  --accent-2:#0ea5a5;
  --bg:#ffffff;
}

.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header { position: sticky; top:0; z-index: 10; background: var(--bg); border-bottom: 1px solid #e5e7eb; }
.header-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { width: 44px; height: 44px; }
.brand .logo { font-weight: 800; font-size: 1.4rem; color: var(--ink-2); letter-spacing: .5px; }
.brand .sub { font-size: .85rem; color: #475569; }

.nav a { margin-left: 20px; text-decoration: none; color: var(--ink); font-weight: 600; transition: color .3s; }
.nav a.active, .nav a:hover { color: var(--accent); }
.nav a.cta { padding: 8px 14px; border: 2px solid var(--accent); border-radius: 10px; color: var(--accent); }
.nav a.cta:hover { background: var(--accent); color: white; }
.nav a.cta.active { background: var(--accent); color: white; } /* Keep CTA highlighted */

.hamburger { display:none; width:44px; height:44px; border: none; background: transparent; position: relative; }
.hamburger span { position:absolute; left:8px; right:8px; height:3px; background: var(--ink); border-radius: 2px; transition:.3s; }
.hamburger span:nth-child(1){ top:12px; }
.hamburger span:nth-child(2){ top:20px; }
.hamburger span:nth-child(3){ top:28px; }

.hamburger.active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.hero { position: relative; max-height: 70vh; overflow: hidden; }
.hero img { width: 100%; height: 70vh; object-fit: cover; filter: saturate(1.05) contrast(1.05); }
.hero-overlay { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; color:#fff; background: linear-gradient(0deg, rgba(20,45,85,.55), rgba(20,45,85,.25)); padding: 0 10px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 10px; }
.hero p { font-size: clamp(1rem, 2.8vw, 1.25rem); margin-bottom: 18px; }
.btn { display:inline-block; background: var(--accent); color: white; padding: 12px 18px; border-radius: 10px; text-decoration: none; font-weight: 700; }
.btn:hover { filter: brightness(.95); }

main { overflow-x: hidden; }

.section { padding: 64px 0; }
.section.alt { background: var(--sky); }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
h2 { font-size: clamp(1.6rem, 3.3vw, 2rem); margin-bottom: 12px; }
p { line-height: 1.6; margin: 8px 0 16px; }
.bullets { list-style: none; }
.bullets li { padding-left: 22px; position: relative; margin: 6px 0; }
.bullets li::before { content: "•"; position: absolute; left: 0; color: var(--accent); }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 16px; }
.card, .contact-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  transition: transform .3s, box-shadow .3s;
}
.card:hover, .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.banner {
  margin-top: 18px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  max-height: 520px;
  width: 100%;
  object-fit: cover;
}

.about-image {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  max-height: 250px;
  object-fit: cover;
}

.nearby-image {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  max-height: 350px;
  object-position: 50% 40%; /* Custom vertical alignment */
}

.map { margin-top: 12px; }
.map-note { font-size: .9rem; color:#475569; margin-top: 8px; }

.rates .price { font-size: 1.6rem; font-weight: 800; color: var(--accent-2); }
.fine { font-size: .9rem; color:#475569; margin-top: 10px; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 10px; }

.site-footer { position: relative; background: var(--bg); border-top: 1px solid #e5e7eb; padding: 24px 0; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-wrap nav a { margin-left: 16px; color: var(--ink); text-decoration: none; }

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .two-col, .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px){
  .grid { grid-template-columns: repeat(2, 1fr); }
  .nav {
    display: block;
    position: absolute;
    top: 75px;
    left: 4%;
    right: 4%;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s, transform .3s, visibility .3s;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav a { display:block; padding: 10px; margin: 0; }
  .hamburger{ display:block; }
}
