/* General Styles */
:root {
    --primary: #000000; /* Siyah */
    --secondary: #333333; /* Koyu gri */
    --success: #ffc107; /* Sarı */
    --info: #f8f9fa;
    --warning: #ffc107; /* Sarı */
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
    --purple: #333333; /* Koyu gri */
    --pink: #999999; /* Açık gri */
    --orange: #ffc107; /* Sarı */
    --teal: #cccccc; /* Çok açık gri */
    --soft-gray: #e6e6e6; /* Soft gri */
    --light-gray: #f2f2f2; /* Açık gri */
    --pale-yellow: #fff3cd; /* Soluk sarı */
    --cream: #fffbeb; /* Krem */
}

html {
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', 'Segoe UI', 'Arial', sans-serif;
    color: #333;
    margin-bottom: 60px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Updated gradient style - v2 */
.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    display: inline-block;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
}

.btn-gradient {
    background: linear-gradient(to right, var(--primary), var(--orange));
    border: none;
    color: white;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #333333, #ffd700);
    color: white;
}

/* Cards */
.card {
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    font-weight: 600;
}

/* Forms */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background-color: #fff !important;
    border-bottom: 3px solid var(--primary);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary) !important;
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    color: var(--dark) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}

/* Background Colors */
.bg-primary-light {
    background-color: rgba(0, 0, 0, 0.1);
}

.bg-success-light {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-info-light {
    background-color: rgba(13, 202, 240, 0.1);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.1);
}

.bg-danger-light {
    background-color: rgba(220, 53, 69, 0.1);
}

.bg-purple-light {
    background-color: rgba(51, 51, 51, 0.1);
}

.bg-gradient-black-yellow {
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
    color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Text Colors */
.text-purple {
    color: var(--secondary);
}

.text-red {
    color: var(--primary);
}

.text-orange {
    color: var(--orange);
}

.text-gradient-black-yellow {
    background: linear-gradient(to right, var(--primary), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Hero Section */
/* Simple Hero Section */
.simple-hero {
    position: relative;
    overflow: hidden;
    background-color: #333333; /* Daha açık siyah renk */
    background-image: linear-gradient(to bottom right, rgba(51,51,51,0.9), rgba(51,51,51,0.7)), url('/images/grid-pattern.png');
    background-size: cover;
    background-position: center;
}

.simple-hero-content {
    position: relative;
    z-index: 1;
}

.simple-hero-image {
    position: relative;
    z-index: 1;
}

.simple-hero-card {
    background-color: rgba(33, 37, 41, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-hero-card-inner {
    background-color: rgba(0, 0, 0, 0.2);
}

.simple-hero-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
}

.simple-hero-dashboard {
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.simple-hero-dashboard:hover {
    transform: translateY(-5px);
}

/* Brand Logo Styles */
.brand-card {
    transition: all 0.3s ease;
    background-color: white;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.brand-logo-container {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

.brand-name {
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-name {
    color: var(--primary);
}

/* Features Section */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
    border-radius: 50%;
}

/* Testimonials */
.testimonial-card {
    border-radius: 1rem;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Pricing */
.pricing-card {
    border-radius: 1rem;
    overflow: hidden;
}

.pricing-popular {
    position: relative;
    border-top: 3px solid var(--primary);
    z-index: 1;
}

.pricing-popular-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 0.5rem 0.5rem;
    font-size: 0.875rem;
    font-weight: bold;
}

/* Ad Example Styles */
.ad-example-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.ad-example-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.ad-example-img {
    height: 200px;
    object-fit: cover;
}

.ad-example-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.ad-example-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
}

/* Animations */
.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Utilities */
.shadow-hover:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.rounded-xl {
    border-radius: 1rem;
}

/* Responsive */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}