/* 
   ===============================
   Hakan Taksi - Ana Stil Dosyası
   ===============================
*/

:root {
    --primary-color: #FFCC00; /* Taksi Sarısı */
    --primary-dark: #E6B800;
    --dark-bg: #000000;
    --darker-bg: #000000;
    --light-text: #F3F4F6;
    --gray-text: #9CA3AF;
    --font-primary: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

/* Buttons */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light-text);
    text-decoration: none;
    letter-spacing: 1px;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-icon {
    padding: 12px 16px;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

.btn-black {
    background-color: var(--darker-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-black:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 204, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--light-text);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
}

/* Fallback styles in case text is used again */
.logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.logo span {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: #000000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffcc00" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.badge {
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.hero-text h1 {
    font-size: 4rem;
    color: white;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 10px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 600px;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: white;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    color: var(--gray-text);
    margin-top: 10px;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #0a0a0a;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: var(--gray-text);
}

/* Call to Action */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--darker-bg);
    font-size: 3rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Yellow Background Section */
.bg-yellow {
    background-color: var(--primary-color) !important;
    color: var(--darker-bg) !important;
}

.bg-yellow .section-title h2,
.bg-yellow .section-title h2 span {
    color: var(--darker-bg) !important;
}

.bg-yellow .section-title p {
    color: #333 !important;
}

.bg-yellow .feature-card {
    background-color: rgba(0, 0, 0, 0.06) !important;
    color: var(--darker-bg) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bg-yellow .feature-card h3 {
    color: var(--darker-bg);
}

.bg-yellow .feature-card p {
    color: #222;
}

.bg-yellow .feature-icon {
    color: var(--darker-bg);
    background-color: rgba(0, 0, 0, 0.06);
}

.bg-yellow .feature-card:hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    justify-content: center;
}

.footer-brand p {
    color: var(--gray-text);
    margin-top: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-text {
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
        flex-wrap: wrap;
        flex-direction: column;
        height: auto;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo {
        font-size: 1.1rem;
        gap: 5px;
        margin-bottom: 10px;
        justify-content: center;
    }

    .nav-contact {
        gap: 8px !important;
        margin-top: 5px;
        width: 100%;
        justify-content: center;
    }
    
    .nav-contact .btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .btn-icon {
        padding: 10px 14px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 10px;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav ul {
        gap: 15px;
        white-space: nowrap;
        justify-content: center;
    }
    
    .hero {
        padding-top: 190px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .floating-btn {
        bottom: 20px;
        right: 20px;
    }
}
