/*
Theme Name: Alcantara Coming Soon
Theme URI: https://alcantaradrivingschool.com
Author: Alcantara Driving School
Author URI: https://alcantaradrivingschool.com
Description: Modern Coming Soon theme for Alcantara Driving School.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alcantara-coming-soon
Tags: coming-soon, one-page, responsive
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:      #0e0e0e;
  --yellow:     #f5a800;
  --yellow-soft:#ffc23e;
  --white:      #ffffff;
  --offwhite:   #f0ece4;
  --muted:      #7a7a7a;
  --border:     rgba(245,168,0,0.22);
}

html, body { height: 100%; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* =============================================
   BACKGROUND
   ============================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(245,168,0,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 90% -10%,  rgba(245,168,0,0.06) 0%, transparent 55%),
    linear-gradient(170deg, #111111 0%, #0e0e0e 40%, #141414 100%);
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: 13%;
  left: -10%;
  width: 130%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--yellow) 30%, var(--yellow) 70%, transparent 100%);
  transform: rotate(-4deg);
  opacity: 0.18;
  z-index: 0;
}

/* =============================================
   ROAD DASHES
   ============================================= */
.road-marks {
  position: fixed;
  bottom: 9.5%;
  left: -5%;
  width: 130%;
  display: flex;
  gap: 48px;
  transform: rotate(-4deg);
  z-index: 0;
  animation: roadScroll 2.8s linear infinite;
}
.road-marks span {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--yellow);
  opacity: 0.13;
  border-radius: 2px;
  flex-shrink: 0;
}
@keyframes roadScroll {
  from { transform: rotate(-4deg) translateX(0); }
  to   { transform: rotate(-4deg) translateX(-104px); }
}

/* Dot grid – top right */
.dot-grid {
  position: fixed;
  top: 40px;
  right: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  z-index: 0;
  opacity: 0.18;
}
.dot-grid span {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--yellow);
}

/* Side line – left */
.side-line {
  position: fixed;
  left: 44px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
  opacity: 0.25;
  z-index: 0;
}

/* =============================================
   CONTAINER
   ============================================= */
.cs-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 56px 40px;
  max-width: 700px;
  width: 92%;
}

.cs-container > * { animation: fadeUp 0.85s ease both; opacity: 0; }
.cs-logo-wrap  { animation-delay: 0.05s; }
.cs-divider    { animation-delay: 0.18s; }
.cs-badge      { animation-delay: 0.28s; }
.cs-title      { animation-delay: 0.38s; }
.cs-subtitle   { animation-delay: 0.50s; }
.cs-info       { animation-delay: 0.62s; }
.cs-footer     { animation-delay: 0.72s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   LOGO
   ============================================= */
.cs-logo-wrap { margin-bottom: 40px; }

.cs-logo-img {
  width: auto;
  max-width: 340px;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(245,168,0,0.22));
  transition: filter 0.3s;
}
.cs-logo-img:hover {
  filter: drop-shadow(0 6px 32px rgba(245,168,0,0.38));
}

/* =============================================
   DIVIDER
   ============================================= */
.cs-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 32px;
  max-width: 280px;
}
.cs-divider::before, .cs-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--yellow));
}
.cs-divider::after {
  background: linear-gradient(to left, transparent, var(--yellow));
}
.cs-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* =============================================
   BADGE
   ============================================= */
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(245,168,0,0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 22px;
}
.cs-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.25; transform: scale(0.6); }
}

/* =============================================
   HEADING
   ============================================= */
.cs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 15vw, 8rem);
  letter-spacing: 8px;
  line-height: 0.92;
  background: linear-gradient(140deg, #ffffff 0%, var(--yellow-soft) 50%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 26px;
}

/* =============================================
   SUBTITLE
   ============================================= */
.cs-subtitle {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  max-width: 420px;
  margin: 0 auto 42px;
  letter-spacing: 0.3px;
}
.cs-subtitle strong {
  color: var(--offwhite);
  font-weight: 500;
}

/* =============================================
   INFO PILLS
   ============================================= */
.cs-info {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.cs-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 0.82rem;
  color: var(--offwhite);
  letter-spacing: 0.5px;
}
.cs-pill svg { color: var(--yellow); flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
.cs-footer {
  font-size: 0.68rem;
  color: rgba(122,122,122,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 500px) {
  .cs-container  { padding: 36px 20px; }
  .cs-logo-img   { max-width: 260px; }
  .cs-info       { flex-direction: column; align-items: center; }
  .side-line, .dot-grid { display: none; }
}
