/*
Theme Name: bearsgarage.hu
Author: Mikolai Levente
Description: Teljeskörű prémium autóápolás Budapesten.
Version: 1.0
Text Domain: https://bearsgarage.hu/
*/



body {
    margin: 0;
    font-family: 'Arial', sans-serif;
  }
  
/* Átlátszó navbar */
.transparent-navbar {
    background: black !important;
    backdrop-filter: blur(4px); /* kis üveg effekt */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 20px 0; /* navbar magassága */
  }
  .navbar-brand {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
    color: #fff;
  }
  
  .navbar .nav-link:hover {
    color: #fff !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
    color: #fff;
  }

  .navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease-in-out;
  }

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

  .social-link {
    font-size: 1.3rem;
    padding: 8px;
  }
  
  .social-link:hover {
    color: #fff !important;
  }
  
  .navbar-social {
    display: flex;
    align-items: center;
  }
  
  @media (max-width: 991px) {
    .navbar-social {
      justify-content: center;
      width: 100%;
      margin-top: 15px;
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 10px;
    }
  }

  .hero {
    height: 100vh;
    background: url('img/bg-hero.jpg') no-repeat center center/cover;
    position: relative;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
  }
  
  .hero .container {
    position: relative;
    z-index: 2;
  }
  
  .navbar-dark .nav-link.active {
    color: #141313 !important;
  }
  
  .nav-link:hover {
    color: #141313 !important;
  }
  

  /* Rólam szekció */
.section-title .line {
    width: 6px;
    height: 40px;
    background-color: #888; /* szürke csík */
    border-radius: 5px;
  }
  
  #rolam p {
    line-height: 1.7;
    color: #333;
  }
  
  #rolam img {
    max-width: 350px;
  }
  
/* ------------------- Szolgáltatások szekció ------------------ */
#szolgaltatasok {
  background-color: #1c1c1c;
}

.grey-line {
  width: 80px;
  height: 4px;
  background-color: #777;
  border-radius: 5px;
}

#szolgaltatasok p {
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
}

/* ----------- Kártyák ----------- */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  height: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Sötét overlay */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(50,50,50,0.7), rgba(20,20,20,0.9));
  z-index: 1;
  transition: 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.service-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.service-overlay h5 {
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* ----------- Görgetős sor + wrapper ----------- */
.service-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

/* Görgethető lista */
.service-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px;
  scroll-snap-type: x mandatory;
}

.service-scroll::-webkit-scrollbar {
  display: none;
}

/* ----------- Nyilak (lapozógombok) ----------- */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.scroll-btn:hover {
  background: rgba(255,255,255,0.3);
}

.scroll-btn.left {
  left: -50px;
}

.scroll-btn.right {
  right: -50px;
}

/* ----------- Reszponzív ----------- */
@media (max-width: 768px) {
  .service-card {
    flex: 0 0 70%;
    height: 300px;
  }

  .scroll-btn {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }

  .scroll-btn.left {
    left: 5px;
  }

  .scroll-btn.right {
    right: 5px;
  }
}

  

  
/* -------------------- GYIK ------------------ */
  .accordion-button {
    background-color: black;
    color: white;
  }
  .accordion-button:not(.collapsed) {
    background-color: #888; /* Lila a nyitott kérdéshez */
    color: white;
  }
  .accordion-body {
    background-color: #f8f9fa; /* világos szürke háttér a válaszhoz */
  }

  .accordion-button:focus {
    box-shadow: none;
  }

#collapseFive a {
  color:#000;
  text-decoration: underline;
  font-weight: 900;
}

#collapseFive a:hover {
  color:#888;
  font-weight: 900;
}
  /* -------------------- Footer ------------------ */

  footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0;
  }  
  
  footer h5 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #b3b3b3; /* Modern szürke címek */
    text-transform: uppercase;
    font-size: 16px;
  }
  footer a {
    color: #e0e0e0;
    text-decoration: none;
  }
  footer a:hover {
    color: #b3b3b3;
  }
  .footer-icon {
    font-size: 20px;
    margin-right: 15px;
    cursor: pointer;
  }
  .footer-icon:hover {
    color: #b3b3b3;
  }

  section {
    scroll-margin-top: 80px; /* igazítsd a navbar magasságához */
  }
  
  .cropped-center-img {
    height: 400px; 
    width: 100%;
    object-fit: cover; 
    object-position: center; 
}

.cropped-left-img {
  height: 400px; 
  width: 100%;
  object-fit: cover; 
  object-position: left; 
}


section#contact {
  background-color: #0b0b0b;
  color: white;
  padding: 60px 0;
}

.contact-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.underline {
  width: 150px;
  height: 4px;
  background-color: #888;
  /* lila */
  margin-bottom: 30px;
}

.form-control {
  background-color: #1f1f1f;
  border: none;
  color: white;
}

.form-control::placeholder {
  color: #b3b3b3;
}

.form-control:focus {
  background-color: #2a2a2a;
  color: white;
  box-shadow: none;
  border: 1px solid #888;
}

.btn-custom {
  background-color: #888;
  color: white;
  border: none;
  transition: background 0.3s;
}

.btn-custom:hover {
  background-color: black;
}

iframe {
  border: none;
  width: 100%;
  height: 100%;
  filter: brightness(0.6);
}

.map-container {
  height: 100%;
  min-height: 400px;
}


/* other styles */
/* File: style.css */
body {
  font-family: Arial, Helvetica, sans-serif;
}
header {
  background-color: #000;
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 1px;
}
.btn-dark:hover {
  background-color: #333;
}
.alert-dark {
  background-color: #f8f9fa;
  color: #000;
  border: 1px solid #000;
}

/* pages */

.justify-content-center p {
  text-align: justify;
}


.btn-white-black {
  background-color: white;
  color: black;
  border: 1px solid black;
}

.btn-white-black:hover {
  background-color: #888;
  color: white;
  border: 1px solid black;
}
