/* 
 * ILKA AUTO - Modern Dark Theme StyleSheet
 * Background: #202020 
 * Accent: #ff9100
 */

:root {
  --bg-color: #202020;
  --bg-color-light: #2c2c2c;
  --accent-color: #ff9100;
  --accent-hover: #e68200;
  --text-main: #fff;
  --text-muted: #fff;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #ffffff;
}

.text-accent {
  color: var(--accent-color) !important;
}

section {
  padding: 80px 0;
}

.btn-accent {
  background-color: var(--accent-color);
  color: #111;
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 145, 0, 0.4);
}

.navbar {
  background-color: rgba(32, 32, 32, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
  letter-spacing: 1px;
  color: #fff !important;
}

.nav-link {
  color: var(--text-main) !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 5px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-color) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-carousel-img {
  object-fit: cover !important;
  height: 100vh !important;
  min-height: 600px !important;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.service-card {
  background-color: var(--bg-color-light);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(255,145,0, 0);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,145,0, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0, 0.5);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.gallery-img-wrapper {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  display: block;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-img-wrapper:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 145, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-img-wrapper:hover .gallery-overlay {
  opacity: 1;
}

.footer {
  background-color: #181818;
  padding: 60px 0 20px;
  border-top: 2px solid var(--accent-color);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-right: 10px;
}

.social-icon:hover {
  background-color: var(--accent-color);
  color: #111;
  transform: translateY(-3px);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: var(--accent-color);
}

.about-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-left: 4px solid var(--accent-color);
}
