/* Nav */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  color: #fff;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 1000;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffcc00;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    display: flex;
  }
}
/* Nav */

/* Home */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
}

body {
  background: #0d0d0d;
  color: #ffffff;
  line-height: 1.6;
}
/* Navigation */
header {
  background: #0d0d0d;
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
}

.logo span { color: red;

}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #f5d76e;
  transition: color 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/a71392d0-0cf3-47e0-b9a2-54000b07a12e.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  background: #d4af37;
  color: #0d0d0d;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Home */

/* About Us */

:root {
  --primary-color: #5b4f4f;
  --secondary-color: #d37fff;
  --background-light: #0e0505;
  --background-section: #1a1515;
  --text-dark: #554c4c;
  --text-light: #130b0b;
  --shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--background-light);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: var(--text-light);
  color: var(--text-dark);
  padding: 20px 0;
  border-bottom: var(--primary-color) 3px solid;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
}

.main-content {
  flex: 1;
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
}

.mainContainer,
.mainContainer2 {
  width: 100%;
  padding: 30px;
  background: none;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.car,
.carimg {
  flex: 0 0 45%;
  min-width: 300px;
  margin: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container,
.fullContainer {
  flex: 0 0 45%;
  min-width: 300px;
  margin: 15px;
}

.carimage {
  width: 100%;
  max-width: 500px;
  height: auto;
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
  transition: var(--transition);
  object-fit: cover;
}

.carimage:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}

.about-section,
.fullContainer {
  background: var(--text-light);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
}

.about-section h2,
.fullContainer h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
  position: relative;
  padding-left: 15px;
  transition: var(--transition);
}

.about-section h2::before,
.fullContainer h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  width: 5px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

.about-section h2:hover::before,
.fullContainer h2:hover::before {
  height: 100%;
}

.about-section p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.fullContainer ul {
  list-style-type: none;
  padding-left: 0;
}

.fullContainer ul li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 1.05rem;
}

.fullContainer ul li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

.footer {
  background: var(--text-dark);
  color: var(--text-light);
  text-align: center;
  padding: 15px 0;
  margin-top: auto;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .mainContainer,
  .mainContainer2 {
    flex-direction: column;
    padding: 20px;
  }

  .car,
  .carimg,
  .container,
  .fullContainer {
    flex: 0 0 100%;
    width: 100%;
    margin: 10px 0;
  }

  .carimage {
    max-width: 100%;
  }
}

/* About Us */

/* Car listing */

.car-card:hover .car-image {
  transform: scale(1.05);
  transition: transform 0.5s ease;
  filter: brightness(1.1);
}

.car-card {
  transition: transform 0.3s ease;
}

.car-card:hover {
  transform: translateY(-5px);
}

.car-image {
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(255, 215, 0, 0.25);
  transition: all 0.3s ease;
}

.gold-gradient-text {
  background: linear-gradient(90deg, #d4af37, #f5d680);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Car listing */

/* Contact */

/* Navbar Styles from user's code */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  color: #fff;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 1000;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #ffcc00;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffcc00;
}

.nav-links a.active-link {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 3px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
}

/* Mobile Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    display: flex;
  }
}

/* Utility Styles for Sections */
.section-gap {
  padding-top: 60px; /* To account for fixed navbar */
}

/* Form & Input Styles */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(148, 137, 121, 0.5);
  border-color: #948979;
}

/* Contact */

/* Footer styles */
.site-footer {
  background-color: #1a1a1a;
  /* Dark background */
  color: #ffffff;
  /* White text */
  padding: 40px 20px 0;
  /* Padding around the main content (top, sides, bottom=0) */
  font-family: Arial, sans-serif;
  /* Modern, clean font */
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  /* Subtle top shadow for depth */
}

/* Container to hold the four columns and manage their layout */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  /* Allows columns to wrap on smaller screens */
  justify-content: space-between;
  /* Evenly space columns */
  padding-bottom: 30px;
  /* Space between columns and copyright line */
  gap: 20px;
  /* Space between columns in case of wrap */
}

/* Styling for each column */
.footer-column {
  flex: 1 1 250px;
  /* Grow: 1, Shrink: 1, Base width: 250px (for responsiveness) */
  min-width: 200px;
  /* Ensures columns don't get too narrow */
  margin-bottom: 20px;
}

/* Headings in the footer */
.site-footer h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #f7b32d;
  /* A subtle, luxury accent color (e.g., gold/amber) */
  border-bottom: 2px solid rgba(247, 179, 45, 0.3);
  /* Underline for emphasis */
  padding-bottom: 5px;
  display: inline-block;
}

/* General link styling */
.site-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  /* Smooth transition for hover effect */
}

/* Hover effect for all links */
.site-footer a:hover {
  color: #f7b32d;
  /* Change color to accent on hover */
}

/* Quick Links list styling */
.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin-bottom: 8px;
}

/* Contact Info styling */
.contact-info p {
  margin-bottom: 10px;
}

.contact-info i {
  margin-right: 10px;
  color: #f7b32d;
}

/* Social Media Icons */
.social-icons a {
  display: inline-block;
  font-size: 1.5rem;
  /* Larger icon size */
  margin-right: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  /* Circular background */
  background-color: rgba(255, 255, 255, 0.1);
  /* Subtle background for icons */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Social Media Icon Hover Effect */
.social-icons a:hover {
  background-color: #f7b32d;
  /* Accent background on hover */
  color: #1a1a1a;
  /* Dark text on accent background */
  transform: translateY(-3px);
  /* Slight lift effect */
}

/* Copyright Line */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* Subtle separator line */
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #aaaaaa;
  /* Slightly softer white for the copyright */
}

/* --- Media Query for Mobile Responsiveness --- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    /* Stack columns vertically on smaller screens */
  }

  .footer-column {
    flex: 1 1 100%;
    /* Each column takes full width */
    max-width: none;
    text-align: center;
    /* Center content on mobile */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator between stacked columns */
    padding-bottom: 20px;
  }

  .footer-column:last-child {
    border-bottom: none;
    /* No separator on the last column */
  }

  .site-footer h3 {
    margin-bottom: 10px;
  }

  .social-icons {
    text-align: center;
    /* Ensure social icons are centered */
  }

  .quick-links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .quick-links li {
    margin: 0 10px;
  }
}
