/* Main Custom Styles for tlumacz-literatury.pl */
/* Colors: Graphite (primary) #3D3D3D, Copper (accent) #B87333 */

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

body {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #3D3D3D !important;
    background-color: #f8f8f8 !important;
}

/* Navigation Styles */
.nav-menu li {
    margin-bottom: 0 !important;
    list-style: none !important;
}

.nav-menu li::before,
.nav-menu li::after {
    display: none !important;
    content: none !important;
}

nav ul,
nav ol,
footer ul,
footer ol {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

nav ul li::before,
nav ul li::after,
nav ol li::before,
nav ol li::after,
footer ul li::before,
footer ul li::after,
footer ol li::before,
footer ol li::after {
    display: none !important;
    content: none !important;
}

/* Header */
header {
    background-color: #3D3D3D !important;
    padding: 1rem 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

.logo-container {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.logo-container img {
    box-shadow: none !important;
    border: none !important;
}

.brand-name {
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

/* Navigation Links */
.nav-link {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    transition: color 0.3s ease !important;
}

.nav-link:hover {
    color: #B87333 !important;
}

/* CTA Button */
.cta-btn {
    background-color: #B87333 !important;
    color: #fff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    display: inline-block !important;
    transition: background-color 0.3s ease !important;
}

.cta-btn:hover {
    background-color: #9A5F2A !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3D3D3D 0%, #2a2a2a 100%) !important;
    padding: 4rem 0 !important;
    color: #fff !important;
}

.hero-section h1 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    color: #fff !important;
}

.hero-section p {
    font-size: 1.125rem !important;
    color: #e0e0e0 !important;
    margin-bottom: 2rem !important;
    line-height: 1.8 !important;
}

.hero-image {
    border-radius: 12px !important;
    max-width: 100% !important;
    height: auto !important;
}

/* Sections */
section {
    padding: 4rem 0 !important;
}

section:nth-child(even) {
    background-color: #fff !important;
}

section:nth-child(odd) {
    background-color: #f8f8f8 !important;
}

/* Headings */
h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #3D3D3D !important;
    margin-bottom: 1.5rem !important;
}

h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #3D3D3D !important;
    margin-bottom: 1rem !important;
    margin-top: 2rem !important;
}

/* Content Lists - Styled with Copper Markers */
.content-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.5rem 0 !important;
}

.content-list li {
    position: relative !important;
    padding-left: 2rem !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

.content-list li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.5rem !important;
    width: 10px !important;
    height: 10px !important;
    background-color: #B87333 !important;
    border-radius: 2px !important;
    transform: rotate(45deg) !important;
}

/* Ordered Lists */
.ordered-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.5rem 0 !important;
    counter-reset: item !important;
}

.ordered-list li {
    position: relative !important;
    padding-left: 3rem !important;
    margin-bottom: 1.5rem !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

.ordered-list li::before {
    counter-increment: item !important;
    content: counter(item) !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 2rem !important;
    height: 2rem !important;
    background-color: #B87333 !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
}

/* Cards */
.card {
    background-color: #fff !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    margin-bottom: 1.5rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.card-accent {
    border-left: 4px solid #B87333 !important;
}

/* Images */
.content-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    margin: 1.5rem 0 !important;
}

.section-image {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
}

/* Tables */
.table-container {
    overflow-x: auto !important;
    margin: 1.5rem 0 !important;
    border-radius: 12px !important;
}

table {
    width: 100% !important;
    border-collapse: collapse !important;
    min-width: 600px !important;
}

th {
    background-color: #3D3D3D !important;
    color: #fff !important;
    padding: 1rem !important;
    text-align: left !important;
    font-weight: 600 !important;
}

td {
    padding: 1rem !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

tr:hover {
    background-color: #f5f5f5 !important;
}

/* Footer */
footer {
    background-color: #3D3D3D !important;
    color: #e0e0e0 !important;
    padding: 3rem 0 1.5rem !important;
}

footer a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

footer a:hover {
    color: #B87333 !important;
}

footer p {
    color: #e0e0e0 !important;
    font-size: 0.875rem !important;
}

.footer-heading {
    color: #fff !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

/* Icons */
.fa, .fas, .far, .fab {
    color: #B87333 !important;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none !important;
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }

    .nav-menu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background-color: #3D3D3D !important;
        flex-direction: column !important;
        padding: 1rem !important;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        margin: 0.5rem 0 !important;
    }

    .hero-section h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }
}

/* Utility Classes */
.text-copper {
    color: #B87333 !important;
}

.bg-copper {
    background-color: #B87333 !important;
}

.text-graphite {
    color: #3D3D3D !important;
}

.bg-graphite {
    background-color: #3D3D3D !important;
}
