@font-face {
  font-family: 'Aldo SemiBold';
  src: url('fonts/Aldo-SemiBold.ttf.eot');
  src: url('fonts/Aldo-SemiBold.ttf.eot?#iefix') format('embedded-opentype'),
       url('fonts/Aldo-SemiBold.ttf.woff') format('woff'),
       url('fonts/Aldo-SemiBold.ttf.svg#AldoSemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-yellow:    #FFEC00;
  --color-dark-blue: #003D57;
  --color-mid-blue:  #009EE2;
  --color-white:     #FFFFFF;
  --color-bg:        #001f2e;
  --color-surface:   #003D57;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Aldo SemiBold', 'Arial Black', 'Franklin Gothic Medium', sans-serif;
  background-color: var(--color-bg);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-yellow);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav__logo {
  max-height: 48px;
  width: auto;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__links a {
  color: var(--color-dark-blue);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-mid-blue);
  border-bottom-color: var(--color-mid-blue);
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

@media (max-width: 767px) {
  .nav__hamburger {
    display: block;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--color-bg);
    border-top: 1px solid rgba(0, 158, 226, 0.3);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links li a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 158, 226, 0.15);
    border-left: 3px solid transparent;
    transition: color 0.2s ease, border-left-color 0.2s ease;
  }

  .nav__links li a:hover,
  .nav__links li a.active {
    border-bottom-color: rgba(0, 158, 226, 0.15);
    border-left-color: var(--color-yellow);
  }
}

/* ─── Footer ─── */
.footer {
  background-color: var(--color-dark-blue);
  border-top: 2px solid var(--color-mid-blue);
  padding: 56px 0 0;
  margin-top: 80px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
}

.footer__brand {
  font-size: 2.25rem;
  color: var(--color-yellow);
  letter-spacing: 0.04em;
  line-height: 1;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--color-yellow);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact a {
  color: var(--color-mid-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__contact a:hover {
  color: var(--color-yellow);
}

.footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  border-top: 1px solid rgba(0, 158, 226, 0.2);
  padding: 24px 0;
}

@media (max-width: 767px) {
  .footer {
    margin-top: 48px;
    padding: 40px 0 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer__nav,
  .footer__contact {
    align-items: center;
  }
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn--primary {
  background-color: var(--color-yellow);
  color: var(--color-dark-blue);
  border-color: var(--color-yellow);
}

.btn--primary:hover {
  background-color: #e6d400;
  border-color: #e6d400;
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  background-color: var(--color-mid-blue);
  color: var(--color-dark-blue);
  transform: translateY(-2px);
}

/* ─── Hero ─── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-bg) 65%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0, 158, 226, 0.06) 39px, rgba(0, 158, 226, 0.06) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0, 158, 226, 0.06) 39px, rgba(0, 158, 226, 0.06) 40px);
  pointer-events: none;
}

.hero .container {
  position: relative;
}

.hero__content {
  max-width: 700px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title .accent {
  color: var(--color-yellow);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.5;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero {
    padding: 48px 0;
  }
}

/* ─── Page Header ─── */
.page-header {
  background-color: var(--color-dark-blue);
  padding: 40px 0;
  text-align: center;
}

.page-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-yellow);
  margin-bottom: 16px;
}

.page-header__intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .page-header {
    padding: 48px 0;
  }
}

/* ─── Section Title ─── */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-white);
  text-align: center;
  margin-bottom: 48px;
}

/* ─── Product Gallery ─── */
.gallery-section {
  padding: 80px 0;
}

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

.gallery-card {
  background-color: var(--color-surface);
  border: 1px solid rgba(0, 158, 226, 0.3);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  border-color: var(--color-yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.gallery-card__img-wrapper {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 20px;
  overflow: hidden;
}

.gallery-card__img-wrapper img {
  object-fit: contain;
  transition: transform 0.2s ease;
}

.gallery-card:hover .gallery-card__img-wrapper img {
  transform: scale(1.05);
}

.gallery-card__name {
  padding: 12px 14px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  border-top: 1px solid rgba(0, 158, 226, 0.15);
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .gallery-section {
    padding: 48px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

.lightbox__caption {
  color: var(--color-yellow);
  font-size: 1.1rem;
  text-align: center;
  margin: 0;
  white-space: pre-line;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.lightbox__close:hover {
  color: var(--color-yellow);
}

/* ─── Why Choose Us ─── */
.why-section {
  background-color: var(--color-dark-blue);
  padding: 80px 0;
}

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

.feature-card {
  background-color: var(--color-bg);
  border-radius: 8px;
  padding: 40px 28px;
  border: 1px solid rgba(0, 158, 226, 0.2);
  border-top: 3px solid var(--color-yellow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.feature-card__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.feature-card__heading {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-card__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .why-section {
    padding: 48px 0;
  }

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

/* ─── Services ─── */
.services-section {
  padding: 80px 0;
}

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

.service-card {
  background-color: var(--color-surface);
  border: 1px solid rgba(0, 158, 226, 0.25);
  border-top: 3px solid transparent;
  border-radius: 8px;
  padding: 36px 28px;
  transition: transform 0.2s ease, border-top-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--color-yellow);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.service-card__name {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.service-card__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .services-section {
    padding: 48px 0;
  }
}

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

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

/* ─── Callout Banner ─── */
.callout-banner {
  background-color: var(--color-mid-blue);
  padding: 72px 0;
  text-align: center;
}

.callout-banner__text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-dark-blue);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ─── Find Us ─── */
.find-us-section {
  padding: 80px 0;
}

.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-details .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details a {
  color: var(--color-mid-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: var(--color-yellow);
}

.opening-times-heading {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.opening-times {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
}

.opening-times th {
  background-color: var(--color-yellow);
  color: var(--color-dark-blue);
  padding: 12px 18px;
  text-align: left;
  font-size: 0.9375rem;
}

.opening-times td {
  padding: 12px 18px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.opening-times tbody tr:nth-child(odd) td {
  background-color: var(--color-surface);
}

.opening-times tbody tr:nth-child(even) td {
  background-color: var(--color-bg);
}

.map-wrapper {
  border: 2px solid var(--color-mid-blue);
  border-radius: 8px;
  overflow: hidden;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

@media (max-width: 767px) {
  .find-us-section {
    padding: 48px 0;
  }

  .find-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
