/*
Theme Name: Yellow Advertisers Theme
Theme URI: https://yellowadvertisers.com/
Description: Modern Digital Agency WordPress Theme
Author: Ali Akbar
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: yellowadvertisers
*/

/* CSS Variables */
:root {
    --primary-color: #fccc11;
    /* High-Tech Blue/Purple */
    --accent-color: #fccc11;
    /* Original Yellow Accent */
    --secondary-color: #333333;
    --text-color: #666666;
    --heading-color: #1a1a1a;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #eaeaea;

    /* Fonts */
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Inter', sans-serif;

    /* Utilities */
    --transition: all 0.3s ease;
    --capsule-radius: 50px;
    --card-radius: 20px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 40px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Button Base Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 204, 17, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}