/* Base styles */
:root {
  --primary-color: #3db049;
  --primary-dark: #3db049;
  --primary-light: #3db049;
  --text-light: #ffffff;
  --text-dark: #222222;
  --background-dark: rgba(0, 0, 0, 0.7);
  --background-darker: rgba(0, 0, 0, 0.85);
  --font-family: 'Montserrat', sans-serif;
  --transition-slow: 0.5s ease;
  --transition-medium: 0.3s ease;
  --transition-fast: 0.2s ease;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-light);
  background-color: #000;
  background-image: url('./bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Overlay to darken the background image */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000079;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 24px;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

/* Logo styles */
.logo-container {
  margin-bottom: 48px;
  animation: float 6s ease-in-out infinite;
}

.logo {
  width: 300px;
  height: auto;
}

/* Content styles */
.content {
  text-align: center;
  animation: slideUp 1s ease 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.coming-soon {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 8px;
  margin-bottom: 16px;
  color: var(--text-light);
}

.divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto 24px;
}

.message {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.5;
}

.contact {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 12px 24px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  transition: all var(--transition-medium);
}

.contact:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(176, 135, 46, 0.3);
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .logo {
    width: 240px;
  }
  
  .coming-soon {
    font-size: 1.8rem;
    letter-spacing: 6px;
  }
  
  .message {
    font-size: 1rem;
  }
  
  .contact {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    width: 180px;
  }
  
  .coming-soon {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }
  
  .message {
    font-size: 0.9rem;
  }
}