/* Türkiye Doğa ve Açık Hava Rehberi - Ana Stil Dosyası */

:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2a;
    --accent-color: #6b9e3d;
    --text-color: #333;
    --light-bg: #f5f7f0;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 12px rgba(0,0,0,0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(to bottom, #f9fbf7 0%, #ffffff 100%);
    background-attachment: fixed;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1a3d0a 0%, #2d5016 50%, #1a3d0a 100%);
    color: var(--white);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.logo {
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--white);
    white-space: nowrap;
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.logo:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

/* Navigation */
.main-nav {
    flex: 1;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.nav-list > li > a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list > li > a:hover::after {
    width: 80%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -5px;
    right: -5px;
    height: 20px;
    background: transparent;
    z-index: 99;
    pointer-events: auto;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    text-align: left;
}

.dropdown-toggle:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.dropdown-toggle:hover::after {
    width: 80%;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    min-width: 260px;
    max-width: 320px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 0.75rem 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    z-index: 100;
    border: 2px solid rgba(45,80,22,0.15);
    display: block;
    pointer-events: none;
    margin-left: -5px;
    margin-right: -5px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    top: calc(100% + 8px);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.9rem 1.75rem;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, var(--light-bg) 0%, rgba(107,158,61,0.05) 100%);
    border-left-color: var(--accent-color);
    padding-left: 2rem;
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    width: 36px;
    height: 36px;
    justify-content: center;
    z-index: 10000;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}


.hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 30%, #6b9e3d 60%, #8bc34a 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 4rem;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    line-height: 1.9;
    font-weight: 400;
}

/* Sections */
.section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 0.75rem;
    position: relative;
    padding-left: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title::before {
    content: '🌿';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(107,158,61,0.3));
}

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

