/* Padel Tours Asia - Coming Soon
   Modern, lightweight, responsive, external CSS only
*/

:root{
  --bg: #070b14;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --faint: rgba(255,255,255,0.55);
  --stroke: rgba(255,255,255,0.10);
  --accent: #4de3c2;
  --accent2: #6aa9ff;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1100px 600px at 20% 15%, rgba(77,227,194,0.16), transparent 60%),
    radial-gradient(900px 700px at 85% 30%, rgba(106,169,255,0.14), transparent 65%),
    radial-gradient(900px 900px at 50% 120%, rgba(255,255,255,0.05), transparent 60%),
    var(--bg);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  position:fixed;
  left:20px;
  top:20px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background: rgba(0,0,0,0.85);
  border:1px solid var(--stroke);
  border-radius:12px;
  z-index:9999;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  backdrop-filter: blur(10px);
  background: rgba(7,11,20,0.62);
  border-bottom: 1px solid var(--stroke);
  z-index:10;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-mark{
  width:14px;
  height:14px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(77,227,194,0.12);
}
.brand-name{
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}
.nav-link:hover{
  text-decoration:none;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

/* Hero */
.hero{
  padding: 54px 0 34px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items:start;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--stroke);
  color: var(--muted);
  width: fit-content;
  margin: 0 0 14px;
}

h1{
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing:-0.6px;
}

.subhead{
  font-size: 16.5px;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 60ch;
}

.highlights{
  list-style:none;
  padding:0;
  margin: 0 0 22px;
  display:grid;
  gap: 10px;
}
.highlights li{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}
.highlights strong{ color: var(--text); }

.cta-row{
  margin-top: 10px;
}

.notify{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.notify input{
  flex: 1 1 240px;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.20);
  color: var(--text);
  outline: none;
}
.notify input::placeholder{ color: rgba(255,255,255,0.55); }

.notify input:focus{
  border-color: rgba(77,227,194,0.55);
  box-shadow: 0 0 0 4px rgba(77,227,194,0.15);
}

.notify button{
  flex: 0 0 auto;
  padding: 12px 16px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  color: #041019;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.notify button:hover{
  filter: brightness(1.05);
}

.note{
  margin: 12px 0 0;
  color: var(--faint);
  font-size: 13.5px;
}

.contact{
  margin-top: 10px;
}
.contact-link{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
}

.micro{
  margin-top: 16px;
  color: var(--faint);
  font-size: 12.5px;
}
.micro span{
  color: rgba(255,255,255,0.70);
}

/* Right card */
.hero-card .card{
  border-radius: var(--radius2);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-card h2{
  margin: 0 0 14px;
  font-size: 18px;
}

.card-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card-item{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.card-item h3{
  margin: 0 0 6px;
  font-size: 15px;
}
.card-item p{
  margin: 0;
  color: var(--muted);
  font-size: 13.8px;
}

.divider{
  height:1px;
  background: rgba(255,255,255,0.10);
  margin: 14px 0;
}

.trust{
  margin:0;
  color: var(--muted);
  font-size: 13.8px;
}

/* Footer */
.site-footer{
  padding: 20px 0 34px;
  border-top: 1px solid var(--stroke);
  margin-top: 26px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  color: var(--faint);
  font-size: 13px;
}

.footer-links a{
  color: rgba(255,255,255,0.75);
}

/* Accessibility helper */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{
    grid-template-columns: 1fr;
  }
  .hero{
    padding-top: 34px;
  }
}