html{
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #e9e8e8;
  color: white;
  font-family: Arial, sans-serif;
}

h1 {
  color: #1c8ccc;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5px 40px;
  background-color:#e9e8e8;
}

.logo {
  font-size: 40px;
  font-weight: bold;
  color: #000000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;

}

.nav-links li {
  cursor: pointer;
  font-weight: 500;
}
.hero {
  padding: 60px 40px;
  color: rgb(10, 0, 95);
  background-image: 
  linear-gradient(
    rgba(248, 246, 246, 0),
    rgba(255, 255, 255, 0)),
  url("images/hero-bg.png");
  filter: contrast(1.15) saturate(1.25) brightness(1.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
position: relative;
 
  min-height: 120vh;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.hero * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn.primary {
  background: #38bdf8;
  color: #170202;
}

.btn.secondary {
  border: 2px solid #38bdf8;
  color: #38bdf8;
}

.btn.primary:hover {
  background-color: #0ea5e9;
}

.btn.secondary:hover {
  background: #38bdf8;
  color: #020617;
}
.section{
  padding: 50px 40px;
  color: white;
}

.section h2{
  font-size: 32px;
  margin-bottom: 10px;
}

.section p{
  opacity: 0.9;
  margin-bottom: 25px;
}

.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.card:hover{
  transform: translateY(-6px);
  background: rgba(255,255,255,0.10);
}

.card h3{
  margin: 0 0 8px 0;
  font-size: 20px;
}

.btn.small{
  padding: 8px 12px;
  font-size: 14px;
}
.sport-card p{
  margin-bottom: 14px;
}
.section{
  padding: 60px 40px;
  color: white;
}

.section h2{
  font-size: 32px;
  margin-bottom: 10px;
}

.section p{
  opacity: 0.9;
  margin-bottom: 25px;
}

.venue-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.venue-card{
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px;
}

.venue-card-img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  display: block;
}

.venue-card h3{
  margin: 0 0 10px 0;
  font-size: 20px;
}

.venue-card .meta{
  opacity: 0.85;
  margin-bottom: 14px;
}

.view-more-venues {
  display: inline-block;
  margin-top: 1.25rem;
  text-decoration: none;
}

.filters{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.filters select{
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.25);
  color: white;
  outline: none;
  min-width: 180px;
}

.filters option{
  color: black;
}
.filters{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:20px 0 30px;
}

.filters select{
  padding:12px 14px;
  border-radius:8px;
  border:1px solid #2b4b68;
  background:#1c8ccc;
  color:white;
  min-width:200px;
}
.section{
  padding: 50px 40px;
  color: rgb(80, 80, 80);
}

.section h2{
  font-size: 34px;
  margin-bottom: 8px;
}

.section p{
  opacity: 0.9;
}

.venue-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.venue-card{
  background: rgb(255, 255, 255);
  border-radius: 14px;
  padding: 18px;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.venue-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(56,189,248,0.6);
}

.venue-card h3{
  margin: 0 0 8px;
  font-size: 20px;
}

.venue-card .meta{
  margin-top: 10px;
  opacity: 0.9;
}

.view-more-venues {
  display: inline-block;
  margin-top: 1.25rem;
  text-decoration: none;
}

.nav-links a{
  color: rgb(0, 0, 0);
  text-decoration: none;
  opacity: 0.9;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover{
  background: rgba(56,189,248,0.18);
  opacity: 1;
}

.btn{
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover{
  transform: translateY(-2px);
}
.modal{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content{
  background: #170a02;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 360px;
  color: rgb(255,255, 255);
}

.modal-content input{
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
}

.close-btn{
  float: right;
  font-size: 22px;
  cursor: pointer;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.modal.show {
  display: flex;
}

.modal-content {
  width: min(520px, 100%);
  background: #ccc6ff;
  border: 1px solid rgba(58, 42, 202, 0.336);
  border-radius: 14px;
  padding: 20px;
  color: #000000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.modal-close {
  float: right;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  line-height: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 0px 0;
}

.input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
}

.input::placeholder {
  color: rgba(255,255,255,0.6);
}

.msg {
  margin-top: 10px;
  opacity: 0.85;
  font-size: 14px;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
#bookingSlot{
  background: rgba(255,255,255,0.06);
  color: #fff;
}

#bookingSlot option{
  background: #0b3a5a;
  color: #fff;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.time-slots{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin:14px 0;
}

.slot{
  border:none;
  border-radius:10px;
  padding:8px 10px;
  text-align:left;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  gap:6px;
  transition:0.2s;
}

.slot-time{
  font-weight:700;
  font-size:10px;
}

.slot-price{
  font-weight:700;
  font-size:13px;
  opacity:0.95;
}

/* GREEN (available) */
.slot.available{
  background:#1dbf73;
  color:#fff;
}
.slot.available:hover{
  transform:translateY(-1px);
}

/* RED (booked) */
.slot.booked{
  background:#e53935;
  color:#fff;
  cursor:not-allowed;
  opacity:0.85;
}

/* Selected (optional highlight) */
.slot.selected{
  outline:2px solid rgba(255,255,255,0.6);
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}

.logo img{
  width:120px;
  height:120px;
  object-fit:contain;
}
/* SPORTS GRID */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

/* SPORT CARD */
.sport-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* HOVER EFFECT */
.sport-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(56,189,248,0.6);
}

/* TEXT */
.sport-card h3 {
  margin-bottom: 10px;
}

.sport-card p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 18px;
}

/* BOOK NOW BUTTON */
.book-btn {
  background: #0ea5e9;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.book-btn:hover {
  background: #0284c7;
  transform: translateY(0px);
}
/* SPORTS SECTION - Book Now Button FIX */
.sport-book-now {
  background: #0ea5e9;   /* blue */
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
}

.sport-book-now:hover {
  background: #0284c7;
  transform: translateY(-2px);
}

.sport-book-now:active {
  transform: translateY(0);
}
/* TOURNAMENTS SECTION */
.tournaments-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:24px;
  margin-top:30px;
}

