/* Custom styles for Drops Oneway Taxi - Rewritten from scratch */
:root {
  --primary-color: #fcc100;
  --secondary-color: #1a1a1a;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --accent-color: #000000;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark-color);
  background-color: #fff;
}

/* Base styles for template classes to prevent total breakage */
.theme-btn {
  background-color: var(--primary-color);
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.theme-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.text-gradient {
  color: var(--primary-color);
}

/* Hero Section */
.hero-area {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

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

/* Sections */
section {
  padding: 80px 0;
}

.site-heading {
  margin-bottom: 50px;
}

.site-title {
  font-weight: 800;
  font-size: 2.5rem;
}

.site-title-tagline {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

/* Cards */
.card-custom {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card-custom:hover {
  transform: translateY(-10px);
}

html,
body {
  position: relative !important;
  overflow-x: hidden !important;
}