* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: black;
  overflow-x: hidden;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
  font-size: 14px;
  text-transform: uppercase;
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s ease;
  background-color: transparent;
  z-index: 1000;
}

#main-nav.scrolled {
      background: linear-gradient(to left, rgb(175, 141, 99) 30%, white 200%);
}

#main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#main-nav .logo {
  height: 40px;
}
.carousel-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.background-blur {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  z-index: -1;
  transition: background-image 0.5s ease-in-out;
}
.carousel-track-container {
  width: 90%; /* dati 80% */
  max-width: 1400px; /* dati 1200px */
  overflow: hidden;
}
.carousel-track {
  display: flex;
  justify-content: center;
  gap: 20px;
  transition: transform 0.5s ease;
  border-radius: 40px;
}
.slide {
  flex: 0 0 28%; /* adjust kung gusto mo lapad */
  height: 470px; /* fix na height lahat! */
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  opacity: 0.6;
  transition: transform 0.5s, opacity 0.5s;
  position: relative;
  border-radius: 40px;
  overflow: hidden; /* important para di lumabas img */
}

.slide.active {
  transform: scale(1.1);
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.caption {
  position: absolute;
  left: 120px;
  bottom: 40px;
  text-orientation: mixed;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
.caption strong {
  font-size: 1.2rem;
}
.controls {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.controls button {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
}
.controls button:hover {
  transform: scale(1.2);
}
.footer {
      background: linear-gradient(to left, rgb(175, 141, 99) 30%, white 200%);
  color: #dbe7ff;
  padding: 80px 5% 30px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-brand img {
  max-width: 120px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffffff;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin: 8px 0;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact li {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
  color: #ffffff;
}

.footer-social .social-icons a {
  font-size: 1.3rem;
  margin-right: 14px;
  color: #ffffff;
  transition: color 0.3s, transform 0.3s;
}

.footer-social .social-icons a:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #ffffff;
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #ffffff;
}
  
/******************************************************************************Mobile Responsive********************************************************************************/
@media (max-width: 1024px){
}
@media (max-width: 540px) and (orientation: portrait) {
  body {
  font-family: 'Montserrat', sans-serif;
  background: black;
  overflow-x: hidden;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  font-size: 7px;
  text-transform: uppercase;
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s ease;
  background-color: transparent;
  z-index: 1000;
}

#main-nav.scrolled {
      background: linear-gradient(to left, rgb(175, 141, 99) 30%, white 200%);
}

#main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#main-nav .logo {
  height: 20px;
}
.carousel-container {
  position: relative;
  width: 50vh;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.background-blur {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  z-index: -1;
  transition: background-image 0.5s ease-in-out;
}
.carousel-track-container {
  width: 90%; /* dati 80% */
  max-width: 700px; /* dati 1200px */
  overflow: hidden;
}
.carousel-track {
  display: flex;
  justify-content: center;
  gap: 20px;
  transition: transform 0.5s ease;
  border-radius: 20px;
}
.slide {
  flex: 0 0 28%; /* adjust kung gusto mo lapad */
  height: 245px; /* fix na height lahat! */
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  opacity: 0.6;
  transition: transform 0.5s, opacity 0.5s;
  position: relative;
  border-radius: 20px;
  overflow: hidden; /* important para di lumabas img */
}

.slide.active {
  transform: scale(1.1);
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.caption {
  position: absolute;
  left: 16px;
  bottom: 20px;
  text-orientation: mixed;
  color: white;
  font-weight: bold;
  font-size: .5rem;
  line-height: .6rem;
  text-shadow: .5px .5px 1.5px rgba(0,0,0,0.6);
}
.caption strong {
  font-size: .6rem;
}
.controls {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.controls button {
  background: none;
  border: none;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
}
.controls button:hover {
  transform: scale(1.2);
}
/* Footer */
.footer {
 background: linear-gradient(to left, rgb(175, 141, 99) 30%, white 200%);
    color: #dbe7ff;
    padding: 40px 5% 15px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 7.5px;
  }
  
  .footer-brand img {
    max-width: 60px;
    margin-bottom: 10px;
  }
  
  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 4px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: 0.95rem;
    margin-bottom: 5px;
  }
  
  .footer-contact i {
    margin-right: 4px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: 1.3rem;
    margin-right: 7px;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff;
    text-align: center;
    margin-top: 25px;
    padding-top: 10px;
    font-size: 0.85rem;
    color: #ffffff;
  }

}

.footer-links{
    display: none;
}
@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}