.tournament-card{
  background:#ffffff;
  border-radius:14px;
  padding:20px;
  text-align:center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tournament-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.20);
  border: 1px solid rgba(14,165,233,0.5);
}

.tournament-card p{
  font-size:14px;
  opacity:0.8;
  margin-bottom:18px;
}

.tournament-btn{
  background:#0ea5e9;
  color:#fff;
  border:none;
  padding:10px 22px;
  border-radius:8px;
  cursor:pointer;
  font-weight:700;
  transition: all 0.2s ease;
}

.tournament-btn:hover{
  background:#0284c7;
  transform: translateY(-2px);
}
/* Outdoor Tournament Modal buttons layout */
.outdoor-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:14px;
}

.outdoor-actions .btn{
  width:100%;
  text-align:center;
  color:black;
}
.modal-close{
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
}
.modal-content{
  position: relative;
}
/* ===== Booking Modal Inputs White ===== */
#bookingModal .input,
#bookingModal input[type="date"],
#bookingModal input[type="tel"],
#bookingModal input[type="password"]{
  background: #ffffff !important;   /* box white */
  color: #000000 !important;        /* text black */
  border: 1px solid #cbd5e1;
}

/* placeholder text */
#bookingModal .input::placeholder,
#bookingModal input::placeholder{
  color: #374151;   /* dark grey */
  opacity: 1;
}

/* focus (click karne par) */
#bookingModal .input:focus,
#bookingModal input:focus{
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px rgba(14,165,233,0.25);
}
/* Move booking inputs slightly to left */
#bookingModal .form-row{
  position: relative;
  left: -12px;   /* yahan value adjust kar sakta hai: -6px, -8px, -12px */
}

/* ===== Booking modal: compact spacing (Turf, Badminton, Gaming) ===== */
#bookingModal .modal-content {
  padding: 14px 18px;
  max-height: 90vh;
  overflow-y: auto;
}
#bookingModal .form-row {
  gap: 12px;
  margin-bottom: 4px;
}
#bookingModal .form-row:last-of-type {
  margin-bottom: 0;
}
#bookingModal .input,
#bookingModal input[type="date"],
#bookingModal input[type="tel"],
#bookingModal input[type="text"],
#bookingModal input[type="password"],
#bookingModal select.input {
  margin-top: 4px;
  margin-bottom: 4px;
}
#bookingModal .form-row label {
  margin-bottom: 2px;
}
/* SPORTS MODAL TEXT COLOR FIX */
#sportsModal h2,
#sportsModal .meta {
  color: #000000;
}
/* FIND YOUR MATE MODAL TEXT COLOR FIX */
#findMateModal h2,
#findMateModal .meta {
  color: #000000;
}
/* FIND YOUR MATE – INPUTS & SELECT WHITE BOX */
#findMateModal .input,
#findMateModal input,
#findMateModal select {
  background: #ffffff;
  color: #000000;
  border: 1px solid #cbd5e1;
}