.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 6px 20px rgba(45,80,22,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 6px solid var(--accent-color);
    overflow: hidden;
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #fafbf8 100%);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(45,80,22,0.3);
    border-left-color: var(--secondary-color);
    border-left-width: 8px;
    background: linear-gradient(to bottom, #ffffff 0%, #f5f7f0 100%);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    line-height: 1.3;
    position: relative;
    padding-left: 1.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.card h3::before {
    content: '🌲';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    opacity: 0.6;
}

.card p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.9;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.card-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(135deg, rgba(74,124,42,0.1), rgba(107,158,61,0.1));
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.card-link:hover {
    background: linear-gradient(135deg, rgba(74,124,42,0.2), rgba(107,158,61,0.2));
    transform: translateX(5px) translateY(-2px);
    color: var(--primary-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(74,124,42,0.3);
}

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    background: linear-gradient(135deg, #4a7c2a, #6b9e3d);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.card:hover .card-image {
    transform: scale(1.1);
}

.card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .card-image-wrapper::after {
    opacity: 1;
}

/* Content Blocks */
.content-block {
    margin-bottom: 2rem;
}

.content-block h1 {
    color: var(--primary-color);
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.8px;
    text-shadow: 1px 1px 3px rgba(45,80,22,0.15);
}

.content-block h2 {
    color: var(--primary-color);
    font-size: 2.1rem;
    margin-bottom: 1.75rem;
    margin-top: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 4px solid var(--accent-color);
    position: relative;
    letter-spacing: -0.5px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.content-block h3 {
    color: var(--secondary-color);
    font-size: 1.7rem;
    margin-bottom: 1.25rem;
    margin-top: 2rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 1.5rem;
}

.content-block h3::before {
    content: '🌳';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.7;
}

.content-block p {
    margin-bottom: 1.75rem;
    text-align: justify;
    line-height: 2;
    font-size: 1.15rem;
    color: #444;
    letter-spacing: 0.01em;
}

.content-block ul, .content-block ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
    line-height: 2.1;
    padding-left: 1rem;
    padding-right: 1rem;
}

.content-block li {
    margin-bottom: 1.25rem;
    line-height: 2.1;
    position: relative;
    padding-left: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding-right: 0.5rem;
}

.content-block li:hover {
    background: rgba(107,158,61,0.05);
    padding-left: 1rem;
    transform: translateX(5px);
}

.content-block ul li::marker {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.content-block ul li::before {
    content: '🌿';
    position: absolute;
    left: -1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    filter: drop-shadow(0 1px 3px rgba(107,158,61,0.4));
    transition: transform 0.3s ease;
}

.content-block ul li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

.content-block strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Links - Beautiful Styling */
a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:not(.card-link):not(.btn):not(.logo):not(.breadcrumbs a):not(.footer-section a):not(.nav-list a):not(.dropdown-menu a) {
    color: var(--secondary-color);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

a:not(.card-link):not(.btn):not(.logo):not(.breadcrumbs a):not(.footer-section a):not(.nav-list a):not(.dropdown-menu a):hover {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

/* Content Images */
.content-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 20px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 8px 25px rgba(45,80,22,0.18);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(107,158,61,0.2);
}

.content-image:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 35px rgba(45,80,22,0.25);
    border-color: rgba(107,158,61,0.4);
}

.image-text-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin: 3rem 0;
    flex-wrap: wrap;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(74,124,42,0.06), rgba(107,158,61,0.06));
    border-radius: 20px;
    border-left: 6px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(45,80,22,0.1);
    position: relative;
    overflow: hidden;
}

.image-text-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107,158,61,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.image-text-wrapper img {
    flex: 0 0 350px;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(45,80,22,0.15);
    transition: transform 0.4s ease;
}

.image-text-wrapper:hover img {
    transform: scale(1.03);
}

.image-text-wrapper .text-content {
    flex: 1;
    min-width: 250px;
}

@media (max-width: 768px) {
    .image-text-wrapper {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .image-text-wrapper img {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .image-text-wrapper .text-content {
        width: 100%;
    }
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

table th, table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
}

table tr:hover {
    background: var(--light-bg);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(107,158,61,0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
}

.form-error {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

.btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(45,80,22,0.2);
    font-weight: 600;
}

.btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45,80,22,0.3);
}

.btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
    max-width: 400px;
}

.toast.error {
    background-color: #d32f2f;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner-buttons button {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-banner-buttons .btn-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-banner-buttons .btn-reject {
    background-color: #666;
    color: var(--white);
}

.cookie-banner-buttons .btn-settings {
    background-color: var(--light-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.cookie-banner-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cookie-settings {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cookie-settings.active {
    display: block;
}

.cookie-category {
    margin-bottom: 1rem;
}

.cookie-category h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cookie-category label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cookie-category.disabled {
    opacity: 0.6;
}

.cookie-category.disabled input {
    cursor: not-allowed;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a3d0a 0%, #2d5016 50%, #1a3d0a 100%);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 3rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-left: -0.5rem;
}

.footer-section a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--accent-color);
    background: rgba(255,255,255,0.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    padding: 0.75rem 0;
}

.breadcrumbs a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    position: relative;
}

.breadcrumbs a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    transform: translateX(3px);
}

.breadcrumbs span {
    color: #999;
    margin: 0 0.5rem;
}

/* Sitemap */
.sitemap-list {
    list-style: none;
    column-count: 3;
    column-gap: 2rem;
}

.sitemap-list li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.sitemap-list a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.sitemap-list a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-list {
        gap: 0.3rem;
    }
    
    .nav-list > li > a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .nav-list > li > .dropdown-toggle {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
    }

    .logo {
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 10000;
    }
    
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
    
    main {
        margin-top: 57px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #1a3d0a 0%, #2d5016 50%, #1a3d0a 100%);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        padding: 4rem 0 1rem 0;
        overflow-y: auto;
        z-index: 9999;
        width: 100%;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 0;
    }

    .nav-list > li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-list > li > a {
        padding: 1rem 1.5rem;
        display: block;
    }

    .nav-list > li > .dropdown-toggle {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
    }

    .has-dropdown.active .dropdown-arrow {
        transform: rotate(180deg) !important;
        transition: transform 0.3s ease;
    }
    
    .has-dropdown:not(.active) .dropdown-arrow {
        transform: rotate(0deg) !important;
        transition: transform 0.3s ease;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        margin: 0;
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        pointer-events: none;
    }

    .has-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 500px;
        padding: 0.5rem 0;
        pointer-events: auto;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .dropdown-menu a {
        padding-left: 2.5rem;
        color: rgba(255,255,255,0.9);
    }

    .dropdown-menu a:hover {
        background: rgba(255,255,255,0.1);
        border-left-color: var(--accent-color);
    }

    .hero {
        padding: 3rem 1.25rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.7;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-banner-buttons button {
        width: 100%;
    }

    .sitemap-list {
        column-count: 1;
    }

    .content-block h1 {
        font-size: 1.8rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .content-block h3 {
        font-size: 1.2rem;
    }

    .content-block p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2.5rem 1.5rem;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.7;
    }

    .section-title {
        font-size: 1.5rem;
        padding-left: 2rem;
    }

    .section-title::before {
        font-size: 1.3rem;
    }
    
    .content-block h1 {
        font-size: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.7rem;
    }
    
    .content-block h3 {
        font-size: 1.4rem;
        padding-left: 1.25rem;
    }
    
    .content-block h3::before {
        font-size: 1rem;
    }
    
    .card h3 {
        font-size: 1.3rem;
        padding-left: 1.5rem;
    }
    
    .card h3::before {
        font-size: 0.9rem;
    }
}
