/* Reset basics */
body {
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
  background-color: #fffaf9;
  color: #5e4b4b;
}

/* Navbar Styles */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #f8f3f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

nav .logo img {
  height: 50px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #5e4b4b;
  font-weight: bold;
}

/* Main layout */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Logo */
.hero-logo {
  text-align: center;
  margin: 2rem 0 1rem;
}

.hero-logo img {
  max-width: 200px;
  height: auto;
  opacity: 0.95;
}

/* Video Banner */
.video-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #dba8b3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-text h1 {
  font-size: 2.5rem;
  margin: 0;
}

.banner-text p {
  font-size: 1.2rem;
  margin-top: 10px;
}

