@import url('dropdown.css');


@font-face {
  font-family: 'Montserrat';
  src: url('/css/fonts/Montserrat-Regular.woff2') format('woff2'),
       url('/css/fonts/Montserrat-Regular.woff') format('woff'),
       url('/css/fonts/Montserrat-Regular.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap; 
}

@font-face {
  font-family: 'Montserrat';
  src: url('/css/fonts/Montserrat-SemiBold.woff2') format('woff2'),
       url('/css/fonts/Montserrat-SemiBold.woff') format('woff'),
       url('/css/fonts/Montserrat-SemiBold.ttf') format('ttf');
  font-weight: 700;
  font-style: normal;
  font-display: swap; 
}

@font-face {
  font-family: 'Roboto';
  src: url('/css/fonts/Roboto-Bold.woff2') format('woff2'),
       url('/css/fonts/Roboto-Bold.woff') format('woff'),
       url('/css/fonts/Roboto-Bold.ttf') format('ttf');
  font-weight: 700;
  font-style: normal;
  font-display: swap; 
}


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

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}



h1, h2, h3 {
  font-family: 'Roboto', Arial, sans-serif;
}

main {
  padding-left: 5px;
  padding-right: 5px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  font-family: Arial, sans-serif;
  font-weight: 700; 
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.logo img {
  height: 100px;
  width: auto;
}

.main-nav, .main-nav-mobile {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.main-nav a, .main-nav-mobile  a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: 400;
  transition: color 0.3s;
}

.main-nav a:hover, .main-nav-mobile  a:hover {
  color: #999999;
}

.main-nav a.active, .main-nav-mobile  a.active {
  color: #999999;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #333;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #aaaaaa;
}

/* Footer Styles */
.site-footer {
  background: #fff;
  padding: 0;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-text p,
.footer-credit p {
  font-size: 14px;
  color: #666;
}

.footer-credit a {
  color: #000;
}

.footer-credit a:hover {
  color: #999;
}

/* Main Content Area */
main {
  font-size: 19px;
  min-height: 60vh;
  max-width: 960px;
  margin: 0 auto;
}

main h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.5px;
}

main p {
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
}

main a {
  color: #000;
  text-decoration: underline;
  transition: color 0.3s;
}

main a:hover {
  color: #999999;
}

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

main .list li {
  margin-bottom: 10px;
  font-size: 20px;
}

main .list a {
  color: #000;
  text-decoration: underline;
  transition: color 0.3s;
}

main .list a:hover {
  color: #999999;
}

main h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #000;
}

main h2 a {
  color: #000;
  text-decoration: underline;
  transition: color 0.3s;
}

main h2 a:hover {
  color: #999999;
}

main h3 {
  font-size: 27px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #000;
}

main h3 a {
  color: #000;
  text-decoration: underline;
  transition: color 0.3s;
}

main h3 a:hover {
  color: #999999;
}

strong {
  font-weight: 700;
  letter-spacing: 0.1px;
  font-size: 1.1em;
}

ul {
  list-style-position: inside; 
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  z-index: 1001;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s;
}

.hamburger-menu:hover span {
  background: #999;
}

/* Menu Close Button */
.menu-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 40px;
  color: #333;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
}

.menu-close:hover {
  color: #999;
}

.main-nav-mobile {
    display: none;
}

/* Menu Close Button */
.menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #000;
  padding: 5px 10px;
}

.menu-close:hover {
  color: #999;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-nav-links > li {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  width: 95%;
  left: 2.5%;
  position: relative;
}

.mobile-nav-links > li > a {
  display: block;
  text-decoration: none;
  color: #000;
  text-align: center;
  font-size: 20px;
}

/* Mobile submenu toggle button */

.mobile-submenu-toggle.active {
  transform: rotate(45deg);
  content: '−';
}

/* Submenu */
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.mobile-submenu.active {
  max-height: 500px;
}

.mobile-submenu li {
  border-top: 1px solid #ddd;
  align-items: center;
}

.mobile-submenu a {
  display: block;
  padding: 12px 40px;
  text-decoration: none;
  color: #666;
  text-align: center;
  font-size: 15px;
}

.mobile-submenu a:hover {
  color: #999;
}

.mobile-social-icons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.mobile-social-icons img {
  width: 30px;
  height: 30px;
}

.mobile-has-submenu {
  display: block;
  align-items: center;
  gap: 10px;
}

.mobile-submenu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  padding: 0;
  color: #000;
  flex-shrink: 0; 
}

.mobile-has-submenu > a {
  display: inline-block;
  padding: 15px 0;
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    gap: 20px;
  }
  
  .main-nav{
    display: none;
  }

  .main-nav-mobile {
    display: none; /* Hide by default */
    position: fixed;
    top: 0;
    left: 10;
    width: 90%;
    height: auto;
    background: rgba(240, 240, 240, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 15px;
  }

  .main-nav-mobile.active {
    display: flex;
  }

  .main-nav-mobile a {
    font-size: 18px;
    padding: 10px 0;
    text-align: center;
  }

  /* Show close button in mobile menu */
  .main-nav-mobile .menu-close {
    display: block;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .hamburger-menu {
    display: flex;
  }

  .hamburger-menu.active{
    display: none;
  }

  .banner {
    max-width: 100%;
    overflow: hidden; 
  }

}


.mobile-has-submenu {
  width: 100%;
  border-bottom: none;
  position: relative;
}

.mobile-has-submenu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2.5%;
  width: 95%;
  height: 1px;
  background-color: #ccc;
}

/* Wrapper for button + link - this uses flexbox */
.submenu-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 0;
}

.mobile-submenu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  padding: 0;
  color: #000;
  flex-shrink: 0;
}

.submenu-header > a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
}

/* Submenu drops below the wrapper */
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.mobile-submenu.active {
  max-height: 500px;
}