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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #0f1115;
  color: #f5f5f5;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 6%;
  background: rgba(15, 17, 21, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

/* LOGO LEFT */
.logo {
  position: fixed;
  top: 10px;
  left: 30px;
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 160px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* NAV LINKS RIGHT */
.nav-links {
  margin-left: auto;
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #f5f5f5;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #d62828;
}

/* MOBILE BUTTON */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: 1rem;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 75px;
  right: -100%;
  width: 220px;
  background: #1a1d24;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  text-decoration: none;
  color: white;
}

/* HERO */
/* HERO (SAFE VERSION - DOES NOT TOUCH NAVBAR) */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}


.hero-content p {
  font-size: 1.5rem;
  color: #d6d6d6;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
/* slideshow layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
  z-index: 1;
}

/* dark overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

/* content on top */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
}

/* BUTTONS */
.btn {
  padding: 0.9rem 1.7rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: #d62828;
  color: white;
}

.btn-primary:hover {
  background: #b71f1f;
}

.btn-secondary {
  border: 1px solid #ffffff44;
  color: white;
}

.btn-secondary:hover {
  background: #ffffff11;
}

/* SECTIONS */
section {
  padding: 6rem 8%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #bcbcbc;
}

/* RENTALS */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.rental-card {
  background: #1a1d24;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
}

.rental-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 220px;
  background: url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?q=80&w=1974&auto=format&fit=crop") center/cover no-repeat;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  margin-bottom: 1rem;
}

.card-content p {
  color: #c4c4c4;
  margin-bottom: 1.5rem;
}

.card-btn {
  width: 100%;
  padding: 0.8rem;
  border: none;
  background: #d62828;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.card-btn:hover {
  background: #b71f1f;
}

/* FEATURES */
.features {
  background: #14171d;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature h3 {
  margin-bottom: 1rem;
}

.feature p {
  color: #c8c8c8;
}

/* CONTACT */
.contact {
  padding-bottom: 8rem;
}
.contact-form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: #1a1d24;
  color: white;
}

.contact-form textarea {
  resize: vertical;
}

/* ABOUT */
.about {
  background: #14171d;
  margin-top: 4rem;
}

.about-content {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-content p {
  color: #c8c8c8;
  font-size: 1.05rem;
}

.About-us-subtitle {
  color: #C41E3A;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #ffffff11;
  color: #8f8f8f;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  section {
    padding: 5rem 6%;
  }
}

.card-image-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SLIDER BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 5;
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: rgba(214, 40, 40, 0.85);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}