/* Main CSS for fishers-paradise.de */
/* Forest Green Primary: #228B22 | Amber Accent: #f59e0b */

/* Import Be Vietnam Pro font */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #1f2937 !important;
    background-color: #f9fafb !important;
}

/* CRITICAL: Navigation menu list reset */
.nav-menu li {
    margin-bottom: 0 !important;
}

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

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

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

/* Footer list reset */
footer ul,
footer ol {
    list-style: none !important;
}

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

/* Header & Navigation */
.site-header {
    background: linear-gradient(135deg, #228B22 0%, #1a6b1a 100%) !important;
    padding: 1rem 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.nav-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

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

.logo-container img {
    width: 50px !important;
    height: 50px !important;
    box-shadow: none !important;
}

.brand-name {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    list-style: none !important;
}

.nav-menu a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    padding: 0.5rem 0.75rem !important;
    transition: color 0.3s ease !important;
}

.nav-menu a:hover {
    color: #f59e0b !important;
}

.cta-btn {
    background: transparent !important;
    border: 2px solid #f59e0b !important;
    color: #f59e0b !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.cta-btn:hover {
    background: #f59e0b !important;
    color: #1a6b1a !important;
}

/* Mobile Navigation */
.mobile-toggle {
    display: none !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
}

.mobile-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: #ffffff !important;
    margin: 5px 0 !important;
    transition: 0.3s !important;
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: block !important;
    }

    .nav-menu {
        display: none !important;
        width: 100% !important;
        flex-direction: column !important;
        padding: 1rem 0 !important;
        gap: 0.5rem !important;
    }

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

    .nav-menu li {
        width: 100% !important;
        text-align: center !important;
    }

    .nav-menu a {
        display: block !important;
        padding: 0.75rem !important;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #228B22 0%, #1a6b1a 100%) !important;
    padding: 4rem 1.5rem !important;
    color: #ffffff !important;
}

.hero-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

.hero-content h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    color: #ffffff !important;
}

.hero-content p {
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem !important;
    color: rgba(255,255,255,0.95) !important;
}

.hero-btn {
    background: transparent !important;
    border: 2px solid #f59e0b !important;
    color: #f59e0b !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.hero-btn:hover {
    background: #f59e0b !important;
    color: #1a6b1a !important;
}

.hero-image {
    text-align: center !important;
}

.hero-image img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-image {
        order: -1 !important;
    }
}

/* Table of Contents */
.toc-section {
    padding: 3rem 1.5rem !important;
    background: #ffffff !important;
}

.toc-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    justify-content: center !important;
}

.toc-btn {
    background: transparent !important;
    border: 2px solid #228B22 !important;
    color: #228B22 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
}

.toc-btn:hover {
    background: #228B22 !important;
    color: #ffffff !important;
}

/* Main Content */
.main-content {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 3rem 1.5rem !important;
}

/* Sections */
.content-section {
    margin-bottom: 4rem !important;
    padding: 2.5rem !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}

.content-section h2 {
    font-size: 1.875rem !important;
    font-weight: 700 !important;
    color: #228B22 !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 3px solid #f59e0b !important;
}

.content-section h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
}

.content-section p {
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
    color: #374151 !important;
    margin-bottom: 1.25rem !important;
}

.content-section img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    margin: 1.5rem 0 !important;
}

/* Lists with Amber Chevron Markers */
.content-section ul,
.content-section ol {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.5rem 0 !important;
}

.content-section ul li,
.content-section ol li {
    position: relative !important;
    padding-left: 1.75rem !important;
    margin-bottom: 0.875rem !important;
    font-size: 1.125rem !important;
    line-height: 1.7 !important;
}

.content-section ul li::before {
    content: '\203A' !important;
    position: absolute !important;
    left: 0 !important;
    color: #f59e0b !important;
    font-weight: bold !important;
    font-size: 1.25rem !important;
}

.content-section ol {
    counter-reset: list-counter !important;
}

.content-section ol li::before {
    counter-increment: list-counter !important;
    content: counter(list-counter) '.' !important;
    position: absolute !important;
    left: 0 !important;
    color: #f59e0b !important;
    font-weight: 700 !important;
}

/* Nested lists */
.content-section ul ul,
.content-section ol ol,
.content-section ul ol,
.content-section ol ul {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

/* Cards Grid */
.cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    margin: 2rem 0 !important;
}

.card {
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    padding: 1.5rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.card h3 {
    color: #228B22 !important;
    margin-top: 0 !important;
}

/* Tables */
.table-container {
    overflow-x: auto !important;
    margin: 2rem 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.content-section table {
    width: 100% !important;
    border-collapse: collapse !important;
    min-width: 600px !important;
    font-size: 1rem !important;
}

.content-section table th {
    background: #228B22 !important;
    color: #ffffff !important;
    padding: 1rem !important;
    text-align: left !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

.content-section table td {
    padding: 1rem !important;
    border-bottom: 1px solid #e5e7eb !important;
    color: #374151 !important;
}

.content-section table tr:nth-child(even) {
    background: #f9fafb !important;
}

.content-section table tr:hover {
    background: #f3f4f6 !important;
}

/* Bootstrap Icons */
.bi {
    color: #228B22 !important;
    font-size: 1.25rem !important;
    vertical-align: middle !important;
}

.bi-accent {
    color: #f59e0b !important;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a6b1a 0%, #145214 100%) !important;
    color: #ffffff !important;
    padding: 3rem 1.5rem 1.5rem !important;
}

.footer-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 2rem !important;
}

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

.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-col ul li {
    margin-bottom: 0.5rem !important;
}

.footer-col ul li::before,
.footer-col ul li::after {
    display: none !important;
    content: none !important;
}

.footer-col a {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-col a:hover {
    color: #f59e0b !important;
}

.footer-col p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.footer-bottom {
    max-width: 1280px !important;
    margin: 2rem auto 0 !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255,255,255,0.2) !important;
    text-align: center !important;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.9375rem !important;
}

/* Animations - Round Elements */
@keyframes pulse-round {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes wave-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.animate-pulse {
    animation: pulse-round 2s ease-in-out infinite !important;
}

.animate-float {
    animation: float 3s ease-in-out infinite !important;
}

/* Decorative Elements */
.decoration-circle {
    position: absolute !important;
    border-radius: 50% !important;
    background: rgba(245, 158, 11, 0.1) !important;
    pointer-events: none !important;
}

.wave-decoration {
    position: relative !important;
    overflow: hidden !important;
}

.wave-decoration::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 200% !important;
    height: 20px !important;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.2), transparent) !important;
    animation: wave-move 3s linear infinite !important;
}

/* Transition Effects */
a, button, .card, .cta-btn, .hero-btn, .toc-btn {
    transition: all 0.3s ease !important;
}

/* Ensure Readability */
strong {
    font-weight: 600 !important;
    color: #1f2937 !important;
}

/* Responsive Typography */
@media (max-width: 768px) {
    body {
        font-size: 16px !important;
    }

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

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

    .content-section p,
    .content-section li {
        font-size: 1rem !important;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .toc-section {
        display: none !important;
    }
}