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

body {
  font-family: "Lato", sans-serif;
  color: #3c3c3c;
  overflow-x: hidden;
  background: url('https://happilyafter.gr/images/wedding-rings_1303278-9378.png') no-repeat center center;
  background-size: cover;
}

/* Translucent Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.6);
  z-index: -1;
}

/* Main Content Container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 2rem;
}

/* Titles and Subheadings */
h1 {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #5e5e5e;
}

.subheading {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #7f7f7f;
}

.countdown {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #333;
}

/* Decorative Line */
.line-decor {
  width: 150px;
  height: 3px;
  background: #c0c0c0;
  margin: 2rem auto;
}

/* Menu Styling */
.menu {
  position: fixed;
  top: 10%;
  right: 2%;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu a {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #3c3c3c;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.menu a:hover {
  background-color: #f0f0f0;
  color: #007bff;
}

/* Footer Styling */
footer {
  position: absolute;
  bottom: 0.5rem;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #5e5e5e;
}
