/* Temel Ayarlar */
:root {
    --primary-color: #6a1a7b; /* Koyu Mor */
    --secondary-color: #8e2de2; /* Orta Mor */
    --accent-color: #e0b0ff; /* Açık Lavanta / Mor */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-dark: #f8f8f8;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 3em;
    font-weight: 700;
    color: var(--text-light); /* Hero bölümü için */
}

h2 {
    font-size: 2.5em;
    font-weight: 600;
}

h3 {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
}

p {
    font-size: 1.1em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-dot {
    color: var(--secondary-color); /* Noktanın rengi */
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    font-weight: 600;
    color: var(--text-dark);
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
    padding: 150px 20px 100px; /* Header için boşluk bırak */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-section h1 {
    font-size: 4em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-section h2 {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Sections Styling */
section {
    padding: 80px 0;
}

section:nth-of-type(even) { /* Her iki bölümde bir arka plan rengini değiştir */
    background-color: var(--bg-dark);
}

/* Services Section */
.services-section .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-item p {
    font-size: 1em;
    color: #666;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-us-item {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
}

.why-us-item i {
    font-size: 3.5em;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.why-us-item h3 {
    color: var(--text-light);
    margin-top: 0;
}

.why-us-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section .container {
    max-width: 800px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2em;
    color: #555;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1em;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form button {
    align-self: center;
    width: 200px;
    cursor: pointer;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer a {
    color: var(--accent-color);
    font-weight: 600;
}

.footer a:hover {
    color: var(--text-light);
}

.footer p {
    margin: 5px 0;
}

.company-info {
    font-weight: 600;
    margin-top: 15px;
}

.footer-links a {
    margin: 0 10px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    .nav ul {
        flex-direction: column;
        margin-top: 15px;
    }
    .nav ul li {
        margin: 10px 0;
    }
    .hero-section h1 {
        font-size: 3em;
    }
    .hero-section h2 {
        font-size: 1.5em;
    }
    .service-grid, .why-us-grid {
        grid-template-columns: 1fr;
    }
    .contact-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section h2 {
        font-size: 1.2em;
    }
    h2 {
        font-size: 2em;
    }
    p {
        font-size: 1em;
    }
}