/*
Theme Name: AltinHost
Theme URI: https://altinhost.net
Author: AltinHost Team
Author URI: https://altinhost.net
Description: Altinhost.net için özel olarak geliştirilmiş; ultra hızlı, modern, SEO uyumlu ve tam yönetilebilir kurumsal WordPress teması.
Version: 1.0.0
Tested up to: 6.7
Requires at least: 6.0
Requires PHP: 8.1
Text Domain: altinhost
Domain Path: /languages
Tags: custom-theme, corporate, technology, fast, responsive, seo-friendly

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/**
 * AltinHost CSS Variables - Varsayılan Sistem Renkleri & Tipografi
 * Admin panelinden yapılan değişiklikler inline olarak buradaki değişkenleri felç etmeden ezer.
 */
:root {
  /* Renk Paleti */
  --ah-primary: #d4af37;
  --ah-primary-hover: #b89628;
  --ah-secondary: #0f172a;
  --ah-accent: #38bdf8;
  --ah-background: #090d16;
  --ah-surface: #131c2e;
  --ah-surface-hover: #1e293b;
  --ah-text: #94a3b8;
  --ah-heading: #ffffff;
  --ah-border: rgba(255, 255, 255, 0.08);
  --ah-border-light: rgba(0, 0, 0, 0.08);
  --ah-button: #d4af37;
  --ah-button-text: #0f172a;
  --ah-button-hover: #b89628;
  --ah-success: #10b981;
  --ah-warning: #f59e0b;
  --ah-danger: #ef4444;

  /* Layout & Spacing */
  --ah-container-width: 1280px;
  --ah-header-height: 80px;
  --ah-radius: 12px;
  --ah-radius-sm: 6px;
  --ah-radius-lg: 20px;
  --ah-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ah-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

  /* Tipografi */
  --ah-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --ah-font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Temel CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ah-font-body);
  background-color: var(--ah-background);
  color: var(--ah-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--ah-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}