/*
Theme Name: 110 Events - Coming Soon
Theme URI: https://www.110uae.com
Author: Supreme JS General Trading
Author URI: https://www.110uae.com
Description: Custom-coded "We Are Rebranding / Coming Soon" splash theme for 110 EVENTS (110uae.com). Black background with lime-green accents and an animated grid overlay. Displays a single full-screen splash page site-wide while the main site is being rebuilt.
Version: 1.0.0
Requires PHP: 7.4
Text Domain: coming-soon-110
*/

/* -----------------------------------------------------------
   Reset / base
----------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Barlow', sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* -----------------------------------------------------------
   Layout
----------------------------------------------------------- */
.cs-page {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: #000000;
}

.cs-accent-top,
.cs-accent-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B5E42A, transparent);
}

.cs-accent-top {
  top: 0;
}

.cs-accent-bottom {
  bottom: 0;
}

.cs-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 48rem;
  width: 100%;
  gap: 2.5rem;
}

/* -----------------------------------------------------------
   Logo
----------------------------------------------------------- */
.cs-logo img {
  width: clamp(100px, 22vw, 160px);
  height: auto;
  margin: 0 auto;
}

/* -----------------------------------------------------------
   Headline block
----------------------------------------------------------- */
.cs-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cs-pill {
  background: rgba(181, 228, 42, 0.1);
  border: 1px solid rgba(181, 228, 42, 0.25);
  border-radius: 100px;
  padding: 6px 20px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #B5E42A;
  text-transform: uppercase;
}

.cs-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 10vw, 6rem);
  line-height: 0.95;
  color: #B5E42A;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

.cs-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

.cs-description {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  line-height: 1.6;
  margin: 0;
}

/* -----------------------------------------------------------
   Divider
----------------------------------------------------------- */
.cs-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 228, 42, 0.3), transparent);
}

/* -----------------------------------------------------------
   Contact
----------------------------------------------------------- */
.cs-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.cs-contact a {
  color: #B5E42A;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.cs-contact a:hover {
  text-decoration: underline;
}

/* -----------------------------------------------------------
   Grid background
----------------------------------------------------------- */
.cs-grid-bg {
  background-image:
    linear-gradient(rgba(181, 228, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181, 228, 42, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: cs-grid-scroll 8s linear infinite;
}

/* -----------------------------------------------------------
   Animations
----------------------------------------------------------- */
@keyframes cs-grid-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}

@keyframes cs-slide-up {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cs-animate-1 {
  animation: cs-slide-up 0.8s ease forwards;
}

.cs-animate-2 {
  animation: cs-slide-up 0.8s ease 0.2s forwards;
  opacity: 0;
}

.cs-animate-3 {
  animation: cs-slide-up 0.8s ease 0.6s forwards;
  opacity: 0;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .cs-grid-bg,
  .cs-title,
  .cs-animate-1,
  .cs-animate-2,
  .cs-animate-3 {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
