@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: #000;
  background-color: #fff;
  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: #000;
  color: #fff;
  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 #7EBB17;
  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: #fff;
  height: 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  border-bottom: 1px solid #7EBB17;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  padding-left: 15%;
  padding-right: 15%;
}

.normal {
  color: #000;
  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: #7EBB17;
  transition: width 0.3s ease;
}

.normal:hover::after {
  width: 100%;
}

.standout {
  border: 1.5px solid #7EBB17;
  border-radius: 18px;
  padding: 0px 5px;
  color: #7EBB17;
  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: #7EBB17;
  color: #fff;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 90vh;
  background-image: url("../Images/B&B_5.JPEG");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  /*background: linear-gradient(to bottom, transparent 90%, #fff 100%);*/
  z-index: 1;
}

.hero-overlay {
  display: flex;
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  /*backdrop-filter: blur(1px);
  padding: 10px 15px;*/
  width: 100dvw;
  height: 90vh;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1.5px solid #7EBB17;
  /*margin-top: 35svh;*/
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1.2s ease-out;
  transition: background-color 0.3s ease;
}


.hero-overlay h1 {
  font-family: serif;
  font-size: 4rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-overlay h2 {
  font-family: serif;
  font-size: 2rem;
  font-weight: 500;
  color: #7EBB17;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-overlay a{
  background-color: #7EBB17;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 5px;
  padding: 0px 10px 0px 10px;
}

.hero-overlay a:hover{
  background-color: white;
  color: #7EBB17;
  font-size: 1.5rem;
  border-radius: 5px;
  padding: 0px 10px 0px 10px;
}

.hero-overlay p {
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.95rem;
  border-top: 1px solid #7EBB17;
}
