/* Premium Cyberpunk/Neon Aesthetic for Best Truck Stop Network */
:root {
  --primary: #00f0ff;
  --secondary: #ff003c;
  --bg-color: #05050a;
  --panel-bg: rgba(10, 10, 20, 0.75);
  --border-color: rgba(0, 240, 255, 0.2);
  --text-main: #e0e0e0;
  --text-muted: #8b9bb4;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: var(--bg-color);
  background-image: radial-gradient(circle at top, #111 0%, #05050a 100%);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--primary);
}

/* Layout */
#container {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  gap: 30px;
  padding: 0 20px 40px;
}

#left-col {
  flex: 1;
}

#sidebar {
  width: 350px;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('/images/besttruckstop-hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) contrast(1.1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(5,5,10,1) 0%, rgba(5,5,10,0) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Nav */
.main-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav li a {
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 600;
}

.main-nav li a:hover {
  border-color: var(--primary);
  background: rgba(0, 240, 255, 0.1);
}

/* Main Content */
.content-box {
  background: var(--panel-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.content-box h1 { margin-bottom: 20px; color: var(--primary); }
.content-box h2 { margin: 30px 0 15px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
.content-box p { margin-bottom: 15px; font-size: 1.1rem; }

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.amenity-card {
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(255, 0, 60, 0.3);
  padding: 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255, 0, 60, 0.2);
}

.amenity-card h3 { color: var(--secondary); margin-bottom: 10px; }

/* Sidebar */
.sidebar-widget {
  background: var(--panel-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
}

.sidebar-widget h2 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget li {
  margin-bottom: 10px;
}

/* Form Overrides for BookMe */
.book-me-widget-container {
  background: rgba(5,5,10,0.8) !important;
  border-color: var(--secondary) !important;
  box-shadow: 0 0 20px rgba(255,0,60,0.1) !important;
}

.book-me-title { color: var(--secondary) !important; border-bottom-color: rgba(255,0,60,0.3) !important; }
.book-me-input-element { background: rgba(0,0,0,0.5) !important; border-color: rgba(0,240,255,0.3) !important; }
.book-me-submit-btn { background: var(--secondary) !important; text-transform: uppercase !important; letter-spacing: 0.1em !important; }
.book-me-submit-btn:hover { box-shadow: 0 0 15px var(--secondary) !important; }
