:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-color: #333;
  --light-text-color: #fff;
  --dark-background: #1a1a1a;
  --button-hover-darken: #cfa804;
  --button-primary-bg: var(--secondary-color);
  --button-primary-text: var(--primary-color);
  --button-secondary-bg: #555;
  --button-secondary-text: var(--light-text-color);
  --button-accent-bg: #E74C3C;
  --button-accent-text: var(--light-text-color);
}

body {
  margin-top: 100px;
  font-family: 'Arial', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 60px;
  background-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  color: var(--light-text-color);
  padding: 0 20px;
  box-sizing: border-box;
}

.header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.header-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
}

.logo {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--secondary-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Impact', sans-serif;
  flex-grow: 1;
  text-align: center;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.hamburger-menu span:last-child {
  margin-bottom: 0;
}

.hamburger-menu.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-grow: 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  flex-grow: 1;
  justify-content: center;
}

.nav-link {
  color: var(--light-text-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  padding: 5px 0;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.header-buttons-desktop {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.header-buttons-mobile {
  display: none;
  width: 100%;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 5px;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: none;
}

.btn-primary {
  background-color: var(--button-primary-bg);
  color: var(--button-primary-text);
  box-shadow: 0 0 15px var(--secondary-color), 0 0 30px var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--button-hover-darken);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--secondary-color), 0 0 40px var(--secondary-color), 0 0 60px var(--secondary-color);
}

.btn-secondary {
  background-color: var(--button-secondary-bg);
  color: var(--button-secondary-text);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #444;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--button-accent-bg);
  color: var(--button-accent-text);
  background-image: linear-gradient(45deg, #E74C3C, #C0392B);
}

.btn-accent:hover {
  background-image: linear-gradient(45deg, #C0392B, #E74C3C);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
}

.site-footer {
  background-color: var(--dark-background);
  color: #bbb;
  padding: 40px 20px;
  font-size: 0.9em;
  line-height: 1.8;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 2em;
  font-weight: bold;
  color: var(--secondary-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.footer-section h3 {
  color: var(--light-text-color);
  font-size: 1.2em;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 5px;
  display: inline-block;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li a {
  color: #bbb;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.footer-nav li a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: var(--secondary-color);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}

@media (max-width: 1024px) {
  .nav-list {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  body {
    margin-top: 150px;
  }

  .site-header {
    min-height: auto;
    padding: 0 15px;
  }

  .header-top-bar {
    padding: 10px 0;
    justify-content: space-between;
  }

  .hamburger-menu {
    display: block;
  }

  .logo {
    text-align: center;
    flex-grow: 1;
  }

  .desktop-right-placeholder {
    display: block;
    width: 45px; /* Matches hamburger width for visual balance */
    flex-shrink: 0;
  }

  .header-buttons-desktop {
    display: none;
  }

  .header-buttons-mobile {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--primary-color);
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .main-nav.open {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
    justify-content: flex-start;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    display: block;
    padding: 15px 20px;
    font-size: 1.2em;
    width: 100%;
  }
  
  .nav-link::after {
    left: 20px;
    bottom: 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-section h3 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
  }

  .footer-nav li a {
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.8em;
  }
  .header-buttons-mobile .btn {
    padding: 8px 15px;
    font-size: 0.9em;
  }
  .site-footer {
    padding: 30px 15px;
  }
  .footer-logo {
    font-size: 1.8em;
  }
}