/* style.css - Canva Inspired Theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Canva Tarzı Renk Paleti */
    --primary-gradient: linear-gradient(135deg, #7F00FF 0%, #E100FF 100%); /* Canlı Mor */
    --primary-solid: #8b3dff;
    --surface: #ffffff;
    --bg-light: #f5f5f5;
    --text-dark: #0e101a;
    --text-gray: #515563;
    --border-color: #e1e4e8;
    --shadow-card: 0 12px 24px -6px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fb;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- NAVBAR --- */
.navbar {
    background: var(--surface);
    height: 70px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container img {
    height: 40px;
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 14px;
    margin-left: 20px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-solid);
}

/* --- HERO SECTION (Ana Alan) --- */
.hero-wrapper {
    display: flex;
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Arka plandaki mor dalga/gradyan efekti */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: var(--primary-gradient);
    z-index: -1;
    border-bottom-right-radius: 50% 100px;
    border-bottom-left-radius: 50% 100px;
    transform: scaleX(1.5);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: flex-start; /* Üstten hizala */
    padding: 60px 20px;
    gap: 60px;
}

/* --- SOL TARAF (Metin) --- */
.hero-content {
    flex: 1;
    padding-top: 40px;
    color: white; /* Arka plan mor olduğu için yazı beyaz olabilir, veya aşağıda kalırsa koyu */
}

/* Eğer mor alanın üstündeyse beyaz, altındaysa koyu. 
   Biz kart tasarımına gittiğimiz için metni koyu, arka planı açık tutalım, 
   sadece üstte dekoratif morluk olsun. */
.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2d3436; /* Koyu renk */
}

.hero-content h1 span {
    color: #8b3dff; /* Mor vurgu */
    background: -webkit-linear-gradient(45deg, #7F00FF, #E100FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.features-list li i {
    color: #00c4cc; /* Canva turkuazı */
    margin-right: 12px;
    font-size: 18px;
}

/* --- SAĞ TARAF (Form Kartı) --- */
.form-card {
    flex: 1;
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    max-width: 550px;
    border: 1px solid var(--border-color);
    position: relative;
    /* Hafif yukarı kaydırma efekti */
    margin-top: -20px; 
}

.form-header-small {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width { grid-column: span 2; }

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

input:hover {
    border-color: #b4b7bd;
}

input:focus {
    border-color: var(--primary-solid);
    outline: none;
    box-shadow: 0 0 0 4px rgba(139, 61, 255, 0.1);
}

/* Renk Seçici Özelleştirme */
input[type="color"] {
    height: 45px;
    padding: 4px;
    cursor: pointer;
}

.divider {
    grid-column: span 2;
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

.btn-submit {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 16px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 0, 255, 0.3);
}

/* --- FOOTER --- */
footer {
    background: #111827; /* Koyu siyah/mavi */
    color: #9ca3af;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1f2937;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        padding: 30px 20px;
    }
    .form-card {
        max-width: 100%;
        margin-top: 0;
    }
    .hero-content h1 {
        font-size: 36px;
    }
}