/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Fonts & Body */
  body {
    font-family: 'Inter', sans-serif;
    color: white;
    background-color: #fffdf7;
  }
  
  /* Hero Section */

.hero {
  height: 100vh;
  background-image: url('assets/images/anniehero.jpeg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
  
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* adjust as needed */
    z-index: 0;
}


  .hero-content {
    position: relative;
    z-index: 1;
  }
  
    .hero-brand {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 100;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(6px);
    font-family: 'Inter', sans-serif;
    letter-spacing: 3px;
  }
  .hero-brand strong {
    font-weight: 300;
  }




  .destination {
  text-transform: uppercase;
  letter-spacing: 13px;
  font-size: 3rem;
  animation: fadeIn 1.4s ease-out;
}

.city {
  font-size: 1.3rem;
  font-weight: 200;
  color: #f4d35e;
  animation: fadeIn 1.8s ease-out;
}

.who-we-are {
  margin-top: 2.5rem;
  max-width: 40%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fffdf7;
  font-weight: 300;
  opacity: 0.9;
  animation: fadeIn 1.8s ease-out;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;

}

.who-we-are p {
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  
.annie-links {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 0.8rem;
  text-align: right;
  color: #fff9c4;
  z-index: 2;
}

.annie-links ul {
  list-style: none;
  margin-top: 0.3rem;
  padding: 0;
}

.annie-links li {
  margin-bottom: 0.25rem;
}

.annie-links a {
  color: #fff9c4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.annie-links a:hover {
  color: #f4d35e;
}