body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #f8f9fa;
}

.hero {
    background-image: url('taksi_bg.jpeg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-content {
    text-align: center;
    margin-bottom: 100px;
}

.header-content h1 {
    font-size: 3.5em;
    margin: 0;
    font-weight: 700;
    color: #f8f9fa;
    letter-spacing: 6px;
}

.header-content h2 {
    font-size: 1.8em;
    margin: 10px 0;
    font-weight: 400;
    color: #f8f9fa;
    font-style: italic;
}

.header-content button {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ffcc00;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bolder;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.header-content button:hover {
    background-color: #e0a800;
    transform: scale(1.05);
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    color: white;
    font-size: 2em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffcc00; 
}

.driver-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.info-box {
    background-color: #ffcc00;
    padding: 12px;
    border-radius: 10px;
    text-align: left;
    color: black;
}

.info-box p {
    margin: 5px 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    font-weight: bolder;
}

.info-box i {
    margin-right: 10px;
}

/* Medya Sorguları */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.7em;
    }

    .header-content h2 {
        font-size: 1.3em;
    }

    .header-content button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .info-box p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2.4em;
    }

    .header-content h2 {
        font-size: 1em;
    }

    .header-content button {
        padding: 8px 16px;
        font-size: 0.9em;
    }

    .info-box p {
        font-size: 0.9em;
    }

    .info-box {
        padding: 8px;
    }

    .social-icons a {
        font-size: 1.5em;
        margin: 0 8px;
    }
}



    

