
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #D3D3D3; 
    color: #333;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FDF3E6;
    padding: 10px 20px;
    border-bottom: 2px solid #B8A1CE;
    font-size: 16px;
}

header .logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #ED7423;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

header .nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
}

header .nav-links a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

header .nav-links a:hover {
    background-color: #B8A1CE;
    color: #FFF;
}

/* Hero Section */
.hero {
    background: url('hero-image.jpg') no-repeat center center/cover; 
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;
    position: relative;
}

.hero h1 {
    font-size: 48px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: bold;
}
.hero p {
    color: #000; 
}


.featured-cars {
    background: #FDF3E6;
    padding: 40px;
    text-align: center;
    border-top: 2px solid #FDB635;
    border-bottom: 2px solid #FDB635;
}

.featured-cars h2 {
    font-size: 32px;
    color: #B8A1CE;
    margin-bottom: 20px;
}

.car-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.car-item {
    background: #FFF;
    border: 2px solid #ED7423;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.car-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.events {
    padding: 40px;
    text-align: center;
    background: #8DCD97;
}

.events h2 {
    font-size: 32px;
    color: #FFF;
}

.event-item {
    background: #FFF;
    padding: 20px;
    margin: 10px;
    display: inline-block;
    border: 2px solid #F5F456;
    border-radius: 10px;
}


.shop {
    padding: 40px;
    background: #FDB635;
    text-align: center;
}

.shop h2 {
    font-size: 32px;
    color: #FFF;
    margin-bottom: 20px;
}

.shop-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-item {
    background: #FFF;
    border: 2px solid #ED7423;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item img {
    width: 150px; 
    height: 150px; 
    object-fit: cover;
    border-radius: 8px;
}

.product-item h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.product-item button {
    padding: 10px 20px;
    background: #ED7423;
    color: #FFF;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.product-item button:hover {
    background: #B8A1CE;
}

/* Footer */
footer {
    padding: 20px;
    background: #FDF3E6;
    text-align: center;
    border-top: 2px solid #ED7423;
}

footer .social-icons a {
    text-decoration: none;
    margin: 0 10px;
    color: #ED7423;
    font-size: 18px;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #B8A1CE;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px; 
    object-fit: cover; 
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.car-item img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    border-radius: 8px;
}


.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.car-grid, .shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    justify-items: center;  
    align-items: center;    
}

.car-item img, .product-item img {
    width: 100%;
    height: 200px; 
    object-fit: cover;
    border-radius: 8px;
}

.logo-img {
    width: 350px; 
    height: auto; 
    margin-right: 10px;
    display: inline-block; 
}

.logo {
    display: flex; 
    align-items: center; 
    font-family: 'Poppins', sans-serif; 
    font-weight: 600; 
    font-size: 1rem; 
}
