@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Oswald:wght@700&display=swap');

@font-face {
    font-family: 'PTSansNarrow-Bold';
    src: url('fonts/PTSansNarrow-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary: #FFD700;
    /* Altın sarısı */
    --secondary: #FFC000;
    /* Daha koyu sarı */
    --accent: #FFA500;
    /* Turuncu-sarı */
    --light: #F8F8F8;
    /* Açık gri */
    --dark: #000000;
    /* Siyah */
    --text-on-dark: #FFFFFF;
    /* Beyaz */
    --text-on-light: #333333;
    /* Koyu gri */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text-on-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(90deg, #FFD700 0%, #000 100%);
    color: var(--primary);
    padding: 2.5rem 0 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 8px solid #FFD700;
}

.taxi-header {
    background: #fff;
    border-bottom: 6px solid #FFD700;
}

.header-bar {
    background: #111;
    padding: 1.5rem 0;
}

.taxi-logo {
    font-size: 2.8rem;
    font-family: 'PTSansNarrow-Bold', Arial, sans-serif;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #00000044;
}

.header-sub {
    background: #f7f7f7;
    padding: 0.7rem 0 1rem 0;
    border-bottom: 2px solid #FFD700;
}

.taxi-slogan {
    font-size: 1.1rem;
    color: #222;
    font-weight: 400;
    opacity: 0.8;
}

.taxi-names {
    font-size: 0.95rem;
    color: #555;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.taxi-header .taxi-checker {
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(90deg, #FFD700 0 24px, #111 24px 48px);
}

.hero {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: var(--light);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-on-light);
}

.phone-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    margin: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--dark);
}

.phone-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.phone-cta i {
    margin-right: 10px;
    color: var(--dark);
}

.features {
    padding: 4rem 0;
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.image-section {
    padding: 4rem 0;
    background-color: var(--dark);
    color: var(--text-on-dark);
    text-align: center;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.image-box {
    height: 250px;
    /* Standart fotoğraf boyutu */
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--primary);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: var(--primary);
    font-size: 1.2rem;
}

.testimonials {
    padding: 4rem 0;
    background-color: var(--light);
    text-align: center;
}

.testimonial-card {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 4px solid var(--primary);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.1);
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary);
}

.taxi-slogan,
.taxi-names {
    font-weight: 400;
    opacity: 0.8;
}

footer {
    background-color: var(--dark);
    color: var(--primary);
    padding: 2rem 0;
    text-align: center;
    border-top: 5px solid var(--primary);
}

.footer-contact {
    margin-bottom: 1rem;
}

.footer-contact p {
    margin: 0.5rem 0;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .phone-cta {
        font-size: 1.5rem;
    }

    .image-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .taxi-logo {
        font-size: 1.5rem;
    }

    .header-bar {
        padding: 0.7rem 0;
    }

    .header-sub {
        padding: 0.3rem 0 0.5rem 0;
    }

    .taxi-header .taxi-checker {
        height: 20px;
    }
}