
:root {
    --primary-color: #DD2121;
    --white: #f0f8ff;
    --black: #000;
    --yellow: #FFFF00;
    --light-gray: #dddddd;
    --shadow-color: #e3e3e3;
    --preimary-box-shadow: 0 0px 10px var(--shadow-color);
    --transition: 0.4s ease-in-out;
}

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

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Section */
.header-section {
    background-color: var(--light-gray);
    /*background-image: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');*/
    background-image: url('https://jdmauction.live/frontend/images/banner2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    overflow: hidden;
    margin-top: 80px;
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.banner-container-area {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(221, 33, 33, 0.1);
}

.banner-header {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-container-area p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    flex: 1;
    padding: 80px 20px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--black);
}

.section-title .highlight {
    color: var(--primary-color);
    margin: 0 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-section {
        padding: 40px 0;
        min-height: 400px;
    }

    .banner-header {
        font-size: 1.8rem;
    }

    .banner-container-area {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .footer-basic ul {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .banner-header {
        font-size: 1.5rem;
    }

    .banner-container-area p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

