/*
Theme Name: Ai Host Theme
Theme URI: https://aihost.win
Author: Gemini
Author URI: https://gemini.google.com
Description: A modern, clean, and professional WordPress theme for a web hosting company.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: hosting, tech, modern, responsive, minimal
Text Domain: aihost-theme
*/

/* Custom properties for colors */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --primary-accent: #3B82F6; /* Blue */
    --secondary-accent: #10B981; /* Green */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Gradient Blur Background Elements */
body::before,
body::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

body::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(110, 231, 183, 0.3), transparent 70%);
    top: -50px;
    left: -100px;
}

body::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.2), transparent 70%);
    bottom: -100px;
    right: -150px;
}

/* Thin Circle Outlines */
.circle-outline {
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -150px;
}

.circle-2 {
    width: 500px;
    height: 500px;
    bottom: 5%;
    right: -200px;
}


/* Header */
.site-header {
    padding: 1.5rem 2rem;
}

.nav-menu a {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.nav-menu .current-menu-item a {
    border: 1px solid var(--text-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--text-color);
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.btn:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--bg-color);
}
