:root {
  --primary-color: #f4b400;
  --secondary-color: #111111;
  --accent-color: #c62828;
  --light-bg: #f8f5ee;
  --text-dark: #212529;
  --purple: #4b2e83;
}

/* =========================
   BASE
========================= */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

body *,
body *::before,
body *::after {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1140px;
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}

p {
  line-height: 1.7;
}

/* =========================
   ACCESSIBILITY
========================= */

.skip-link {
  position: absolute;
  top: -50px;
  left: 1rem;
  z-index: 9999;

  background: #111;
  color: #fff;

  padding: 0.75rem 1rem;

  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  padding: 1rem 0;
}

.navbar-brand span {
  font-size: 1.65rem;
  font-weight: 700;
  color: #111;
}

.navbar-brand img {
  object-fit: contain;
}

.nav-link {
  font-weight: 700;
  color: #222 !important;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color) !important;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;

  min-height: 88vh;

  display: flex;
  align-items: flex-end;

  padding: 0 0 70px;

  padding-left: 2rem;

  overflow: hidden;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.38)
    ),
    url("public/images/gus_with_mobile.webp")
    center center / cover no-repeat;
}

/* GLASS CARD */

.hero-content {
  position: relative;

  width: 100%;
  max-width: 650px;

  margin-left: 0;

  background: rgba(255,255,255,0.94);

  backdrop-filter: blur(8px);

  padding: 2.5rem;

  border-radius: 28px;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.30);

  color: #111;
}

/* HERO TEXT */

.hero-subtitle {
  text-transform: uppercase;

  letter-spacing: 2px;

  font-weight: 800;

  color: var(--accent-color);

  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);

  line-height: 0.98;

  font-weight: 700;

  margin-bottom: 1.25rem;

  color: #111;
}

.hero-content p {
  max-width: 560px;

  font-size: 1.08rem;

  line-height: 1.8;

  font-weight: 600;

  color: #444;

  margin-bottom: 2rem;
}

/* HERO BUTTONS */

.hero-content .btn {
  min-width: 220px;

  font-weight: 700;

  border-radius: 999px;

  padding: 0.95rem 1.9rem;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.hero-content .btn-warning {
  background: var(--primary-color);

  border: none;

  color: #111;

  box-shadow:
    0 10px 24px rgba(244, 180, 0, 0.28);
}

.hero-content .btn-warning:hover {
  background: #ffca28;

  color: #111;

  transform: translateY(-2px);

  box-shadow:
    0 16px 30px rgba(244, 180, 0, 0.38);
}

.hero-content .btn-danger {
  background: var(--accent-color);

  border: 2px solid var(--accent-color);

  color: white;

  box-shadow:
    0 10px 24px rgba(198, 40, 40, 0.28);
}

.hero-content .btn-danger:hover {
  background: #a91f1f;

  border-color: #a91f1f;

  color: white;

  transform: translateY(-2px);

  box-shadow:
    0 16px 30px rgba(198, 40, 40, 0.38);
}

/* =========================
   SECTION SYSTEM
========================= */

section {
  width: 100%;
}

.contact-intro,
.contact-details {
  background: var(--light-bg);
}

.section-title {
  font-size: clamp(2.6rem, 4vw, 4.5rem);

  font-weight: 700;

  text-align: center;

  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 760px;

  margin: 0 auto;

  color: #666;

  font-size: 1.15rem;

  text-align: center;
}

/* =========================
   CONTACT CARDS
========================= */

.contact-card {
  height: 100%;

  background: #fff;

  border: 1px solid #eee;

  border-radius: 24px;

  padding: 2rem;

  box-shadow:
    0 14px 35px rgba(0,0,0,0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 42px rgba(0,0,0,0.12);
}

.contact-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--primary-color);

  color: #111;

  font-size: 1.5rem;

  margin-bottom: 1.2rem;
}

.contact-card h3 {
  font-size: 1.5rem;

  font-weight: 800;

  margin-bottom: 0.85rem;
}

.contact-card p {
  color: #555;

  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--accent-color);

  font-weight: 800;

  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* =========================
   LOCATION SECTION
========================= */

.location-section {
  background: #111;

  color: #fff;
}

.location-info-box {
  background: rgba(255,255,255,0.08);

  border-radius: 24px;

  padding: 2rem;

  border: 1px solid rgba(255,255,255,0.12);
}

.location-info-box h2 {
  font-size: clamp(2.6rem, 4vw, 4.8rem);

  font-weight: 700;

  margin-bottom: 1rem;
}

.location-info-box p {
  color: rgba(255,255,255,0.82);
}

.location-info-box strong {
  color: #fff;
}

.location-info-box a:not(.btn) {
  color: #fff;

  font-weight: 700;
}

.map-wrapper {
  width: 100%;

  min-height: 380px;

  border-radius: 24px;

  overflow: hidden;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.3);
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.78)
    ),
    url("public/images/loaded_hot_dog.webp")
    center / cover no-repeat;

  color: #fff;

  padding: 100px 0 !important;
}

.cta-section h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);

  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 720px;

  margin: 0 auto;

  font-size: 1.25rem;
}

/* =========================
   FOOTER
========================= */

footer {
  background-color: #111;
}

.footer-link {
  color: rgba(255,255,255,0.8);

  text-decoration: none;

  font-weight: 700;

  transition: color 0.25s ease;
}

.footer-link:hover {
  color: #fff;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

  .container {
    max-width: 720px;
  }

  .hero-section {
    min-height: 76vh;

    padding-bottom: 50px;

    padding-left: 1rem;
  }

  .hero-content {
    max-width: 90%;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 340px;
    height: 340px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

  .container {
    width: 92%;
    max-width: 540px;
  }

  .navbar-brand span {
    font-size: 1.1rem;
  }

  .navbar-brand img {
    width: 54px;
    height: 54px;
  }

  .hero-section {
    min-height: 72vh;

    padding-left: 0;

    padding-right: 0;

    padding-bottom: 30px;

    align-items: flex-end;
  }

  .hero-content {
    width: 100%;

    max-width: 100%;

    padding: 1.7rem;

    border-radius: 22px;
  }

  .hero-content h1 {
    font-size: 2.5rem;

    line-height: 1.05;
  }

  .hero-content p {
    font-size: 1rem;

    line-height: 1.7;
  }

  .hero-content .btn {
    width: 100%;

    max-width: 100%;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
  }

  .contact-card,
  .location-info-box {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 80px 0 !important;
  }

  .cta-section h2 {
    font-size: 2.6rem;
  }
}