/* =====================================================
   Nutty Putty Miniature Golf — site styles
   Code (c) 2026 Pixamation. All rights reserved.

   Color palette pulled from the designer's source files:
     light sky:  #c7f1ff
     yellow:     #f1ae2f   (clown body)
     yellow lt:  #fbc24b   (clown highlights)
     brown:      #603913   (outline)
     navy:       #0c1e44   (header / labels)
     coral:      coral     (footer link list)
   Designer used Carlito, Myriad Pro and Minion Concept
   Italic. We use the freely-licensed Google Font
   equivalents (Carlito, Open Sans, Playfair Display).
   ===================================================== */

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Open Sans', 'Myriad Pro', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #0c1e44;
  background: #c7f1ff;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.container {
  width: min(1600px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
.site-header {
  background: #0c1e44;
  box-shadow: 0 6px 12px rgba(0,0,0,.35);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-logo {
  display: inline-block;
  flex: 0 0 auto;
}
.site-logo img {
  height: 40px;
  width: auto;
}
@media (min-width: 720px) {
  .site-logo img { height: 56px; }
}

/* Primary navigation – each item is a clown-shaped yellow button */
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
@media (min-width: 720px) {
  .primary-nav ul { gap: 1rem; }
}

.primary-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Carlito', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  letter-spacing: .02em;
  color: #0c1e44;
  padding: .55rem 1.4rem;
  min-width: 110px;
  text-align: center;
  background-image: url('../assets/nav-button.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.35));
  transition: transform .2s ease;
}
@media (min-width: 720px) {
  .primary-nav .nav-link {
    padding: .9rem 2rem;
    min-width: 170px;
  }
}

.primary-nav .nav-link:hover,
.primary-nav .nav-link:focus-visible {
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
.primary-nav .nav-link[aria-current="page"] {
  transform: translateY(1px);
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.45)) brightness(.95);
}

/* =====================================================
   PAGE TITLES / HERO
   ===================================================== */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.page-title {
  font-family: 'Playfair Display', 'Minion Variable Concept', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 5.4vw, 3.75rem);
  line-height: 1.15;
  color: #0c1e44;
  margin: 0 0 1rem;
}

.page-subtitle {
  font-family: 'Carlito', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  margin: 0 auto;
  max-width: 60ch;
}

/* =====================================================
   HOME PAGE  — matches Homepage.pdf exactly:
   centered italic tagline at top, then a two-column row
   with body copy + address on the left and a white
   rounded photo box on the right.
   ===================================================== */
.home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .home-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.home-copy {
  font-family: 'Carlito', 'Open Sans', sans-serif;
  font-weight: 400;
  color: #000;
  font-size: clamp(1rem, 1.55vw, 1.5625rem);
  line-height: 1.45;
}
.home-copy p { margin: 0 0 1.5rem; }

.home-copy .address {
  font-family: 'Carlito', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  line-height: 1.2;
  color: #0c1e44;
  margin-top: 2.25rem;
}

/* Right column on the home page: slider + dancing peanut mascot. */
.home-media {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  min-width: 0;
}
.home-media .photo-frame {
  flex: 1 1 auto;
  min-width: 0;
}
.home-mascot {
  flex: 0 0 auto;
  width: clamp(110px, 14vw, 200px);
  height: auto;
  display: block;
}
@media (max-width: 700px) {
  .home-media {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .home-mascot { width: 45%; max-width: 220px; }
}

/* Photo placeholder used on Home and Contact pages.
   The designer included an empty white rounded rectangle
   that's intended to hold an image / slideshow. */
.photo-frame {
  background: #fff;
  border: 1px solid #231f20;
  border-radius: 36px;
  aspect-ratio: 711 / 422;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  position: relative;
}
.photo-frame img,
.photo-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-frame .placeholder-text {
  font-family: 'Carlito', sans-serif;
  font-weight: 700;
  color: #b1b1b1;
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
}

/* =====================================================
   SLIDER — populated by js/main.js from /SLIDER/.
   Shared between the home photo box and the contact
   slideshow box.
   ===================================================== */
.slider-track {
  position: absolute;
  inset: 0;
}
.slider-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease-in-out;
  pointer-events: none;
}
.slider-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Prev / next arrows. Auto-injected by js/main.js when there
   are 2 or more photos in the slider. */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #0c1e44;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
  opacity: .85;
}
.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: #fff;
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
  outline: none;
}
.slider-arrow.is-prev { left: 1rem; }
.slider-arrow.is-next { right: 1rem; }
.slider-arrow svg {
  width: 22px;
  height: 22px;
  display: block;
}
@media (max-width: 600px) {
  .slider-arrow { width: 38px; height: 38px; }
  .slider-arrow.is-prev { left: .5rem; }
  .slider-arrow.is-next { right: .5rem; }
  .slider-arrow svg { width: 18px; height: 18px; }
}

