/**
 * Single Car Model Page Styles
 * 
 * @package Dacia_Dealers_Theme
 */

.car-model-single {
    padding: 0;
}

/* Navigation Tabs */
.car-model-nav-tabs {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
}

.car-model-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.car-model-nav-item {
    margin: 0;
    padding: 0;
}

.car-model-nav-link {
    display: block;
    padding: 20px 30px;
    text-decoration: none;
    color: #333;
    font-family: 'Dacia Block', Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.car-model-nav-link:hover {
    color: #b9412d;
    background: #f9f9f9;
}

.car-model-nav-link.active {
    color: #b9412d;
    border-bottom-color: #b9412d;
}

/* Hero Section */
.car-model-hero {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.car-model-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: #000;
}

.car-model-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Buttons Wrapper */
.car-model-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.car-model-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Dacia Block', Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 0;
    min-width: 200px;
}

.car-model-button-white {
    background: #fff;
    color: #333;
    border: 2px solid #000;
}

.car-model-button-white:hover {
    background: #f5f5f5;
    border-color: #333;
}

.car-model-button-green {
    background: #6b7d47;
    color: #fff;
    border: 2px solid #6b7d47;
}

.car-model-button-green:hover {
    background: #5a6b3a;
    border-color: #5a6b3a;
}

/* Hero Content */
.car-model-hero-content {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.car-model-title {
    font-family: 'Dacia Block', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.car-model-slogan {
    font-family: 'Read Font', Arial, sans-serif;
    font-size: 2.5rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Content Section */
.car-model-content {
    padding: 60px 0;
    background: #fff;
}

.car-model-text {
    font-family: 'Read Font', Arial, sans-serif;
    font-size: 1.9rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

.car-model-text p {
    margin-bottom: 1.5em;
}

.car-model-text h2,
.car-model-text h3,
.car-model-text h4 {
    font-family: 'Dacia Block', Arial, sans-serif;
    margin-top: 2em;
    margin-bottom: 1em;
}

.car-model-text h2 {
    font-size: 2.5rem;
}

.car-model-text h3 {
    font-size: 2rem;
}

.car-model-text h4 {
    font-size: 1.5rem;
}

.car-model-text ul,
.car-model-text ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.car-model-text li {
    margin-bottom: 0.5em;
}

/* Anchor Sections */
.car-model-anchor-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.car-model-anchor-title {
    font-family: 'Dacia Block', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
    .car-model-hero-image-wrapper {
        height: 60vh;
        min-height: 400px;
    }
    
    .car-model-hero-buttons {
        right: 20px;
    }
    
    .car-model-hero-button {
        width: 50px;
        height: 50px;
    }
    
    .car-model-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .car-model-nav-link {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .car-model-hero-image-wrapper {
        height: 50vh;
        min-height: 300px;
    }
    
    .car-model-hero-buttons {
        right: 15px;
        gap: 10px;
    }
    
    .car-model-hero-button {
        width: 45px;
        height: 45px;
    }
    
    .car-model-button-icon {
        font-size: 20px;
    }
    
    .car-model-title {
        font-size: 2rem;
    }
    
    .car-model-slogan {
        font-size: 1.5rem;
    }
    
    .car-model-text {
        font-size: 1.2rem;
    }
    
    .car-model-text h2 {
        font-size: 1.75rem;
    }
    
    .car-model-text h3 {
        font-size: 1.5rem;
    }
    
    .car-model-text h4 {
        font-size: 1.25rem;
    }
    
    .car-model-anchor-title {
        font-size: 2rem;
    }
    
    .car-model-buttons-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .car-model-button {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
