/* Reset + Layout */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  color: #ffffff;
  position: relative;
}

.container {
  position: relative;
  z-index: 2;
  padding: 40px;
}

/* Background Video */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4); /* ✨ dark mode filter */
}


/* Semi-transparent overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(98, 109, 96, 0.6); /* green with 60% opacity */
  z-index: 1;
}

/* Logo */
.logo {
  max-width: 500px;
  height: auto;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1.5s ease-out forwards;
  opacity: 0;
}

/* Tagline */
.tagline {
  color: #e9bdbb;
  margin-top: 12px;
  font-size: 18px;
  animation: fadeIn 1.5s ease-out 0.6s forwards;
  opacity: 0;
}

/* Main Content */
main {
  margin-top: 100px;
}

h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 40px;
}

/* Instagram Icon */
.insta-icon img {
  width: 40px;
  height: 40px;
  background-color: #e9bdbb;
  padding: 8px;
  border-radius: 50%;
}
