/* ============================================
   EMPRESS AUTO - STYLESHEET
   Modern automotive dealership website design
   ============================================ */


/* Reset and Base Styles */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0f0f0f;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header Styles */

header {
    background-color: #1a1a2e;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    background-color: #000000;
    padding: 5px 10px;
    border-radius: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

nav a:hover {
    color: #EC1A66;
    text-shadow: 0 0 10px rgba(236, 26, 102, 0.5);
}


/* ============================================
   GLOSSARY PAGE
   ============================================ */

.hero-small {
    padding: 100px 20px;
}

.glossary {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #fff;
}

.glossary h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #EC1A66;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.glossary-item {
    padding: 1.5rem;
    background: rgba(236, 26, 102, 0.05);
    border: 1px solid rgba(236, 26, 102, 0.25);
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glossary-item:hover {
    transform: translateY(-4px);
    border-color: #EC1A66;
    box-shadow: 0 10px 24px rgba(236, 26, 102, 0.3);
}

.glossary-item h3 {
    color: #EC1A66;
    margin-bottom: 0.6rem;
}

.glossary-item p {
    color: #ddd;
    line-height: 1.6;
}


/* ============================================
   NAVIGATION & LANGUAGE SELECTOR
   ============================================ */

.language-selector {
    display: flex;
    align-items: center;
}

.language-selector select {
    padding: 8px 12px;
    border: 2px solid #EC1A66;
    border-radius: 5px;
    background-color: rgba(236, 26, 102, 0.1);
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 150px;
}

.language-selector select:hover {
    background-color: rgba(236, 26, 102, 0.2);
    box-shadow: 0 0 10px rgba(236, 26, 102, 0.3);
}

.language-selector select:focus {
    outline: none;
    border-color: #EC1A66;
    background-color: rgba(236, 26, 102, 0.2);
    box-shadow: 0 0 15px rgba(236, 26, 102, 0.4);
}

.language-selector select option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px;
}

.language-selector select optgroup {
    background-color: #0f0f0f;
    color: #EC1A66;
    font-weight: bold;
}


/* Hero Section */

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.hero-content .awards {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 1;
    font-weight: 600;
    color: #EC1A66;
}


/* Buttons */

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #EC1A66;
    color: #fff;
    box-shadow: 0 4px 15px rgba(236, 26, 102, 0.3);
}

.btn-primary:hover {
    background-color: #d41557;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 26, 102, 0.5);
}

.btn-secondary {
    background-color: #4a4a4a;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
}


/* Featured Vehicles Section */

.featured-vehicles {
    padding: 80px 20px;
    background-color: #fff;
}

.featured-vehicles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vehicle-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.vehicle-image {
    height: 200px;
    background: linear-gradient(135deg, #3a3a3a 0%, #5a5a5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vehicle-image::after {
    content: '🚗';
    font-size: 4rem;
    opacity: 0.3;
}

.vehicle-info {
    padding: 1.5rem;
}

.vehicle-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #EC1A66;
    margin-bottom: 0.5rem;
}

.details {
    color: #666;
    margin-bottom: 1rem;
}


/* About Section */

.about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #EC1A66;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ddd;
    line-height: 1.8;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(236, 26, 102, 0.1);
    border: 2px solid #EC1A66;
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(236, 26, 102, 0.2);
    min-width: 150px;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(236, 26, 102, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(236, 26, 102, 0.3);
}

.cert-badge h4 {
    font-size: 1.5rem;
    color: #EC1A66;
    margin-bottom: 0.5rem;
}

.cert-badge p {
    font-size: 0.9rem;
    color: #ddd;
    margin: 0;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(236, 26, 102, 0.05);
    border: 1px solid rgba(236, 26, 102, 0.3);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(236, 26, 102, 0.1);
    border-color: #EC1A66;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(236, 26, 102, 0.3);
}

.stat h3 {
    font-size: 3rem;
    color: #EC1A66;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #ddd;
    font-size: 1.1rem;
}


/* Services Section */

.services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #fff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #EC1A66;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: rgba(236, 26, 102, 0.05);
    border: 2px solid rgba(236, 26, 102, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #fff;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(236, 26, 102, 0.1);
    border-color: #EC1A66;
    box-shadow: 0 12px 30px rgba(236, 26, 102, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #EC1A66;
}

.service-card p {
    color: #ddd;
    line-height: 1.6;
}


/* Why Choose Us Section */

.why-choose {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #fff;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #EC1A66;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-card {
    padding: 2rem;
    background: rgba(236, 26, 102, 0.05);
    border-left: 4px solid #EC1A66;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reason-card:hover {
    background: rgba(236, 26, 102, 0.1);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(236, 26, 102, 0.3);
}

.reason-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #EC1A66;
}

.reason-card p {
    color: #ddd;
    line-height: 1.7;
}


/* Contact Section */

.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #EC1A66;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    color: #EC1A66;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.info-item p {
    color: #ddd;
    line-height: 1.8;
}

.info-item a {
    color: #EC1A66;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item a:hover {
    text-shadow: 0 0 10px rgba(236, 26, 102, 0.5);
}

.contact-form {
    background: rgba(236, 26, 102, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(236, 26, 102, 0.2);
    box-shadow: 0 4px 15px rgba(236, 26, 102, 0.2);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(236, 26, 102, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #EC1A66;
    background-color: rgba(236, 26, 102, 0.1);
    box-shadow: 0 0 10px rgba(236, 26, 102, 0.3);
}

.contact-form button {
    width: 100%;
}


/* Footer */

footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid #EC1A66;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer p {
    color: #ddd;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-links a:hover {
    color: #EC1A66;
    text-shadow: 0 0 10px rgba(236, 26, 102, 0.5);
}


/* Responsive Design */

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
    .stats {
        flex-direction: column;
    }
    footer .container {
        flex-direction: column;
    }
}


/* Hide Google Translate UI */

.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-te-gadget-simple {
    display: none !important;
}

body {
    top: 0 !important;
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .featured-vehicles h2,
    .about h2,
    .services h2,
    .contact h2 {
        font-size: 2rem;
    }
}