/* Placeholder text black/grey */
#findMateModal .input::placeholder,
#findMateModal input::placeholder {
  color: #555555;
}

/* Dropdown options */
#findMateModal select option {
  color: #000000;
  background: #ffffff;
}
/* Outdoor Tournament buttons – default WHITE */
#outdoorModal .outdoor-actions .btn {
  background: #ffffff;
  color: #000000;
  border: none;              /* border REMOVE */
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}
/* Indoor Tournament modal heading text BLACK */
#indoorModal h2,
#indoorModal .meta,
#indoorModal p {
  color: #000000;
}
#outdoorModal .modal-content{
  background:#cbd5e1 !important;
  color:#000 !important;
}
#outdoorModal .modal-content h2,
#outdoorModal .modal-content p{
  color:#000 !important;
}
#outdoorModal .modal-close{
  color:#000 !important;
}
/* ===== FRIENDLY COMPETITION BUTTON FIX ===== */

/* default state (NO color, NO border) */
#friendlyModal .outdoor-actions .btn{
  background: #ffffff !important;
  color: #000 !important;
  border: none !important;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

/* hover state */
#friendlyModal .outdoor-actions .btn:hover{
  background: #0ea5e9 !important;
  color: #fff !important;
}

/* active / selected state (click) */
#friendlyModal .outdoor-actions .btn:active,
#friendlyModal .outdoor-actions .btn.selected{
  background: #0ea5e9 !important;
  color: #fff !important;
}
/* ===== SPORTS EXPLORE MODAL BUTTONS ===== */
#sportsExploreModal .sports-explore-actions .btn {
  color: #000 !important;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

#sportsExploreModal .sports-explore-actions .btn.secondary.explore-opt {
  background: #ffffff;
  border: 2px solid transparent;
}

#sportsExploreModal .sports-explore-actions .btn.secondary.explore-opt:hover {
  border-color: #00b3b3;
  background: #e8e6ff;
}

#sportsExploreModal .sports-explore-actions .btn.primary {
  background: #38bdf8;
  color: #000 !important;
  border: 2px solid transparent;
}

#sportsExploreModal .sports-explore-actions .btn.primary:hover {
  background: #5dd0fa;
  border-color: transparent;
}

#sportsExploreModal .sports-explore-actions .btn.primary:active {
  border-color: transparent;
}

/* ===== TOURNAMENT MODAL HOVER FIX (OUTDOOR + INDOOR) ===== */

/* Default: white, no border */
#outdoorModal .outdoor-actions button,
#outdoorModal .outdoor-actions .btn{
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background-color .2s ease, color .2s ease, transform .2s ease !important;
}

/* Hover: blue */
#outdoorModal .outdoor-actions button:hover,
#outdoorModal .outdoor-actions .btn:hover{
  background: #0ea5e9 !important;
  color: #ffffff !important;
}

/* Click/Active */
#outdoorModal .outdoor-actions button:active,
#outdoorModal .outdoor-actions .btn:active{
  background: #0ea5e9 !important;
  color: #ffffff !important;
  transform: translateY(0) !important;
}
/* ===== LIST YOUR FREE TIME INPUT FIX ===== */
#listTimeModal input {
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  outline: none;
  border-radius: 10px;
  transition: all 0.2s ease;
}

/* placeholder black */
#listTimeModal input::placeholder {
  color: #000000 !important;
  opacity: 0.6;
}

/* hover */
#listTimeModal input:hover {
  background: #0ea5e9 !important;
  color: #ffffff !important;
}

/* focus / click */
#listTimeModal input:focus {
  background: #0ea5e9 !important;
  color: #ffffff !important;
}

/* placeholder white on hover/focus */
#listTimeModal input:hover::placeholder,
#listTimeModal input:focus::placeholder {
  color: #ffffff !important;
}
/* ===== LIST YOUR FREE TIME INPUT FIX ===== */
#listTimeModal input {
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  outline: none;
  border-radius: 10px;
  transition: all 0.2s ease;
}

/* placeholder black */
#listTimeModal input::placeholder {
  color: #000000 !important;
  opacity: 0.6;
}

/* hover */
#listTimeModal input:hover {
  background: #0ea5e9 !important;
  color: #ffffff !important;
}

