.site-footer li::before {
  content: none !important;
}


.car-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}


.logo-wrapper {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.logo-wrapper img {
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 0 10px red);
}
@media (max-width: 768px) {
  .logo-wrapper img {
    max-width: 90px;
    margin: 0 auto 16px;
    display: block;
  }

  .container h1 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    text-align: center;
  }

  .countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .time-box {
    width: 90px; /* wider for long words */
    padding: 12px 10px;
    border: 2px solid red;
    border-radius: 12px;
    background: black;
    flex: 0 0 auto;
  }

  .time-box h2 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.1;
  }

  .time-box span {
    font-size: 0.75rem;
    margin-top: 4px;
    white-space: nowrap; /* forces one-line */
    display: block;
  }

  .insta-button-container {
    text-align: center;
    margin-top: 24px;
  }

  .insta-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}




/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initial hidden state */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

/* Activated when in view */
.fade-in-up.in-view {
  animation: fadeInUp 0.8s ease-out forwards;
}














.rental-conditions {
  padding: 80px 20px;
  background: #000;
  color: white;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.red-divider {
  width: 80px;
  height: 3px;
  background-color: #e63946;
  margin: 12px auto 40px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.condition-box {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.condition-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(230, 57, 70, 0.4);
}

.condition-box h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.condition-box p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.red {
  color: #e63946;
  font-weight: 600;
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
  .conditions-grid {
    grid-template-columns: 1fr;
  }

  .condition-box {
    margin-bottom: 20px;
  }
}







.highlight-car-section {
  background: #000;
  padding: 80px 20px;
  color: white;
}

.section-subtitle {
  color: #e63946;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.red-divider {
  width: 60px;
  height: 3px;
  background-color: #e63946;
  margin: 15px auto 40px;
}

/* RS3 Feature Card */
.rs3-feature-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.15);
  transition: transform 0.3s ease;
}

.rs3-feature-card:hover {
  transform: translateY(-5px);
}

.rs3-image {
  flex: 1 1 50%;
  max-width: 50%;
}

.rs3-image img {
  width: 100%;
  height: auto;
  display: block;
  border-right: 2px solid rgba(255, 255, 255, 0.05);
}

.rs3-info {
  flex: 1 1 50%;
  padding: 40px 30px;
  text-align: left;
}

.rs3-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.rs3-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.rs3-info ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.price {
  font-size: 1.6rem;
  font-weight: bold;
  color: #e63946;
  margin-bottom: 25px;
}

.red-button {
  display: inline-block;
  background-color: #e63946;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.red-button:hover {
  background-color: #c82e3e;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .rs3-feature-card {
    flex-direction: column;
  }

  .rs3-image, .rs3-info {
    max-width: 100%;
    flex: 1 1 100%;
    border-right: none;
  }

  .rs3-info {
    text-align: center;
  }
}

.rs3-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: white; /* ← This makes it white */
}
.rs3-info h3 {
  color: white;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}













.scroll-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}







.site-footer {
  background-color: #111;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-title {
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0;
  list-style: none;
  margin-bottom: 25px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a.active {
  color: white;
  border-bottom: 2px solid white;
  padding-bottom: 2px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-socials a {
  color: white;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #e63946;
}










.rental-conditions {
  background-color: #000;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.rental-conditions .section-title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.red-divider {
  width: 80px;
  height: 3px;
  background-color: #e63946;
  margin: 0 auto 40px;
}

.conditions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.condition-box {
  background: rgba(20, 20, 20, 0.95);
  border-radius: 12px;
  padding: 30px 25px;
  width: 300px;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.condition-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(230, 57, 70, 0.4);
}

.condition-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.condition-box p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.red {
  color: #e63946;
}

/* Image Row */
.conditions-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.conditions-images img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.conditions-images img:hover {
  transform: scale(1.03);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .rental-conditions {
    padding: 60px 15px;
  }

  .rental-conditions .section-title {
    font-size: 1.8rem;
  }

  .conditions-images img {
    width: 100%;
    max-width: 330px;
  }

  .condition-box {
    width: 100%;
    max-width: 100%;
  }

  .condition-box h3 {
    font-size: 1.1rem;
  }

  .condition-box p {
    font-size: 0.95rem;
  }
}






@media (max-width: 768px) {
  .conditions-images img {
    display: none;
  }
}


.footer-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}





























.custom-navbar {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.custom-navbar.show-navbar {
  opacity: 1;
  transform: translateY(0);
}
.custom-navbar .nav-links li::before {
  content: none;
}














/* Ascunde dropdown-ul mobil inițial */
.mobile-dropdown {
  display: none;
  background: rgba(0, 0, 0, 0.95);
  padding: 20px;
  text-align: center;
}

.mobile-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-dropdown li {
  margin-bottom: 15px;
}

.mobile-dropdown a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Icon burger pentru mobil */
.mobile-menu-icon {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Afișare pe mobil */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-icon {
    display: block;
  }
}

/* Clasă activă pentru a afișa meniul dropdown */
.mobile-dropdown.active {
  display: block;
}










