@import url('variables.css');

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-link-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  line-height: var(--leading-tight);
  font-weight: var(--weight-bold);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

/* ========== UTILITIES ========== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: var(--space-16) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--dark {
  background-color: var(--color-ocean-900);
  color: var(--color-text-inverse);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-text-inverse);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__header h2 {
  margin-bottom: var(--space-4);
}

.section__header p {
  color: var(--color-text-light);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section__header p {
  color: var(--color-ocean-100);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-align: center;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.5;
}

.btn--primary {
  background-color: var(--color-cta);
  color: var(--color-white);
  border-color: var(--color-cta);
}

.btn--primary:hover {
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn--white {
  background-color: rgba(255,255,255,0.95);
  color: var(--color-ocean-900);
  border-color: rgba(255,255,255,0.95);
  font-weight: var(--weight-bold);
}

.btn--white:hover {
  background-color: var(--color-white);
  color: var(--color-ocean-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.btn--ghost:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-lg);
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
}

.btn--block {
  display: block;
  width: 100%;
}

/* ========== HEADER & NAV ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-size: var(--text-xl);
  font-weight: var(--weight-black);
  color: var(--color-ocean-900);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.header__logo:hover {
  color: var(--color-ocean-700);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
  background-color: var(--color-ocean-50);
}

.nav__cta {
  margin-left: var(--space-4);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--color-gray-700);
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  margin: 5px 0;
  transition: all var(--transition-base);
}

/* ========== FULL-BLEED HERO ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 45, 72, 0.3) 0%,
    rgba(12, 45, 72, 0.55) 50%,
    rgba(12, 45, 72, 0.75) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 800px;
  padding: var(--space-8);
}

.hero h1 {
  color: var(--color-white);
  font-size: var(--text-5xl);
  font-weight: var(--weight-black);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-8);
  line-height: var(--leading-normal);
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background-color: var(--color-ocean-900);
  color: var(--color-ocean-100);
  padding: var(--space-4) 0;
}

.trust-bar__items {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* ========== PHOTO CARDS ========== */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.photo-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
  box-shadow: var(--shadow-photo);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.photo-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.photo-card:hover img {
  transform: scale(1.05);
}

.photo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 45, 72, 0.85) 0%,
    rgba(12, 45, 72, 0.3) 40%,
    transparent 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  color: var(--color-white);
}

.photo-card__title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.photo-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-3);
}

.photo-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
}

.photo-card__price {
  font-weight: var(--weight-bold);
  color: var(--color-sunset-300);
  font-size: var(--text-lg);
}

.photo-card__link {
  color: var(--color-sunset-300);
  font-weight: var(--weight-semibold);
  text-decoration: none;
}

/* ========== WILDLIFE GALLERY STRIP ========== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.gallery-strip__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-strip__item:hover img {
  transform: scale(1.08);
}

/* ========== EXTERNAL LINKS / AUTHORITY ========== */
.authority-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.authority-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-gray-700);
  text-decoration: none;
  transition: all var(--transition-base);
}

.authority-link:hover {
  border-color: var(--color-ocean-500);
  color: var(--color-ocean-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ========== FEATURES / INFO GRID ========== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.info-item {
  text-align: center;
  padding: var(--space-6);
}

.info-item__icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.info-item h3 {
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
}

.info-item p {
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

/* ========== TOUR HERO (Photo-Forward) ========== */
.tour-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.tour-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tour-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 45, 72, 0.85) 0%,
    rgba(12, 45, 72, 0.4) 50%,
    rgba(12, 45, 72, 0.2) 100%
  );
  z-index: 1;
}

.tour-hero__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: var(--space-12) var(--space-6) var(--space-10);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.tour-hero h1 {
  color: var(--color-white);
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.tour-hero__tagline {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.9);
  max-width: 650px;
}

/* ========== TOUR PAGE CONTENT ========== */
.tour-body {
  padding: var(--space-16) 0;
}

.tour-body .container {
  max-width: var(--max-width-narrow);
}

.tour-body h2 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  font-size: var(--text-2xl);
}

.tour-body h2:first-child {
  margin-top: 0;
}

.tour-body p {
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.tour-body ul,
.tour-body ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.tour-body ul {
  list-style: disc;
}

.tour-body ol {
  list-style: decimal;
}

.tour-body li {
  margin-bottom: var(--space-2);
  line-height: var(--leading-relaxed);
}

/* Tour Quick Facts */
.tour-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-8);
}

