:root {
  --primary-orange: #e66a26;
  --bg-dark: #0f172a;
  --text-white: #ffffff;
  --overlay-bg: rgba(0, 0, 0, 0.65);
  --font-serif: 'Roboto Slab', serif;
  --font-sans: 'Roboto', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Background Image with Overlay */
.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--overlay-bg), var(--overlay-bg)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

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

.central-logo {
  max-width: 450px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  animation: logoFadeIn 1.5s ease-out;
}

@keyframes logoFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.coming-soon-text {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.6;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background-color: var(--primary-orange);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
  transform: translateY(-3px);
  background-color: #f38245;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Contact Information */
.contact-info {
  margin-top: 2.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-info p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.contact-info i {
  color: var(--primary-orange);
  width: 16px;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-orange);
}

@media (max-width: 768px) {
  .central-logo {
    max-width: 250px;
  }
  .coming-soon-text {
    font-size: 2.25rem;
  }
  .social-links {
    gap: 1rem;
  }
  .contact-info {
    font-size: 0.85rem;
  }
}
