@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'WestMoto';
    src: url('asset/CorneroRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
    --primary-color: #d90416;
    --secondary-color: #4a4a4a;
    --accent-color: #f29f04;
    --light-bg: #f8f9fa;
    --bs-primary-rgb: 217, 4, 22;
    --bs-warning-rgb: 242, 159, 4;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

h1 {
    font-family: 'WestMoto', 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}
h3 {
    margin-bottom: 4rem;
}
.section-subheading {
    font-style: italic;
    font-weight: 400;
    font-size: 1.2em;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #ad000e;
    --bs-btn-hover-border-color: #85000b;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #ad000e;
    --bs-btn-active-border-color: #85000b;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

/* Header */
.navbar {
    background: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: url('./img/BandeauWestMoto01.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.8;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Section Styling */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--light-bg);
}

/* Services Section */
.svg-inline--fa.fa-stack-1x {
    height: 1em;
    width: 1.25em;
}
.fa-stack-1x, .fa-stack-2x {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: var(--fa-stack-z-index, auto);
}
/* Honda Laval Section */
img.template-heading-img {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.honda-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.honda-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.honda-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.honda-card .card-body {
    padding: 2rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), #cc0000);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffc107;
    text-decoration: underline;
}

/* Maxxess Section */
.maxxess-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.maxxess-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.maxxess-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Team Section */
.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    object-view-box: inset(-20%);
    margin-bottom: 1rem;
    box-shadow: 0 0 20px 0px #4a4a4a24;
}

.team-member h5 {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #6c757d;
    font-style: italic;
}

/* Footer */
footer {
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-section h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (min-width: 992px) {
    .template-heading .template-heading-img {
        position: relative;
        z-index: 0;
        max-height: calc(100vw * 0.3);
    }
    .template-heading .template-heading-content {
      margin-top: -5rem;
      position: relative;
      z-index: 1;
    }
  }