/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url("assets/fleurwip.png") center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* push hero-content down */
  padding: 20px;
  text-align: center;
  color: white;
}

/* Logo in top-left */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo img {
  width: 100px;
  height: auto;
}

/* Menu buttons in top-right */
.menu-buttons {
  position: absolute;
  top: 100px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px; /* adjust to fit your button image */
  height: 70px; /* adjust to fit your button image */
  background: url("assets/menubutton2.png") no-repeat center/contain;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: #3b2c1e;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.6);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.menu-buttons .btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Mod Login Button styled like menu buttons */
.menu-buttons .login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 70px;
  background: url("assets/menubutton2.png") no-repeat center/contain;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: #3b2c1e;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.6);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.menu-buttons .login-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Hero Content (Title + Text) */
.hero-content {
  margin-bottom: 50px; /* move text away from middle */
}

.title-image {
  max-width: 250px; /* make title smaller */
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

.hero-content p {
  font-size: 1rem;
}

/* Intro Section */
.intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
}

.intro-text {
  flex: 1;
  padding-right: 20px;
}

.intro-media img {
  max-width: 100%;
  height: auto;
}
