/* ==========================================================
   Talents Gifts — light "beach house" blue theme
   Palette: airy sky-blue background, ocean-blue accent,
   soft seafoam, deep navy text, a touch of warm sand.
   Swap the variables below to re-theme.
   ========================================================== */

:root {
  --sky: #f2f8fb;
  --sky-deep: #e1eef5;
  --navy: #24404f;
  --navy-soft: #4d6b78;
  --ocean: #4f9dc0;
  --ocean-dark: #33788f;
  --seafoam: #6fa89c;
  --seafoam-light: #e6f2ee;
  --sand: #cf9a4c;
  --white: #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 14px;
  --shadow: 0 6px 20px rgba(36, 64, 79, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--sky);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin: 0 0 .5em;
}

a {
  color: var(--ocean-dark);
  text-decoration: none;
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 248, 251, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--sky-deep);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 88px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: var(--navy-soft);
  font-weight: 600;
  font-size: .95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}

.site-nav a:hover {
  color: var(--ocean-dark);
  border-color: var(--ocean);
}

.site-nav a.active {
  color: var(--ocean-dark);
  border-color: var(--ocean);
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(79, 157, 192, 0.22), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(111, 168, 156, 0.18), transparent 50%),
    linear-gradient(180deg, var(--sky) 0%, var(--sky-deep) 100%);
  padding: 96px 0 88px;
  text-align: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: .8rem;
  color: var(--seafoam);
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin-bottom: 16px;
}

.hero-tagline {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  color: var(--navy-soft);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-primary {
  background: var(--ocean);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--ocean-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--sky);
  transform: translateY(-2px);
}

/* ---------- Sections ---------- */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.section-subtitle {
  text-align: center;
  color: var(--navy-soft);
  margin-top: -8px;
  margin-bottom: 40px;
}

/* ---------- Award ---------- */
.award-section {
  padding: 32px 0;
  background: var(--sky);
}

.award-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: left;
}

.award-badge-img {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.award-caption {
  max-width: 320px;
  font-size: .92rem;
  color: var(--navy-soft);
  margin: 0;
}

.award-caption strong {
  color: var(--navy);
}

/* ---------- Hours & Location ---------- */
.hours-section {
  background: var(--white);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

.hours-card {
  background: var(--seafoam-light);
  border-radius: var(--radius);
  padding: 32px;
}

.hours-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(36, 64, 79, 0.15);
  font-size: .98rem;
}

.hours-list li:last-child { border-bottom: none; }

.hours-list li span:first-child {
  font-weight: 700;
  color: var(--navy);
}

.hours-list li span:last-child {
  color: var(--navy-soft);
}

.hours-live-note {
  color: var(--navy-soft);
  font-size: .95rem;
  margin: 0 0 16px;
}

.hours-live-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: .85rem;
  margin-bottom: 28px;
}

.contact-heading {
  font-size: 1.1rem;
  margin-bottom: 10px;
  margin-top: 0;
}

.contact-line {
  margin: 4px 0;
  color: var(--navy-soft);
}

.contact-line a {
  color: var(--ocean-dark);
  font-weight: 700;
}

.contact-sub {
  font-size: .88rem;
  font-style: italic;
  margin-top: -2px;
  margin-bottom: 14px;
  color: var(--seafoam);
}

.hours-map {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hours-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

/* ---------- Follow Us ---------- */
.follow-section {
  background: var(--sky-deep);
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--navy);
  padding: 18px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform .15s ease, color .15s ease;
}

.social-card .social-icon {
  color: var(--ocean);
  display: flex;
}

.social-card:hover {
  transform: translateY(-3px);
  color: var(--ocean-dark);
}

/* ---------- Gallery ---------- */
.gallery-hero {
  text-align: center;
  padding-bottom: 24px;
  background:
    radial-gradient(circle at 15% 20%, rgba(79, 157, 192, 0.18), transparent 45%),
    linear-gradient(180deg, var(--sky) 0%, var(--sky-deep) 100%);
}

.gallery-hero .hero-eyebrow {
  text-align: center;
}

.gallery-section {
  background: var(--white);
  padding-top: 40px;
}

.gallery-empty {
  max-width: 480px;
  margin: 0 auto 40px;
  padding: 24px;
  text-align: center;
  color: var(--navy-soft);
  background: var(--seafoam-light);
  border-radius: var(--radius);
}

.gallery-empty code {
  background: rgba(36, 64, 79, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .9em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--sky-deep);
  padding: 28px 0;
}

.footer-inner {
  text-align: center;
  font-size: .9rem;
}

.footer-inner a {
  color: var(--sand);
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

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

  .hours-map {
    min-height: 260px;
  }

  .section {
    padding: 60px 0;
  }
}
