/* S Chetoora LLC — global styles */

:root {
  --sc-navy: #0a1f3d;
  --sc-blue: #1e3a8a;
  --sc-cyan: #06b6d4;
  --sc-gold: #d4a017;
  --sc-amber: #f59e0b;
  --sc-bg: #f8fafc;
  --sc-bg-dark: #0a1424;
  --sc-text: #0f172a;
  --sc-muted: #64748b;
  --sc-border: #e2e8f0;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--sc-text);
  background: var(--sc-bg);
}

.font-display {
  font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.font-display-tight {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--sc-blue) 0%, var(--sc-cyan) 50%, var(--sc-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--sc-navy) 0%, var(--sc-blue) 50%, var(--sc-cyan) 100%);
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-dark {
  background: rgba(10, 20, 36, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sc-blue), var(--sc-cyan));
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px -10px rgba(30, 58, 138, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(30, 58, 138, 0.8);
}

.btn-gold {
  background: linear-gradient(135deg, var(--sc-amber), var(--sc-gold));
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px -10px rgba(212, 160, 23, 0.6);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(212, 160, 23, 0.8);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Listing card */
.listing-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--sc-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  border-color: var(--sc-cyan);
}

.listing-card .img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
  position: relative;
}

.listing-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.listing-card:hover .img-wrap img {
  transform: scale(1.06);
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  backdrop-filter: blur(8px);
  background: rgba(10, 31, 61, 0.85);
}

/* Hero */
.hero-bg {
  background:
    linear-gradient(135deg, rgba(10, 20, 36, 0.85) 0%, rgba(30, 58, 138, 0.75) 50%, rgba(6, 182, 212, 0.6) 100%),
    url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=2400&q=80') center/cover;
  min-height: 100vh;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 640px) {
  .hero-headline {
    font-size: clamp(2.25rem, 11vw, 4rem);
  }
}

/* Mobile-friendly nav */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
}

@media (min-width: 769px) {
  .mobile-nav { display: none; }
}

/* Status pill */
.status-pill {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-available { background: #dcfce7; color: #15803d; }
.status-rented { background: #fee2e2; color: #991b1b; }
.status-offline { background: #fef3c7; color: #92400e; }

/* Subtle scroll-driven reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
