/* ===============================
   Modern Dark Theme — Tee Drive
   =============================== */

/* Color system (same palette, centralized) */
:root{
  --bg: #000000;
  --bg-grad-top: #0b6623;      /* deep green */
  --bg-grad-mid: #013220;      /* forest */
  --text: #ffffff;
  --muted: #cfd3d1;
  --muted-2: #9aa39e;
  --accent: #00ff7f;           /* neon green */
  --accent-soft: rgba(0,255,127,0.12);
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.12);
  --ring: rgba(0,255,127,0.35);
  --shadow: rgba(0,0,0,0.45);
}

/* Reset + base */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{display:block;max-width:100%;height:auto}

/* Layout helpers */
.container{
  width: min(1080px, 92dvw);
  margin-inline: auto;
}
.section{padding: clamp(56px, 8dvw, 96px) 0}

/* ===== Hero ===== */
.hero{
  position: relative;
  text-align: center;
  padding: 20px 20px clamp(56px, 6dvw, 96px);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(0,255,127,0.08), transparent 70%),
    linear-gradient(to bottom, var(--bg-grad-top), var(--bg), var(--bg));
  overflow: clip;
}
.hero::after{
  /* soft vignette */
  content:"";
  position:absolute;inset:0;
  box-shadow: inset 0 -140px 140px -80px var(--bg);
  pointer-events:none;
}
.logo {
    width: clamp(400px, 40vw, 600px);
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Optional subtle hover grow effect */
.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 28px rgba(0, 255, 127, 0.4));
}
.hero h1{
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(28px, 5.6dvw, 58px);
}
.coming-soon{
  font-size: clamp(14px, 1.6dvw, 18px);
  color: var(--accent);
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  animation: neonFlicker 1.5s infinite alternate, pulse 1.2s ease-in-out infinite alternate;
}

/* Glow pulse (existing) */
@keyframes pulse {
  from {
    text-shadow: 0 0 10px #00ff7f;
    opacity: 0.7;
  }
  to {
    text-shadow: 0 0 25px #00ff7f;
    opacity: 1;
  }
}

/* Flicker effect */
@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 5px #00ff7f,
      0 0 10px #00ff7f,
      0 0 20px #00ff7f,
      0 0 40px #00ff7f,
      0 0 80px #00ff7f;
    opacity: 1;
  }
  20%, 24%, 55% {
    text-shadow: none;
    opacity: 0.4;
  }
}

.coming-soon {
  animation: colorWave 3s infinite alternate, neonFlicker 1.5s infinite alternate;
}

