@charset "UTF-8";


html {
  scroll-behavior: smooth;
}


nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-image: url(../img/home_page/nav_banner_768px.png);
    z-index: 999;
	height: 50px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin: 20px auto;
	
}

.logo {
  font-weight: bold;
  font-size: 40px;
  color: #2e2e2e;
}

/* Hamburger button */
.menu-toggle {
  font-size: 30px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: none;
}

/* Nav links - default desktop */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 24px;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #f5eeda, #fdf3b5, #c9e8a2);

  border-radius: 15px;
  padding: 5px 10px;
  border: 1px solid black; /* added explicit border */
}

.nav-links li a:hover {
  color: black; /* keep text color black */
  background: linear-gradient(to right, #c9e8a2, #fdf3b5, #f5eeda); /* reversed gradient */
  transform: scale(1.05); /* optional: subtle grow effect */
	font-size: 25px;
}



/* Footer */
footer {
  background: #f2f1ec;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #ccc;
}



/* Mobile styles */
@media screen and (max-width: 1200px) {
  nav {
    background: none;
    box-shadow: none;
  }

  .nav-container {
    padding: 5px 15px 0px 15px;
    justify-content: flex-end;
    background: none;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .menu-toggle img {
    width: 50px;
    height: 50px;
	border-radius: 30px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px;
    right: 15px;
    background-image: url(../img/home_page/menu_background_03.png);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 10px 0px;
    width: 175px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 998;
	
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

	
.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 24px;
  transition: color 0.3s ease;
}
	
  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    width: 80%;
    padding: 2px 0px;
    font-size: 20px;
    color: #fff;
    font-family: 'Cabin', sans-serif;
    text-shadow: 2px 3px 4px rgba(255,255,255,0.40);
    text-decoration: underline;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(to right, #f0e6d2, #dcd1c3);
    margin: 0px auto;
    border-radius: 12px;
  }

 .nav-links a:hover {
  font-size: 22px;

}


}

@media (max-width: 1920px) {
	
	nav {
    width: 100%;
    background-image: url("../img/home_page/nav_banner_1920px.png");
	height: 100px;
}
	
	
.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 24px;
  transition: color 0.3s ease;
}
	
}




@media (max-width: 1200px) {
	
	nav {
    width: 100%;
    background-image: url("../img/home_page/nav_banner_1200px.png");
	height: 50px;
}
	
	
.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 24px;
  transition: color 0.3s ease;
}
	
}




@media (max-width: 768px) {
	
	nav {
    width: 100%;
    background-image: url("../img/home_page/nav_banner_768px.png");
	height: 50px;
}
	
	
.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 24px;
  transition: color 0.3s ease;
}
	
}





@media (max-width: 480px) {
	
	nav {
    width: 100%;
    background-image: url("../img/home_page/nav_banner_480px.png");
	height: 50px;
}
	
	
.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 24px;
  transition: color 0.3s ease;
}
	
}





@media (max-width: 300px) {
	nav {
    width: 100%;
    background-image: url(../img/home_page/nav_banner_300px.png);
	height: 50px;
}
	
	
.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 24px;
  transition: color 0.3s ease;
}
	
}


