/*
Theme Name: Siirt Van Minibüs Seferleri
Description: Siirt Petrol Turizm için hazırlanmış SEO uyumlu, tek sayfalık özel WordPress teması.
Version: 1.0.0
Author: Antigravity
*/

/* Reset & BaseStyles */
:root {
    --primary: #1e3a8a;
    --primary-light: #2563eb;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --text-dark: #0f172a;
    --text-light: #475569;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(30, 58, 138, 0.7)), url('assets/hero_bg.png') center/cover no-repeat;
    padding: 0 20px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-light) 0%, transparent 100%);
    z-index: 5;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    background: linear-gradient(to right, #fff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 48px;
    opacity: 0.95;
    font-weight: 300;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Info Cards Section */
.info-section {
    padding: 0 20px;
    max-width: 1200px;
    margin: -120px auto 40px;
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.info-card:hover {
    transform: translateY(-12px);
    border-color: rgba(37, 99, 235, 0.2);
}

.card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    transition: var(--transition);
}

.info-card:hover .card-icon {
    background: var(--primary-light);
    color: var(--white);
    transform: rotate(10deg);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.info-card p, .info-card a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    display: block;
}

.info-card a:hover {
    color: var(--primary-light);
}

/* Schedule Section */
.schedule-section {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.time-slot {
    background: var(--bg-light);
    padding: 40px 20px;
    border-radius: var(--border-radius);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.03;
    color: var(--text-dark);
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: scale(1.05);
}

.time-slot:hover::before {
    transform: rotate(-15deg) scale(1.1);
    opacity: 0.06;
}

/* Features/SEO Text Area */
.seo-content {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.seo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.seo-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: #94a3b8;
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 5px solid var(--primary);
}

footer p {
    font-size: 1.1rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .info-section {
        margin-top: 0;
        padding-top: 60px;
    }
    
    .hero {
        min-height: 500px;
    }
}