@keyframes colorWave {
  0% { text-shadow: 0 0 10px #00ff7f, 0 0 20px #00ff7f; color: #00ff7f; }
  25% { text-shadow: 0 0 15px #0fff92, 0 0 30px #0fff92; color: #0fff92; }
  50% { text-shadow: 0 0 20px #00ff90, 0 0 40px #00ff90; color: #00ff90; }
  75% { text-shadow: 0 0 15px #00ff7f, 0 0 30px #00ff7f; color: #00ff7f; }
  100% { text-shadow: 0 0 10px #00ff7f, 0 0 20px #00ff7f; color: #00ff7f; }
}

.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #00ff7f;
  border-radius: 50%;
  opacity: 0.8;
  animation: sparkleAnim 0.5s linear forwards;
}

@keyframes sparkleAnim {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.coming-soon {
  position: relative;
  display: inline-block;
}

.tagline{
  margin-top: 18px;
  font-size: clamp(16px, 2dvw, 20px);
  color: #b8ffcf;
  opacity: 0.92;
}

/* ===== About ===== */
.about{
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 920px;
}
.about h2{
  font-size: clamp(22px, 3.6dvw, 34px);
  margin-bottom: 14px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.about p{
  margin: 0 auto 14px;
  color: var(--muted);
  font-weight: 300;
}

/* ===== Coming Soon / Features ===== */
.coming-soon-section{
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(0,255,127,0.08), transparent 70%),
    linear-gradient(to bottom, var(--bg), var(--bg-grad-mid));
    color: var(--text);
    padding: 30px 0;
}
.coming-soon-title{
  text-align: center;
  font-size: clamp(22px, 3.8dvw, 36px);
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: clamp(28px, 4.5dvw, 48px);
}
.coming-soon-title span{color: var(--accent)}

.coming-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px, 3.2dvw, 28px);
  width: min(1100px, 94dvw);
  margin: 0 auto;
}

.feature-card{
  position: relative;
  padding: 24px 22px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  box-shadow: 0 10px 30px -12px var(--shadow);
}
.feature-card::before{
  /* subtle accent ring on hover */
  content:"";
  position:absolute;inset:-1px;
  border-radius: 19px;
  pointer-events:none;
  opacity:0;transition:opacity .28s ease, box-shadow .28s ease;
  box-shadow: 0 0 0 0 var(--ring);
}
.feature-card:hover{
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px -14px rgba(0,255,127,0.25);
}
.feature-card:hover::before{
  opacity:1; box-shadow: 0 0 0 6px var(--ring);
}
.feature-card i{
  display:inline-grid;
  place-items:center;
  width: 48px; height: 48px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 22px;
}
.feature-card h3{
  font-size: clamp(16px, 2.2dvw, 18px);
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p{
  font-size: 0.98rem;
  color: var(--muted-2);
}

/* Section end “Coming Soon” label (reuses .coming-soon) */
.coming-soon-section .coming-soon{
  margin-top: clamp(36px, 5dvw, 64px);
}

/* ===== Footer ===== */
footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(to bottom, transparent, #000 40%);
  padding: clamp(36px, 5dvw, 60px) 20px;
  text-align: center;
}
footer p{
  margin: 10px 0;
  color: var(--muted-2);
}
.social-links{
  margin: 16px 0 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.social-links a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}
.social-links a i{font-size: 1.1rem}
.social-links a:hover{
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(0,255,127,0.25);
}
.social-links .instagram i{ color:#E1306C }
.social-links .facebook i{ color:#1877F2 }

.footer-note{
  margin-top: 12px;
  font-size: .88rem;
  color: #7a7a7a;
}

/* ===== Reveal-on-scroll (for your JS) ===== */
.about, footer{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.visible{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Glow (toggled by JS) ===== */
.glow{
  text-shadow: 0 0 8px var(--accent), 0 0 18px var(--accent);
}

/* ===== Motion accessibility ===== */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto}
  .coming-soon{animation:none}
  .about, footer{transition:none}
}

/* ===== Pulse keyframes ===== */
@keyframes pulse{
  from{ text-shadow: 0 0 10px var(--accent); opacity:.8 }
  to  { text-shadow: 0 0 24px var(--accent); opacity:1 }
}

/* ===== Small screens ===== */
@media (max-width: 600px){
  .hero h1{ letter-spacing: .08em }
}

/* Ensure Font Awesome uses its own font (prevents empty green squares) */
.fa-solid, .fa-regular, .fa-brands {
  font-family: "Font Awesome 6 Free";
}
.fa-solid { font-weight: 900; }      /* solid set */
.fa-regular { font-weight: 400; }

/* 1) Icons: bigger, centered, no tiles */
.feature-card i{
  background: none !important;     /* remove tile */
  border: none !important;
  width: auto; height: auto;
  display: block;
  margin: 0 auto 14px;             /* center above text */
  font-size: clamp(36px, 5vw, 64px);/* bigger icon */
  color: var(--accent, #00ff7f);
  line-height: 1;
  text-shadow: 0 0 10px rgba(0,255,127,0.18);
}

/* optional: a tiny hover glow */
.feature-card:hover i{
  text-shadow: 0 0 18px rgba(0,255,127,0.32);
}

/* 2) Add space before “What’s Coming…” */
.about{
  margin-bottom: clamp(40px, 6vw, 88px) !important;
}

/* 3) Make About modern: left-align text, add card styling */
.about{
  text-align: left !important;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 36px);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.45);
}

/* Keep the heading centered while paragraphs are left-aligned */
.about h2{
  text-align: center;
  margin-bottom: clamp(14px, 2.5vw, 20px);
}
.about p{
  text-align: left;
  max-width: 70ch;
  margin-inline: auto;             /* tidy line length on wide screens */
}

/* 4) Make HERO “Coming Soon” huge; keep features label smaller */
.hero .coming-soon{
  font-size: clamp(28px, 5vw, 64px);
  letter-spacing: 0.25em;
  margin-top: 18px;
}
.coming-soon-section .coming-soon{
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: 0.18em;
}

/* Center wrapper (optional) */
.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Pill button: white by default, neon-green on hover; icon stays green */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--card-border, rgba(255,255,255,0.12));
  background:var(--card, rgba(255,255,255,0.04));
  color:#ffffff;                                /* white text by default */
  font-weight:600;
  text-decoration:none;
  transition:transform .25s ease, border-color .25s ease,
             box-shadow .25s ease, color .25s ease, text-shadow .25s ease;
}

/* keep the icon green regardless of text color */
.btn svg, .btn i{
  width:20px; height:20px; line-height:1;
  color: var(--accent, #00ff7f);                /* always green icon */
}

/* hover = green text, green ring/glow like socials */
.btn:hover{
  color: var(--accent, #00ff7f);                /* text turns green */
  border-color: var(--accent, #00ff7f);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(0,255,127,0.6);
  box-shadow: 0 12px 24px -10px rgba(0,255,127,0.35);
}

.btn:active{
  transform: translateY(0);
  box-shadow: 0 8px 16px -8px rgba(0,255,127,0.3);
}

.btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 4px rgba(0,255,127,0.35),
    0 12px 24px -10px rgba(0,255,127,0.35);
}

/* subtle neon aura behind the pill */
.btn-glow{ position:relative; isolation:isolate; }
.btn-glow::before{
  content:"";
  position:absolute; inset:-8px;
  border-radius:999px;
  background: radial-gradient(circle at 50% 50%,
              rgba(0,255,127,0.38), transparent 70%);
  filter: blur(14px);
  opacity:.65;                                   /* subtle at rest */
  z-index:-1;
  transition: opacity .25s ease, filter .25s ease;
}
.btn-glow:hover::before{ opacity:1; filter:blur(18px); }
.btn-glow:active::before{ opacity:.55; filter:blur(12px); }

.newsletter-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid #00ff7f;
  border-bottom: 2px solid #00ff7f;
}

.newsletter-section h2 {
  color: #00ff7f;
  font-size: 2rem;
  margin-bottom: 15px;
}

.newsletter-section p {
  color: #ccc;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto 15px;
}

.newsletter-form input[type="email"] {
  flex: 1 1 250px;
  padding: 12px 15px;
  border: 1px solid #00ff7f;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: #bbb;
}

.newsletter-form button {
  padding: 12px 25px;
  background-color: #00ff7f;
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #00cc5a;
  transform: scale(1.05);
}

.newsletter-note {
  font-size: 0.85rem;
  color: #777;
}

/* Contact Section */
.contact-section {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.contact-section h2 {
  color: #00ff7f;
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-section p {
  color: #ccc;
  margin-bottom: 20px;
}

.email-button {
  display: inline-block;
  margin-bottom: 25px;
  padding: 12px 25px;
  background-color: #00ff7f;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.email-button:hover {
  background-color: #00cc5a;
  transform: scale(1.05);
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #00ff7f;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

.contact-form button {
  padding: 12px 20px;
  background-color: #00ff7f;
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #00cc5a;
  transform: scale(1.05);
}

