/*
Theme Name: Dawicars Premium
Theme URI: http://dawicars.pl
Author: Antigravity AI
Description: Nowoczesny, prestiżowy motyw dla warsztatu samochodowego i centrum detailingu.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: automotive, dark-mode, premium, responsive-layout
Text Domain: dawicars
*/

/* Reset and Global Styles */
/* Reset and Global Styles */
:root {
    --gold: #c5a028;      /* Muted Gold from logo */
    --gold-bright: #f0f18c;
    --silver: #e0e0e0;    /* Silver from logo */
    --silver-dark: #808080;
    --bg-dark: #0a0a0a;   /* Deep Black */
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(197, 160, 40, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(197, 160, 40, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.05) 0%, transparent 40%);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Glassmorphism utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.glass:hover {
    border-color: rgba(197, 160, 40, 0.5);
    box-shadow: 0 20px 60px rgba(197, 160, 40, 0.15);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg') center/cover;
    margin-bottom: 80px;
}

.glow-text {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--gold), #fff, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(197, 160, 40, 0.4));
}

.hero h2 {
    font-size: 2rem;
    color: var(--silver);
    margin-bottom: 30px;
    font-weight: 400;
}

/* Services */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 100px;
}

.service-card {
    padding: 50px 30px;
    text-align: center;
}

.service-card i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: var(--gold-bright);
    transform: translateY(-5px);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(197, 160, 40, 0.1);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .glow-text { font-size: 3rem; letter-spacing: 5px; }
    .hero h2 { font-size: 1.5rem; }
}
