/* =========================================
   STYLE.CSS - Advokátní kancelář Švarc
   Micro-site: Žaloba na výpověď Nový Jičín
   Premium UI/UX Design (Professional Law Firm)
========================================= */

:root {
    --primary-color: #1a365d;    /* Navy Blue */
    --primary-hover: #2c5282;
    --accent-color: #d1b073;     /* Elegant Gold */
    --accent-hover: #b89a60;
    --text-color: #334155;       /* Slate 700 */
    --heading-color: #0f172a;    /* Slate 900 */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

p {
    margin-bottom: 1.2rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-color);
    color: var(--bg-light);
}

.text-white {
    color: var(--bg-white) !important;
}

.text-center {
    text-align: center;
}

/* Typography Utilities */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bg-dark .section-subtitle {
    color: #cbd5e1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #991b1b; /* Strong warning red for dismissal site */
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #7f1d1d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar nav a {
    color: var(--heading-color);
    font-weight: 500;
}

.navbar nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(209, 176, 115, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(26, 54, 93, 0.08), transparent 32%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1.2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background-color: rgba(26, 54, 93, 0.08);
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 22px 40px -18px rgba(15, 23, 42, 0.35);
    object-fit: cover;
    height: 500px;
    border: 4px solid var(--bg-white);
}

.hero-logo-cover {
    position: absolute;
    left: 26px;
    bottom: 78px;
    width: 190px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-lg);
}

.hero-logo-cover-image {
    width: 100%;
    height: auto;
    filter: grayscale(1) brightness(0);
}

.hero-image-note {
    position: absolute;
    right: -18px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.hero-image-note strong {
    color: #991b1b;
    font-size: 1.3rem;
    line-height: 1.1;
}

.hero-image-note span {
    font-size: 0.92rem;
    color: var(--text-color);
}

/* Urgency Banner */
.urgency-alert {
    background-color: #fee2e2;
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.urgency-alert strong {
    color: #991b1b;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    color: var(--heading-color);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Services / Claims */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 82px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0) 100%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    position: relative;
    z-index: 1;
}

.service-icon-frame {
    width: 88px;
    height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-icon {
    height: 60px;
    width: 60px;
    object-fit: contain;
    color: var(--primary-color);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon-font {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 48;
    line-height: 1;
}

.service-icon-small {
    width: 50px;
    height: 50px;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    background-color: var(--bg-white);
    color: var(--primary-color);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.faq-content {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-left: 3px solid var(--accent-color);
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid rgba(26, 54, 93, 0.08);
}

.content-grid,
.law-grid,
.examples-grid,
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.content-card,
.law-card,
.example-card,
.checklist-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
}

.content-card h3,
.law-card h3,
.example-card h3,
.checklist-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.law-card {
    border-top: 4px solid var(--accent-color);
}

.law-tag,
.example-label {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background-color: rgba(26, 54, 93, 0.08);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.example-card {
    position: relative;
    overflow: hidden;
    border-top: 4px solid #991b1b;
}

.example-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.04), transparent 45%);
    pointer-events: none;
}

.checklist-card ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.checklist-card li {
    position: relative;
    padding-left: 1.4rem;
}

.checklist-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
}

/* Why Us */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.benefit-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.benefit-icon-glyph {
    display: inline-block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    min-height: 3.2rem;
}

.benefit-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-top: 0;
}

/* CTA Bottom */
.cta-bottom {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-col strong {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #fff;
    font-weight: 500;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar nav { display: none; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .hero-points { justify-content: center; }
    .hero-image { height: auto; max-height: none; }
    .hero-logo-cover {
        left: 18px;
        bottom: 54px;
        width: 150px;
        height: 54px;
    }
    .content-grid,
    .law-grid,
    .examples-grid,
    .checklist-grid { grid-template-columns: 1fr; }
    .hero-image-note {
        right: 16px;
        bottom: 16px;
    }
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
}
