@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@500;700&display=swap');

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 125px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: #E4E8EB;
  background-color: #1B242F;
  line-height: 1.8;
}

/* NAVBAR */
.navbar {
  width: 100%;
  display: flex;
  flex-direction:column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 0px;
}

.hidden {
  transform: translateY(-100%);
}

.nav-up{
  background-color: #121A23;
  color: #E4E8EB;
  height: 85px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-items: center;
  z-index: 3;
  border-bottom: 1px solid #2A3946;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.navbar img{
  margin-top: 10px;
}

.navbar img {
  height: 45px;
}

.nav-down{
  z-index: 1;
  background-color: #1B242F;
  height: 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  border-bottom: 1px solid #2A3946;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  padding-left: 15%;
  padding-right: 15%;
}

.normal {
  color: #D0E4EA;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.normal::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 2px;
  width: 0;
  background: #C7B299;
  transition: width 0.3s ease;
}

.normal:hover::after {
  width: 100%;
}

.standout {
  border: 1.5px solid #C7B299;
  border-radius: 18px;
  padding: 0px 5px;
  color: #C7B299;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.standout:hover {
  border-radius: 18px;
  padding: 0px 5px;
  background-color: #C7B299;
  color: #1B242F;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 80vh;
  background-image: url("../Images/view.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit:cover;
  opacity: 0;
  animation: fadeInVideo 3s ease forwards;
  animation-delay: 2s; /* Delay to show image briefly first */
  z-index: 0;
}

@keyframes fadeInVideo {
  to {
    opacity: 1;
  }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom, transparent 0%, #1B242F 100%);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  padding: 10px 15px;
  text-align: center;
  margin-top: 35svh;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 60%;
  animation: fadeInUp 1.2s ease-out;
  transition: background-color 0.3s ease;
}


.hero-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F5F3EF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
  font-size: 1.2rem;
  font-style: italic;
  color: #D0E4EA;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
.footer {
  background-color: #121A23;
  color: #E4E8EB;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.95rem;
  border-top: 1px solid #344452;
}
