/* ========== Base Styles (Mobile First) ========== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
}

a {
  color: #000;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid #fcd51e;
}

header,
footer,
section {
  padding: 1em;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Navigation */
.nav-container {
  background-color: #000;
  padding: 1em 2em;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  gap: 1em;
}

.logo img {
  max-height: 50px;
}

/* Hide nav menu on small screens by default */
nav[role="navigation"] {
  display: none;
  width: 100%;
  background-color: #000;
  padding: 1em 0;
  border-top: 1px solid #fcd51e;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
}

nav[role="navigation"].open {
  display: block;
}

/* Hamburger button */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5em;
  cursor: pointer;
  z-index: 1000;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: #fcd51e;
  border-radius: 2px;
}

/* Ensure hamburger and CTA are side-by-side */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-left: auto;
}

/* Mobile nav list layout */
@media (max-width: 768px) {
  nav[role="navigation"] ul {
    list-style: none;
    padding: 0;
    margin: 1em 0 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
  }

  .nav-cta {
    display: inline-block;
  }
}

nav a {
  padding: 0.5em;
  color: #fcd51e;
  font-weight: bold;
}

.nav-cta {
  background-color: #fcd51e;
  color: #000;
  font-weight: bold;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em 1em;
}

.hero-background-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.36);
  border-radius: 12px;
  padding: 2em;
  text-align: center;
  color: #fff;
  max-width: 90%;
  width: 100%;
}

.hero-overlay h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #fcd51e;
}

.hero-overlay p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
}

.button.yellow {
  background-color: #fcd51e;
  color: #000;
  padding: 10px 20px;
  margin: 0.5em;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.button.dark {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  margin: 0.5em;
  border: 2px solid #fff;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

/* Logo Section */
.logo-section {
  background-color: #fcd51e;
  text-align: center;
  padding: 2em 1em;
  overflow: hidden;
}

.logo-section img {
  max-width: 90%;
  height: auto;
}

/* Contact Form */
#contact {
  text-align: center;
}

form {
  max-width: 500px;
  margin: 0 auto;
  background-color: #000;
  color: #fcd51e;
  padding: 2em;
  border-radius: 4px;
}

form label {
  display: block;
  margin: 0.5em 0 0.2em;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1em;
  border: none;
  border-radius: 4px;
}

form button {
  background-color: #fcd51e;
  color: #000;
  padding: 0.75em 1.5em;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background: #000;
  color: #fcd51e;
  padding: 2em 1em;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 0;
  padding: 0;
}

.footer-bottom p {
  margin: 0;
}

/* ========== Tablet/Desktop Styles ========== */
@media (min-width: 768px) {
  .nav-content {
    flex-wrap: nowrap;
  }

  nav[role="navigation"] {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 2em;
    width: auto;
    position: static;
    background: none;
    padding: 0;
    border: none;
  }

  nav[role="navigation"] ul {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .nav-toggle {
    display: none;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-left: auto;
  }

  .hero-overlay h1 {
    font-size: 2.5em;
  }

  .hero-overlay p {
    font-size: 1.2em;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-bottom ul {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-overlay {
    max-width: 600px;
  }
}
.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #000;
  color: #fcd51e;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease, bottom 0.4s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}
