* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #ffd700; /* Ana sarı renk */
    --primary-dark: #e6c200; /* Koyu sarı */
    --secondary-color: #222222; /* Koyu gri/siyah */
    --text-dark: #333333; /* Metin rengi koyu */
    --text-light: #ffffff; /* Metin rengi açık */
    --bg-light: #ffffff; /* Açık arka plan rengini beyaz yap */
    --bg-dark: #1a1a1a; /* Koyu arka plan */
    --accent-color: #ff9900; /* Vurgu rengi (turuncu) */
}

nav {
    background: rgba(34, 34, 34, 0.95);
    padding: 0.8rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--primary-color);
    height: 60px; /* Sabit navbar yüksekliği */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.5rem 1rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo::before {
    content: '\f1ba'; /* Font Awesome taksi ikonu */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 1.5rem;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.logo span.highlight {
    color: var(--text-light);
    font-weight: 300;
    font-size: 1.6rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-light);
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 60px;
}

.cta-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: bold;
}

.cta-button:hover {
    background: var(--primary-dark);
}

section {
    padding: 4rem 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item:hover {
    background: var(--primary-color);
}

.feature-item:hover i,
.feature-item:hover h3 {
    color: var(--secondary-color);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.social-media {
    text-align: center;
}

.social-media a {
    color: #333;
    font-size: 2rem;
    margin: 0 1rem;
}

footer {
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .logo-container {
        width: 100%;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 50px; /* Navbar yüksekliğine göre ayarla */
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        border-top: 2px solid var(--primary-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .logo::before {
        font-size: 1.2rem;
    }

    .logo span.highlight {
        font-size: 1.2rem;
    }

    nav {
        padding: 0.6rem 1rem;
        height: 50px; /* Mobilde daha küçük navbar */
    }

    .slider {
        height: 100vh;
        margin-top: 0;
    }

    .hero {
        height: 100vh;
        padding-top: 0;
    }
}

/* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider karartma efekti */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4));
    z-index: 1;
}

/* Slider içeriğinin z-index'ini güncelle */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2; /* Karartmanın üzerinde görünmesi için */
    width: 90%;
    max-width: 1200px;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3; /* Karartmanın üzerinde görünmesi için */
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Animasyonlar */
.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Galeri Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(34, 34, 34, 0.8);
    color: var(--primary-color);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1100;
}

.modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 20px;
    color: white;
}

.modal-counter {
    margin: 0 15px;
}

.modal-prev, .modal-next {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
}

.modal-prev:hover, .modal-next:hover {
    color: var(--primary-color);
}

/* Responsive tasarım güncellemeleri */
@media (max-width: 768px) {
    .slider {
        height: calc(100vh - 50px); /* Mobilde daha da küçük */
        margin-top: 50px; /* Mobilde daha da küçük */
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .modal-content {
        max-width: 95%;
    }
    
    .modal-nav {
        bottom: 10px;
        padding: 5px;
    }
    
    .modal-counter {
        margin: 0 10px;
        font-size: 0.9rem;
    }

    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

/* İletişim bölümü stilleri */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.contact-icon {
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.contact-text p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-text small {
    color: #888;
    font-size: 0.9rem;
}

.social-media {
    text-align: center;
    padding: 2rem 0;
}

.social-media h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .contact-container {
        padding: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-text h3 {
        font-size: 1.1rem;
    }
    
    .contact-text p {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Mobil menü stilleri */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    /* Navbar mobil düzenlemeler */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        padding: 1rem 0;
        text-align: center;
        border-top: 2px solid var(--primary-color);
    }

    .nav-links.active {
        display: block;
    }

    .nav-links li {
        display: block;
        margin: 1rem 0;
    }

    .nav-links a:hover {
        color: var(--primary-color);
    }

    /* Hero bölümü mobil düzenlemeler */
    .hero {
        height: 80vh;
    }

    .hero h1 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .slider {
        height: 80vh;
    }

    /* Hizmetler bölümü mobil düzenlemeler */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    /* Galeri bölümü mobil düzenlemeler */
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }

    /* İletişim bölümü mobil düzenlemeler */
    .contact-container {
        padding: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item {
        margin-bottom: 1rem;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* Genel mobil düzenlemeler */
    section {
        padding: 2rem 1rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Slider butonları mobil düzenleme */
    .prev-btn, .next-btn {
        padding: 0.5rem;
        font-size: 1.2rem;
    }

    /* CTA button mobil düzenleme */
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Küçük ekranlar için ek düzenlemeler */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .contact-text h3 {
        font-size: 1rem;
    }

    .contact-text p {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    nav {
        height: 45px; /* En küçük ekranlarda daha da küçük navbar */
    }

    .nav-links {
        top: 45px;
    }
}

/* Modal için çıkış butonu stilleri */
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1200;
}

.close-modal:hover {
    background: rgba(255,0,0,0.8);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .close-modal {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* Hakkımda bölümü stilleri */
.about {
    text-align: center;
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2.2rem;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0 auto;
    max-width: 600px;
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 1rem;
    }
    
    .about h2 {
        font-size: 1.8rem;
    }
    
    .about p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Genel başlık stilleri */
section h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Responsive başlık düzenlemeleri */
@media (max-width: 768px) {
    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

/* Features bölümü başlık düzenlemesi */
.features {
    text-align: center;
}

/* Gallery bölümü başlık düzenlemesi */
.gallery {
    text-align: center;
}

/* Contact bölümü başlık düzenlemesi */
.contact {
    text-align: center;
}

/* Hover efektleri için genel renk güncellemesi */
a:hover {
    color: var(--primary-color);
}

.contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* Body ve genel arka plan rengi */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #ffffff; /* Gri yerine beyaz */
} 