/*
Theme Name: Circular Marketing
Theme URI: https://circularmarketing.com.au
Author: Circular Marketing
Author URI: https://circularmarketing.com.au
Description: A results-driven digital agency theme for Circular Marketing Australia.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: circular-marketing
*/

/* ===========================
   CSS Variables
   =========================== */
:root {
    --brand-yellow: #FFC320;
    --deep-bg: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* ===========================
   Base Styles
   =========================== */
body {
    background-color: var(--deep-bg);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Space Grotesk', sans-serif;
}

/* ===========================
   Glass Card
   =========================== */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    border-color: var(--brand-yellow);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 195, 32, 0.05);
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
    background-color: var(--brand-yellow);
    color: black;
    padding: 14px 36px;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 195, 32, 0.3);
}

/* ===========================
   Decorative Blobs
   =========================== */
.blob {
    position: absolute;
    max-width: 600px;
    max-height: 600px;
    background: var(--brand-yellow);
    filter: blur(150px);
    opacity: 0.08;
    z-index: -1;
    border-radius: 50%;
}

/* ===========================
   Service Icons
   =========================== */
.service-icon {
    background: linear-gradient(135deg, rgba(255, 195, 32, 0.2) 0%, rgba(255, 195, 32, 0.05) 100%);
    border: 1px solid rgba(255, 195, 32, 0.2);
}

/* ===========================
   Navigation
   =========================== */
.nav-link {
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--brand-yellow);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--brand-yellow);
}

/* ===========================
   Details / FAQ
   =========================== */
details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

/* ===========================
   Value Numbers (About Page)
   =========================== */
.value-number {
    -webkit-text-stroke: 1px rgba(255, 195, 32, 0.3);
    color: transparent;
    font-size: 4rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    line-height: 1;
}

/* ===========================
   Contact Form Inputs
   =========================== */
.contact-form input,
.contact-form textarea,
.contact-form select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--brand-yellow) !important;
    outline: none;
}

/* ===========================
   Scrollbar
   =========================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

/* ===========================
   Screen Reader Only
   =========================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
