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

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  overflow: hidden;
  position: relative;
}

/* Background image with opacity */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/background.jpg') no-repeat center center fixed;
  background-size: cover;
  opacity: 0.4;
  z-index: 0;
}

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

/* Main layout */
.coming-soon {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.double-underline {
  text-decoration: underline;
  text-decoration-style: solid;
}

/* Logo */
.logo {
  width: 120px;
  margin-bottom: 2rem;
}

/* Headings and text */
.content h1 {
  font-size: 3rem;
  color: #dc143c;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* Countdown styling */
.countdown {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 1.5rem;
  text-align: center;
  justify-content: center;
}

.countdown div {
  display: flex;
  flex-direction: column;
}

.countdown span {
  font-size: 2.5rem;
  font-weight: bold;
}

.countdown label {
  font-size: 0.9rem;
  color: #f0f0f0;
}

/* Social icons */
footer {
  margin-top: 3rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-icons a {
  color: white;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #dc143c;
}

/* Fade animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-in forwards;
}

.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
