/*
Theme Name: Tek Sayfa WordPress Teması
Theme URI: https://sentepefizik.com
Author: WordPress Tek Sayfa Sihirbazı
Description: Tamamen özelleştirilebilir, hızlı, modern ve tek sayfalık harika bir WordPress teması. Bu tema, temiz yapısı ve responsive düzeni ile tek sayfada tüm detaylarınızı sunar.
Version: 1.0.0
License: GNU General Public License v2 or later
Tags: one-column, custom-colors, custom-menu, translation-ready, block-styles, accessibility-ready
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- TEMEL AYARLAR & DEĞİŞKENLER --- */
:root {
    --primary-color: #0284c7;
    --secondary-color: #1e1b4b;
    --text-color: #1e293b;
    --bg-color: #fafafa;
    --accent-color: #fbbf24;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- WORDPRESS STANDART UYUMLULUK SINIFLARI --- */
.aligncenter {
    display: block;
    margin: 2em auto;
}

.alignright {
    float: right;
    margin: 0 0 1.5em 1.5em;
}

.alignleft {
    float: left;
    margin: 0 1.5em 1.5em 0;
}

.wp-caption {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    max-width: 100%;
    padding: 8px;
    text-align: center;
    border-radius: 8px;
}

.wp-caption img {
    margin: 0;
    max-width: 100%;
    height: auto;
}

.wp-caption-text {
    font-size: 11px;
    color: #64748b;
    margin: 8px 0 0;
}

/* --- NAVİGASYON VE MENÜ --- */
.wp-nav-container {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.wp-nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wp-nav-logo {
    font-family: var(--font-display);
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.wp-nav-menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.wp-nav-menu a {
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

.wp-nav-phone {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- HERO BÖLÜMÜ --- */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e1b4b 100%);
    color: #ffffff;
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.hero-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 9999px;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.btn-secondary {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 700;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- HAKKIMIZDA BÖLÜMÜ --- */
.about-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 48px;
    align-items: center;
}

.about-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-text {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    white-space: pre-line;
}

.about-info-box {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 36px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.about-info-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-info-list {
    list-style: none;
}

.about-info-item {
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #475569;
    display: flex;
    gap: 12px;
}

.about-info-item:last-child {
    border-bottom: none;
}

.about-info-item strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* --- HİZMETLERİMİZ BÖLÜMÜ --- */
.services-section {
    background-color: #f1f5f9;
    padding: 100px 24px;
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-main-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.services-subtitle {
    color: #64748b;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.015);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.04);
}

.service-icon {
    font-size: 44px;
    margin-bottom: 24px;
    display: inline-block;
}

.service-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* --- HARİTA VE İLETİŞİM DETAYI --- */
.contact-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-main-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.contact-subtitle {
    color: #64748b;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
}

.map-card {
    background-color: #ffffff;
    border-radius: 28px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.02);
}

.map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    height: 420px;
}

.no-map-fallback {
    background-color: #f8fafc;
    border-radius: 28px;
    padding: 60px 40px;
    border: 2px dashed #cbd5e1;
    text-align: center;
}

.no-map-icon {
    font-size: 54px;
    margin-bottom: 16px;
}

.no-map-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: #475569;
    font-size: 18px;
    margin-bottom: 8px;
}

.no-map-desc {
    font-size: 14px;
    color: #94a3b8;
}

/* --- FOOTER / ALT ALAN --- */
.footer-section {
    background-color: var(--secondary-color);
    color: #cbd5e1;
    padding: 80px 24px;
    font-size: 14px;
    border-top: 6px solid var(--primary-color);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.footer-column-title {
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-subtitle {
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-description {
    line-height: 1.7;
    color: #cbd5e1;
}

.footer-phones {
    margin-top: 20px;
    font-weight: 700;
    color: #fbbf24;
    font-size: 15px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding-top: 24px;
    border-top: 1px solid #334155;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}

/* --- RESPONSIVE AYARLAR --- */
@media (max-width: 768px) {
    .wp-nav-menu {
        display: none; /* Basit mobil gizleme */
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .about-title, .services-main-title, .contact-main-title {
        font-size: 28px;
    }
    .map-wrapper {
        height: 300px;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
