/* ZÁKLADNÉ NASTAVENIA */
:root {
    --bg-color: #080808;
    --text-color: #f0f0f0;
    --accent-color: #0077ff; 
    --card-bg: #151515;
    --gold-accent: #ffd700;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }

/* ANIMÁCIE PRED NAČÍTANÍM */
.fade-in { animation: fadeIn 0.8s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* HLAVIČKA A NAVIGÁCIA */
header { display: flex; justify-content: space-between; align-items: center; padding: 15px 50px; background: rgba(8, 8, 8, 0.95); position: fixed; width: 100%; top: 0; z-index: 1000; backdrop-filter: blur(8px); border-bottom: 1px solid #1a1a1a; }
.logo img { height: 55px; }
nav ul { list-style: none; display: flex; gap: 30px; }
nav a { color: var(--text-color); text-decoration: none; font-weight: 500; transition: color 0.3s; }
nav a:hover, nav a.active { color: var(--accent-color); }

/* TLAČIDLÁ */
.btn-primary { background-color: var(--accent-color); color: white; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: bold; transition: 0.3s; border: none; cursor: pointer; display: inline-block; text-align: center; }
.btn-primary:hover { background-color: #005ce6; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 119, 255, 0.3); }
.btn-large { font-size: 1.2rem; padding: 15px 40px; }

/* SPOLOČNÉ SEKCIE (Pre odsadenie od menu) */
.page-content { padding: 120px 50px 80px; text-align: center; min-height: 70vh; }
h2.page-title { font-size: 3rem; margin-bottom: 20px; letter-spacing: -1px; }
p.page-subtitle { color: #aaa; margin-bottom: 50px; font-size: 1.2rem; }

/* VEĽKÝ NADPIS AUTOCARE (Hero) */
.hero-brand { font-size: 6rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; text-shadow: 0 5px 20px rgba(0,0,0,0.8); }

/* PÄTIČKA */
footer { background-color: #050505; padding: 60px 50px 20px; border-top: 1px solid #1a1a1a; text-align: left; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; max-width: 1200px; margin: 0 auto; margin-bottom: 40px; gap: 30px; }
.footer-col { flex: 1; min-width: 200px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; color: var(--accent-color); }
.footer-col p { margin-bottom: 10px; color: #aaa; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #222; color: #666; font-size: 0.9rem; }
.social-link { display: inline-flex; align-items: center; gap: 10px; color: white; text-decoration: none; transition: 0.3s; font-weight: bold; background: #1a1a1a; padding: 10px 20px; border-radius: 8px; margin-top: 10px; border: 1px solid #333; }
.social-link:hover { background: var(--accent-color); border-color: var(--accent-color); transform: translateY(-3px); }

/* OPRAVA PRE MOBILNÉ ZARIADENIA */
@media (max-width: 768px) {
    header { position: relative; flex-direction: column; gap: 15px; padding: 15px 20px; background: var(--bg-color); border-bottom: none; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .page-content { padding: 40px 20px; }
    h2.page-title { font-size: 2.2rem; }
    .hero-brand { font-size: 3.5rem; } /* Zmenšenie nadpisu na mobile */
    .btn-primary { width: 100%; max-width: 320px; margin: 0 auto; display: block; }
    footer { padding: 40px 20px 20px; text-align: center; }
    .footer-col { text-align: center; }
    .social-link { justify-content: center; width: 100%; max-width: 320px; }
}