/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

/* --- Hero Section (Giriş) --- */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-cta {
    background-color: #ff9966;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 153, 102, 0.4);
    background-color: #ff8547;
}

/* --- Özellikler Grid (Icons) --- */
.features {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: #764ba2;
    margin-bottom: 20px;
}

/* --- Görsel Vitrin (Showcase) --- */
.showcase {
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase:nth-child(even) {
    flex-direction: row-reverse; /* Resmi bir sağa bir sola alır */
}

.showcase-text {
    flex: 1;
    min-width: 300px;
}

.showcase-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.showcase-img {
    flex: 1;
    min-width: 300px;
}

.showcase-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}
.showcase-img img:hover {
    transform: scale(1.02);
}

/* --- Form Alanı --- */
.demo-section {
    background: #2c3e50;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.demo-form {
    max-width: 500px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    color: #333;
}

.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: #555; display: block; margin-bottom: 5px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ddd;
    border-radius: 8px; font-family: inherit; box-sizing: border-box;
}
.btn-submit {
    width: 100%; padding: 15px; background: #667eea; color: white;
    border: none; border-radius: 8px; font-size: 1.1rem; cursor: pointer;
    font-weight: bold; transition: background 0.3s;
}
.btn-submit:hover { background: #5a6fd6; }