/* =====================================================
   HOURS PAGE  — matches Hourspage.pdf exactly:
   2×2 grid of seasonal cards (pink, peach, green, blue)
   each with illustration on the left and hours on the right
   ===================================================== */
.hours-page {
  padding: 3rem 0 4rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  row-gap: 22px;
  max-width: 1786px;
  margin: 0 auto;
}

.hours-card {
  border-radius: 21px;
  padding: 1.25rem 1.75rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 1.25rem;
  min-height: 211px;
  box-shadow: 7px 7px 12px rgba(0, 0, 0, .35);
  color: #000;
}

.hours-card.spring { background: #ffccd1; }
.hours-card.summer { background: #b3f4c9; }
.hours-card.fall   { background: #fcab75; }
.hours-card.winter { background: #8fcaff; }

.hours-card .card-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hours-card .card-art img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.hours-card .card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}
.hours-card .card-content.single {
  grid-template-columns: 1fr;
  text-align: center;
}

.hours-block {
  font-family: 'Open Sans', 'Myriad Pro', sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
}
.hours-block .hours-title {
  font-weight: 600;
  margin: 0 0 .35rem;
  font-size: 1.05rem;
}
.hours-block p { margin: 0; }

.hours-card .closed-msg {
  font-family: 'Open Sans', 'Myriad Pro', sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0;
}

/* On narrow screens: stack the cards into one column,
   and stack the illustration above the hours so the text
   doesn't get squeezed. */
@media (max-width: 1100px) {
  .hours-grid { grid-template-columns: 1fr; column-gap: 0; }
}
@media (max-width: 700px) {
  .hours-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hours-card .card-content {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   PRICING PAGE  — matches pricingpage.pdf exactly:
   big navy heading and small note on the left,
   golf bag illustration on the right.
   ===================================================== */
.pricing-page {
  padding: 4rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  min-height: 60vh;
}

.pricing-content {
  display: flex;
  flex-direction: column;
}

.pricing-title {
  font-family: 'Carlito', 'Open Sans', sans-serif;
  font-weight: 700;
  color: #0c1e44;
  font-size: clamp(2.2rem, 5.4vw, 5.6rem);
  line-height: 1.1;
  margin: 0 0 2rem;
  white-space: nowrap;
}

.pricing-note {
  font-family: 'Carlito', 'Open Sans', sans-serif;
  font-weight: 400;
  color: #000;
  font-size: clamp(1.1rem, 2.4vw, 2.5rem);
  line-height: 1.4;
  margin: 0 0 0 clamp(1rem, 16%, 16rem);
  max-width: 26ch;
}

.pricing-art {
  width: clamp(260px, 28vw, 540px);
  flex: 0 0 auto;
}
.pricing-art img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pricing-title { white-space: normal; }
  .pricing-note { margin-left: 0; max-width: 100%; }
  .pricing-art { margin: 0 auto; }
}

/* =====================================================
   CONTACT PAGE  — matches contactpgage.pdf exactly:
   one big white semi-transparent rounded panel with the
   form on the left and the slideshow on the right.
   ===================================================== */
.contact-page {
  padding: 3rem 0 4rem;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.53);
  border-radius: 60px;
  padding: 3.5rem 4rem 4rem;
  box-shadow: 7px 7px 18px rgba(0, 0, 0, .5);
  max-width: 1744px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-text {
  font-family: 'Open Sans', 'Myriad Pro', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #000;
  margin: 0;
}
.contact-phone {
  color: #0c1e44;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(12, 30, 68, .35);
  white-space: nowrap;
  transition: border-color .15s ease, color .15s ease;
}
.contact-phone:hover,
.contact-phone:focus-visible {
  color: #f1ae2f;
  border-bottom-color: #f1ae2f;
  outline: none;
}

.contact-textarea {
  width: 100%;
  min-height: 174px;
  border: none;
  border-radius: 33px;
  padding: 1.4rem 1.75rem;
  background: #fff;
  font-family: 'Open Sans', 'Myriad Pro', sans-serif;
  font-size: 1.4rem;
  color: #0c1e44;
  resize: vertical;
  box-shadow: 7px 7px 14px rgba(0, 0, 0, .4);
}
.contact-textarea::placeholder {
  color: #ccc;
  font-weight: 400;
}
.contact-textarea:focus {
  outline: 3px solid #f1ae2f;
}

.btn-submit-flat {
  align-self: flex-start;
  background: #fff;
  color: #000;
  font-family: 'Open Sans', 'Myriad Pro', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  padding: .55rem 2.25rem;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  letter-spacing: .03em;
  box-shadow: 7px 7px 14px rgba(0, 0, 0, .4);
  transition: transform .15s, box-shadow .15s;
}
.btn-submit-flat:hover {
  transform: translateY(-1px);
  box-shadow: 8px 8px 16px rgba(0, 0, 0, .45);
}

/* Row that holds the SUBMIT button on the left and the
   social icons on the right (was a stand-alone group). */
.contact-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.contact-submit-row .btn-submit-flat { align-self: auto; }

.contact-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact-social a {
  display: block;
  width: 64px;
  height: 64px;
  transition: transform .2s ease;
}
.contact-social a:hover,
.contact-social a:focus-visible {
  transform: translateY(-2px) scale(1.05);
  outline: none;
}
.contact-social img { width: 100%; height: 100%; }

.contact-media-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.slideshow-frame {
  width: 100%;
  aspect-ratio: 570 / 349;
  background: #fff;
  border-radius: 58px;
  overflow: hidden;
  position: relative;
}
.slideshow-frame img,
.slideshow-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reviews slider variant — sits under the SUBMIT button in the
   left column and shows Google review screenshots. Uses
   object-fit:contain so text-heavy screenshots aren't cropped,
   and matches the textarea's smaller corner radius. Kept short
   vertically so it doesn't dominate the form. */
.slideshow-frame.is-contain {
  aspect-ratio: 16 / 9;
  max-height: 220px;
  border-radius: 33px;
  box-shadow: 7px 7px 14px rgba(0, 0, 0, .4);
  margin-top: 2rem;
}
.slideshow-frame.is-contain .slider-slide {
  object-fit: contain;
  background: #fff;
}

.slideshow-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 1.1rem;
  z-index: 2;
}
.slideshow-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #000;
  display: block;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: .35;
  transition: opacity .2s ease, transform .2s ease;
}
.slideshow-dot:hover { opacity: .65; }
.slideshow-dot.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.btn-share {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: 'Carlito', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  padding: .9rem 2rem;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 6px 6px 14px rgba(0, 0, 0, .4);
  text-align: center;
  letter-spacing: .02em;
  width: min(70%, 400px);
  transition: transform .15s, box-shadow .15s;
}
.btn-share:hover {
  transform: translateY(-1px);
  box-shadow: 8px 8px 16px rgba(0, 0, 0, .45);
}

@media (max-width: 900px) {
  .contact-panel {
    padding: 2rem 1.5rem;
    border-radius: 28px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .btn-share { width: 100%; }
}

/* =====================================================
   FORMS  (contact + add-review)
   ===================================================== */
.form-card {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.form-card h2 {
  font-family: 'Carlito', sans-serif;
  font-weight: 700;
  color: #f1ae2f;
  -webkit-text-stroke: 1px #603913;
  margin: 0 0 1.25rem;
  font-size: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 600px) {
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
}

.form-field label {
  display: block;
  font-family: 'Carlito', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .35rem;
  color: #0c1e44;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1.5px solid #0c1e44;
  border-radius: 10px;
  padding: .75rem .9rem;
  font: inherit;
  background: #fdfdfd;
  color: #0c1e44;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid #f1ae2f;
  outline-offset: 1px;
  border-color: #f1ae2f;
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  margin-top: .5rem;
  padding: .85rem 2.2rem;
  background: #f1ae2f;
  color: #0c1e44;
  font-family: 'Carlito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid #603913;
  border-radius: 14px;
  letter-spacing: .03em;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.3);
}

/* Honeypot — pushed off-screen so real visitors never see it. */
.hp-field {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Inline error feedback for the form. */
.form-error {
  display: none;
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  background: #fff1e5;
  border-left: 4px solid #c0392b;
  border-radius: 8px;
  color: #882a17;
  font-weight: 600;
}
.form-error.is-visible { display: block; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: #e6ffea;
  border: 1px solid #2f8e4d;
  border-radius: 10px;
  color: #1a5d31;
}
.form-success.is-visible { display: block; }

/* =====================================================
   REVIEWS PAGE
   ===================================================== */
.reviews-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
@media (min-width: 800px) {
  .reviews-summary { grid-template-columns: auto 1fr; gap: 3rem; }
}

.rating-big {
  text-align: center;
}
.rating-big .score {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  color: #0c1e44;
}
.rating-big .stars {
  width: 220px;
  max-width: 100%;
  margin: .75rem auto;
}
.rating-big .total {
  font-family: 'Carlito', sans-serif;
  font-weight: 700;
  color: #603913;
}

.rating-bars { width: 100%; }
.rating-bars .bar-row {
  display: grid;
  grid-template-columns: 70px 1fr 50px;
  align-items: center;
  gap: .75rem;
  margin: .55rem 0;
  font-family: 'Carlito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.rating-bars .bar-track {
  height: 14px;
  background: #e7e7e7;
  border-radius: 999px;
  overflow: hidden;
}
.rating-bars .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbc24b, #f1ae2f);
  border-radius: 999px;
}
.rating-bars .bar-count {
  text-align: right;
  color: #0c1e44;
}

.section-heading {
  font-family: 'Carlito', sans-serif;
  font-weight: 700;
  color: #f1ae2f;
  -webkit-text-stroke: 1px #603913;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 3rem 0 1.5rem;
  text-align: center;
}

.review-feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .review-feed { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .review-feed { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.review-card .stars { width: 110px; margin-bottom: .5rem; }
.review-card .name {
  font-family: 'Carlito', sans-serif;
  font-weight: 700;
  margin: .25rem 0 .25rem;
}
.review-card .date {
  font-size: .9rem;
  color: #666;
  margin-bottom: .75rem;
}

/* Container for auto-loaded reviews (Google / Yelp / etc.) */
.review-embed {
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  text-align: center;
  font-style: italic;
  color: #666;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #fff;
  padding: 3rem 0;
  color: #0c1e44;
  border-top: 1px solid rgba(0,0,0,.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1fr auto; }
}

.footer-friends h2 {
  font-family: 'Carlito', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 .75rem;
}
.footer-friends ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: coral;
  font-size: 1.1rem;
  line-height: 1.6;
}
.footer-friends ul a {
  color: coral;
  text-decoration: none;
}
.footer-friends ul a:hover { text-decoration: underline; }

.btn-directions {
  display: inline-block;
  background: #c7f1ff;
  color: #0c1e44;
  font-family: 'Carlito', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2.5rem;
  border-radius: 18px;
  text-decoration: none;
  letter-spacing: .04em;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.btn-directions:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}

.footer-fineprint {
  margin-top: 2rem;
  font-size: .85rem;
  color: #555;
  text-align: center;
}
