/*
Theme Name: Bulut VDS Theme
Theme URI: https://bulutvds.com.tr
Author: Bulut VDS
Author URI: https://bulutvds.com.tr
Description: Bulut VDS icin profesyonel, acik renkli, mobil uyumlu ve SEO odakli cloud VDS/sunucu saglayici temasi.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bulutvds
Tags: hosting, vds, vps, server, cloud, business
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* "Bulut" (cloud) inspired sky-blue / cyan palette - light, professional, NOT dark */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #e0f2fe;
    --secondary: #4f46e5;
    --secondary-dark: #4338ca;
    --accent: #06b6d4;

    --dark: #0f172a;
    --dark2: #1e293b;
    --dark3: #475569;
    --text: #55617a;
    --muted: #8592ab;

    --light: #f4f9ff;
    --light2: #eef4fb;
    --white: #ffffff;
    --border: #e3ecf7;

    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #e11d48;
    --info: #0ea5e9;

    --shadow: 0 10px 40px rgba(15,68,120,0.08);
    --shadow-hover: 0 20px 60px rgba(15,68,120,0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.25;
}

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

.container-fluid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14,165,233,0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79,70,229,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 16px 34px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 13px;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 17px;
    color: var(--text);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--dark);
    color: var(--white);
    padding: 12px 20px;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    left: 0;
}