/* focus / click */
#listTimeModal input:focus {
  background: #0ea5e9 !important;
  color: #ffffff !important;
}

/* placeholder white on hover/focus */
#listTimeModal input:hover::placeholder,
#listTimeModal input:focus::placeholder {
  color: #ffffff !important;
}
/* ===== LIST YOUR FREE TIME – INPUT LEFT ALIGN FIX ===== */
#listTimeModal .modal-content input {
  margin-left: -10px;   /* ← yahan value adjust kar sakta hai */
}
/* NAVBAR LOGIN BUTTON */
.nav-login-btn{
  background:#0ea5e9;
  color:#fff;
  border:none;
  padding:8px 18px;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
}

.nav-login-btn:hover{
  background:#0284c7;
}

/* LOGIN MODAL TEXT */
#loginModal h2,
#loginModal p{
  color:#000;
}
/* ===== LOGIN MODAL INPUT FIX ===== */
#loginModal input,
#loginModal .input {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #cbd5e1 !important;
}

/* placeholder text */
#loginModal input::placeholder {
  color: #6b7280 !important;
}

/* hover effect */
#loginModal input:hover {
  border-color: #0ea5e9 !important;
}

/* focus / click effect */
#loginModal input:focus {
  outline: none !important;
  border-color: #0ea5e9 !important;
  box-shadow: 0 0 0 2px rgba(14,165,233,0.25);
}
/* ===== LOGIN INPUT LEFT MOVE ===== */
#loginModal input {
  margin-left: -12px;   /* left shift */
}
/* ===== FOOTER (same as navbar) ===== */
.site-footer{
  background: #e9e8e8;   /* navbar jaisa */
  color: #000;
  padding: 40px 40px 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-wrap{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4{
  margin: 0 0 12px;
  font-size: 16px;
  color: #000;
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li{
  margin: 10px 0;
  color: rgba(0,0,0,0.75);
}

.footer-col a{
  color: #000;
  text-decoration: none;
  opacity: 0.9;
}

.footer-col a:hover{
  opacity: 1;
  text-decoration: underline;
}

.footer-logo{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand{
  font-size: 22px;
  font-weight: 800;
}

.footer-tagline{
  margin: 10px 0 6px;
  color: rgba(0,0,0,0.75);
}

.footer-small{
  margin: 8px 0;
  color: rgba(0,0,0,0.75);
}

.footer-social{
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link{
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.55);
}

.social-link:hover{
  background: rgba(56,189,248,0.18);
  border-color: rgba(56,189,248,0.6);
  text-decoration: none;
}

.footer-cta{
  margin-top: 12px;
}

.footer-btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: #0ea5e9;
  color: #fff !important;
  font-weight: 700;
  border: none;
}

.footer-btn:hover{
  background: #0284c7;
  text-decoration: none;
}

.footer-bottom{
  max-width: 1200px;
  margin: 26px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal-links{
  color: rgba(0,0,0,0.75);
}

.footer-legal-links .dot{
  margin: 0 10px;
  color: rgba(0,0,0,0.35);
}

.footer-copy{
  color: rgba(0,0,0,0.75);
}

/* Mobile */
@media (max-width: 900px){
  .footer-wrap{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px){
  .site-footer{
    padding: 28px 16px 14px;
  }
  .footer-wrap{
    grid-template-columns: 1fr;
  }
}

/* ===== OPTIONAL: Legal sections styling (same page) ===== */
.legal-section{
  background:#e9e8e8;
  color:#000;
  padding: 30px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.legal-box{
  white-space: pre-wrap;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 16px;
  border-radius: 12px;
  color: rgba(0,0,0,0.85);
}
/* =========================
   MOBILE RESPONSIVE FIXES
   (Desktop disturb nahi hoga)
========================= */
@media (max-width: 768px){

  /* Navbar */
  .navbar{
    padding: 10px 14px;
    gap: 10px;
  }

  .logo img{
    width: 44px;
    height: 44px;
  }

  .logo span{
    font-size: 18px;
    white-space: nowrap;   /* name cut na ho */
  }

  /* Hamburger button */
  .menu-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background: rgba(56,189,248,0.18);
    border-radius: 10px;
    font-size: 22px;
    cursor: pointer;
  }

  /* Hide nav links by default on mobile */
  .nav-links{
    display: none;
    position: absolute;
    top: 64px;
    right: 14px;
    left: 14px;
    background: #e9e8e8;
    border-radius: 14px;
    padding: 12px;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 99999;
  }

  /* When open */
  .nav-links.open{
    display: flex;
  }

  .nav-links a{
    display: block;
    padding: 12px 12px;
    border-radius: 10px;
    font-size: 16px;
  }

  /* Hero: image cut + spacing */
  .hero{
    min-height: auto;
    padding: 26px 14px;
    background-position: center;
    filter: none; /* filter se mobile pe weird ho sakta hai */
  }

  .hero::before{
    background: rgba(0,0,0,0.35);
  }

  .hero h1{
    font-size: 28px;
    line-height: 1.2;
  }

  .hero p{
    font-size: 14px;
  }

  .hero-buttons .btn{
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    font-size: 14px;
  }

  /* Sections padding */
  .section{
    padding: 30px 14px;
  }

  .section h2{
    font-size: 24px;
  }

  .section p{
    font-size: 14px;
  }

  /* Cards / Grids: 2 in a row (baju me jagah waste na ho) */
  .cards,
  .venue-grid,
  .sports-grid,
  .tournaments-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  /* Cards smaller padding */
  .card,
  .venue-card,
  .sport-card,
  .tournament-card{
    padding: 12px;
    border-radius: 12px;
  }

  .sport-card h3,
  .venue-card h3{
    font-size: 16px;
  }

  /* Buttons size better */
  .book-btn,
  .sport-book-now,
  .tournament-btn{
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
  }

  /* Modals: mobile pe chhote aa rahe the */
  .modal-content{
    width: min(92vw, 520px);
    padding: 16px;
    border-radius: 14px;
  }

  .modal-content h2,
  .modal-content h1{
    font-size: 20px;
  }

  .modal-content p{
    font-size: 14px;
  }

  .input,
  .modal-content input,
  .filters select{
    font-size: 14px;
    padding: 12px;
  }

  .form-row{
    grid-template-columns: 1fr; /* mobile pe columns stack */
    gap: 12px;
  }

  .time-slots{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Very small phones */
@media (max-width: 420px){
  .cards,
  .venue-grid,
  .sports-grid,
  .tournaments-grid{
    grid-template-columns: 1fr; /* 420 se neeche 1 column better */
  }
}
/* Stop horizontal overflow */
html, body{
  max-width: 100%;
  overflow-x: hidden;
}

*{
  box-sizing: border-box;
}
*{ outline: none !important; }
html, body{
  overflow-x: hidden;
}
/* ===== COMPLETE PROFILE PAGE ===== */
.profile-wrap{
  max-width: 900px;
  margin: 0 auto;
}

.profile-subtitle{
  color: rgba(0,0,0,0.7);
  margin-bottom: 18px;
}

.profile-card{
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.profile-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.profile-label{
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(0,0,0,0.75);
}

.profile-input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #000;
}

.profile-input:focus{
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px rgba(14,165,233,0.20);
}

.profile-actions{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.profile-note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
}

@media (max-width: 700px){
  .profile-grid{
    grid-template-columns: 1fr;
  }
}
/* =========================
   Request Listing Form - White Inputs
========================= */

#requestModal .input,
#requestModal select,
#requestModal textarea {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ccc;
}

/* Placeholder text black */
#requestModal .input::placeholder,
#requestModal textarea::placeholder {
  color: #000000;
  opacity: 0.7;
}

/* Select dropdown text */
#requestModal select {
  color: #000000;
}

/* Focus state thoda clean */
#requestModal .input:focus,
#requestModal select:focus,
#requestModal textarea:focus {
  outline: none;
  border-color: #00c2a8; /* Arenor theme */
  box-shadow: 0 0 0 2px rgba(0,194,168,0.2);
}

/* ===== FEATURE LOCK (under development) ===== */
[data-locked="true"] {
  opacity: 0.78;
  cursor: not-allowed;
  position: relative;
}
[data-locked="true"],
[data-locked="true"] * {
  cursor: not-allowed;
}
[data-locked="true"].section::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
  z-index: 1;
}
a[data-locked="true"],
button[data-locked="true"] {
  position: relative;
}
a[data-locked="true"]::before,
button[data-locked="true"]::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
}
#lockMessageModal .lock-message-content {
  max-width: 360px;
}
#lockMessageModal .modal-close {
  color: #000;
}
#lockMessageModal .lock-message-text {
  margin: 12px 0 0;
  font-size: 1rem;
  line-height: 1.5;
}