.tour-fact {
  text-align: center;
  padding: var(--space-3);
}

.tour-fact__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-bottom: var(--space-1);
}

.tour-fact__value {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-ocean-900);
}

/* Tour Photo Gallery */
.tour-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.tour-gallery img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.tour-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

/* Tour CTA Box */
.tour-cta-box {
  background: linear-gradient(135deg, var(--color-ocean-900) 0%, var(--color-ocean-700) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  color: var(--color-white);
  margin: var(--space-10) 0;
}

.tour-cta-box h3 {
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.tour-cta-box p {
  color: var(--color-ocean-100);
  margin-bottom: var(--space-6);
}

.tour-cta-box .btn {
  min-width: 200px;
}

/* ========== FAQ ACCORDION ========== */
.faq-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-200);
}

.faq-item summary {
  padding: var(--space-5) 0;
  font-weight: var(--weight-semibold);
  font-size: var(--text-lg);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-heading);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: var(--text-2xl);
  color: var(--color-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item__answer {
  padding: 0 0 var(--space-5);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
}

.faq-item__answer p {
  margin-bottom: var(--space-3);
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

/* ========== MAP CONTAINER ========== */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* ========== REVIEWS / TESTIMONIALS ========== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.testimonial {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-sunset-500);
}

.testimonial__stars {
  color: var(--color-gold-500);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.testimonial blockquote {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.testimonial__author {
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.breadcrumb__item::after {
  content: '/';
  margin-left: var(--space-1);
  color: var(--color-gray-300);
}

.breadcrumb__item:last-child::after {
  content: '';
}

.breadcrumb__item:last-child a {
  color: var(--color-text-light);
  pointer-events: none;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: var(--space-16) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,45,72,0.88) 0%, rgba(27,89,152,0.85) 100%);
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: var(--color-ocean-100);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Fallback for banners without photos */
.cta-banner--solid {
  background: linear-gradient(135deg, var(--color-ocean-900) 0%, var(--color-ocean-700) 100%);
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--color-gray-900);
  color: var(--color-gray-300);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer__col h4 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
}

.footer__col p,
.footer__col a {
  font-size: var(--text-sm);
  color: var(--color-gray-300);
  line-height: var(--leading-relaxed);
}

.footer__col a:hover {
  color: var(--color-white);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__nap {
  font-style: normal;
}

.footer__nap a {
  display: block;
}

.footer__profiles {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.footer__profiles a {
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-gray-700);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  transition: all var(--transition-fast);
}

.footer__profiles a:hover {
  border-color: var(--color-ocean-500);
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid var(--color-gray-700);
  padding-top: var(--space-8);
  text-align: center;
  font-size: var(--text-sm);
}

/* ========== 404 PAGE ========== */
.error-page {
  text-align: center;
  padding: var(--space-24) 0;
}

.error-page h1 {
  font-size: var(--text-6xl);
  color: var(--color-ocean-600);
  margin-bottom: var(--space-4);
}

.error-page p {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  margin-bottom: var(--space-8);
}

/* ========== DIRECTIONS PAGE ========== */
.directions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.directions-grid h3 {
  margin-bottom: var(--space-3);
}

.directions-grid ol {
  list-style: decimal;
  padding-left: var(--space-6);
}

.directions-grid ol li {
  margin-bottom: var(--space-2);
  line-height: var(--leading-relaxed);
}

/* ========== ABOUT PAGE ========== */
.about-content p {
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.about-content h2 {
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}

.cert-list {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-6);
}

.cert-list li {
  margin-bottom: var(--space-2);
}

/* ========== STEPS (Corporate page) ========== */
.steps {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.step {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.step:last-child {
  border-bottom: none;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-ocean-700);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.step h3 {
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
}

.step p {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* sm: 640px */
@media (min-width: 640px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

  .tour-facts {
    grid-template-columns: repeat(4, 1fr);
  }

  h1 { font-size: var(--text-5xl); }

  .hero h1 {
    font-size: var(--text-6xl);
  }
}

/* md: 768px */
@media (min-width: 768px) {
  .photo-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-container iframe {
    height: 450px;
  }

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

  .tour-gallery img:first-child {
    grid-column: 1 / 3;
  }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .directions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile nav */
@media (max-width: 1023px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-4) var(--space-6);
    box-shadow: var(--shadow-lg);
    gap: var(--space-1);
  }

  .nav--open {
    display: flex;
  }

  .nav__link {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    width: 100%;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-2);
  }

  .nav-toggle {
    display: block;
  }
}
