/* ========== SNEL TAXI ERMELO - CORRECT INDEX.CSS ========== */
/* Matches YOUR HTML structure from index.php */

/* ========== FIX: INDEX PRIMARY CONTACT BUTTONS TO MATCH FOOTER ========== */
/* Target only primary contact buttons in the index page sections */
#first-section .primary-btn,
#second-section .primary-btn,
#third-section .primary-btn {
    /* Match the exact properties from footer contact buttons */
    padding: 10px 14px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
    min-width: 80px !important;
    max-width: 100px !important;
    text-align: center !important;
    
    /* Important: Keep these from original .primary-btn class */
    text-decoration: none !important;
    background-color: #C5A028 !important;
    font-family: 'Maven Pro', sans-serif !important;
    color: #000000 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7) !important;
    font-weight: bold !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-block !important;
}

/* For extra padding version in index - adjusted to match footer scale */
#first-section .primary-btn-extra-padding,
#second-section .primary-btn-extra-padding,
#third-section .primary-btn-extra-padding {
    padding: 10px 20px !important;
    max-width: 110px !important;
}

/* Make button containers in index behave like footer */
#first-section .btn-container,
#second-section .second-section-btn-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    margin: 15px 0 !important;
}

/* ========== HERO SECTION ========== */
#first-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    gap: 2rem;
    min-height: 500px;
    margin-top: 20px;
    background-color: #f5f5f5; /* Light gray background */
}

.first-text-section {
    width: 55%;
    flex-shrink: 0;
}

.image-section {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.large-Text {
    font-size: 3rem;
    font-family: 'Dosis', sans-serif;
    font-weight: 500;
    margin: 0.5rem 0;
    width: 100%;
    display: block;
    line-height: 1.3;
    color: #000000; /* CHANGED: Dark blue to BLACK */
    text-decoration: none !important;
}

#intro-animated-text {
    min-height: 120px;
    display: flex;
    align-items: center;
}

/* ========== SECOND SECTION (UNIQUE TO SNEL TAXI) ========== */
#second-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 5%;
    gap: 3rem;
    background-color: #ffffff; /* White background */
}

#second-section .image-section {
    width: 45%;
    display: flex;
    justify-content: center;
}

#second-section .image-section img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.text-section {
    width: 50%;
    padding: 1rem;
}

.text-section p {
    margin: 1rem 0;
    color: #000000; /* CHANGED: Dark blue to BLACK */
    text-decoration: none !important;
}

.text-section .big-text {
    text-decoration: none !important;
    color: #000000 !important; /* CHANGED: Dark blue to BLACK */
}

.highlighted-text {
    color: #000000; /* CHANGED: Dark blue to BLACK */
    text-decoration: none !important;
}

/* ========== THIRD SECTION ========== */
#third-section {
    padding: 3rem 5%;
    background-color: #f5f5f5; /* Light gray background */
}

.heading-text {
    text-align: center;
    color: #000000; /* CHANGED: Dark blue to BLACK */
    text-decoration: none !important;
}

.why-us-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.why-us-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none !important;
    display: block;
}

.why-us-card:hover {
    transform: translateY(-5px);
    text-decoration: none !important;
}

.why-us-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.card-big-text {
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    color: #000000; /* CHANGED: Dark blue to BLACK */
    text-transform: uppercase;
    margin: 1rem 0;
    line-height: 1.3;
    text-decoration: none !important;
}

.why-us-card .small-text {
    color: #000000; /* CHANGED: Dark blue to BLACK */
    text-decoration: none !important;
}

/* ========== BUTTON CONTAINERS ========== */
.btn-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.second-section-btn-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* REMOVE ALL UNDERLINES FROM LINKS */
a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .large-Text {
        font-size: 2.8rem;
    }
    
    .card-big-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    #first-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .first-text-section {
        width: 100%;
        order: 1;
    }
    
    .image-section {
        width: 80%;
        order: 2;
    }
    
    .large-Text {
        font-size: 2.5rem;
    }
    
    #second-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    #second-section .image-section,
    .text-section {
        width: 100%;
    }
    
    .why-us-container {
        flex-direction: column;
        align-items: center;
    }
    
    .why-us-card {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .large-Text {
        font-size: 2.2rem;
    }
    
    .image-section img {
        max-width: 300px;
    }
    
    #second-section .image-section img {
        max-width: 300px;
    }
    
    .why-us-card {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .large-Text {
        font-size: 1.8rem;
    }
    
    .btn-container {
        flex-direction: row;
        align-items: center;
    }
    
    .image-section {
        width: 95%;
    }
    
    .image-section img {
        max-width: 250px;
    }
    
    #second-section .image-section img {
        max-width: 250px;
    }
    
    .why-us-card {
        width: 95%;
        padding: 1.2rem;
    }
    
    .card-big-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .large-Text {
        font-size: 1.6rem;
    }
    
    .image-section img {
        max-width: 200px;
    }
    
    #second-section .image-section img {
        max-width: 200px;
    }
}