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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
header {
    background: #f5f1e8;
    color: #333;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.language-switcher .flag {
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: grayscale(70%);
    line-height: 1;
    display: inline-block;
}

.language-switcher .flag img {
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 30px;
    object-fit: cover;
}

.language-switcher .flag:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.language-switcher .flag.active {
    opacity: 1;
    filter: grayscale(0%);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 0.5rem;
}

.main-logo {
    max-width: 300px;
    height: auto;
    max-height: 80px;
    display: inline-block;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1rem;
    opacity: 0.7;
    color: #5b3517;
}

header a {
    color: #5b3517;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

header a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Main Navigation */
.main-nav {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    color: #5b3517;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: rgba(91, 53, 23, 0.08);
}

.main-nav a:hover {
    background: rgba(91, 53, 23, 0.15);
    text-decoration: none;
    opacity: 1;
}

.main-nav a.active {
    background: rgba(91, 53, 23, 0.2);
    font-weight: 700;
}

.main-nav a.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.main-nav a.coming-soon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav .badge {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

/* Map Container */
#map {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #ddd;
}

/* Location Detail Page */
.location-detail {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

#location-content h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

/* Location Detail Image */
.location-detail-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 1.5rem 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
    overflow: hidden;
}

.location-detail-image-wrapper:has(img[src]:not([src=""])) {
    animation: none;
    background: none;
}

.location-detail-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-detail-image.error-image {
    object-fit: contain;
    padding: 40px;
    background: #f5f5f5;
    max-height: 300px;
}

.image-credit {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0 0 8px 8px;
    text-align: right;
}

/* Photo Gallery Styles */
.photo-gallery-section {
    margin: 2rem 0;
    position: relative;
    width: 100%;
    max-width: 800px;
}

.gallery-main-image {
    position: relative;
    margin-bottom: 1rem;
}

.gallery-main-photo {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #f5f5f5;
    display: block;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #555;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.gallery-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    margin-bottom: 1rem;
    scrollbar-width: thin;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.gallery-thumbnail {
    min-width: 100px;
    height: 80px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-thumbnail.active {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1rem;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.gallery-nav-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.gallery-nav-btn:active {
    transform: scale(0.95);
}

#location-content .description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Social Sharing Section */
.social-sharing {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
}

.social-sharing h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.share-btn svg {
    flex-shrink: 0;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #0d8bd9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

.share-btn.viber {
    background: #7360f2;
}

.share-btn.viber:hover {
    background: #5a4bc9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(115, 96, 242, 0.4);
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.share-btn.copy-link {
    background: #6c757d;
}

.share-btn.copy-link:hover {
    background: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.embed-section {
    margin-top: 0.75rem;
}

.embed-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.embed-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.embed-code-container {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.embed-code-container textarea {
    width: 100%;
    min-height: 80px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    resize: vertical;
    margin-bottom: 8px;
}

.copy-embed-btn {
    padding: 6px 12px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-embed-btn:hover {
    background: #5568d3;
}

@media (max-width: 768px) {
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

#location-content .coordinates {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #667eea;
    margin-bottom: 1.5rem;
}

#location-content .coordinates h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

#location-content .coordinates p {
    font-family: 'Courier New', monospace;
    color: #666;
}

#location-content .images {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

#location-content .images h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.no-images {
    text-align: center;
    padding: 2rem 1rem;
}

.no-images p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Photo Submission Options */
.photo-submit-options {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.photo-submit-options h4 {
    text-align: center;
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Photo Upload Form */
.photo-upload-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.upload-drop-zone {
    border: 3px dashed #667eea;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(102, 126, 234, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-drop-zone:hover,
.upload-drop-zone.drag-over {
    background: rgba(102, 126, 234, 0.1);
    border-color: #5568d3;
}

.upload-drop-zone svg {
    color: #667eea;
}

.drop-text {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.choose-file-btn {
    padding: 10px 24px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.choose-file-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

#preview-container {
    position: relative;
    margin: 1rem 0;
    text-align: center;
}

#preview-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.remove-photo-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.remove-photo-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.form-group {
    margin: 1.5rem 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-photo-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-photo-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-photo-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.upload-status, .submit-status {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.upload-status.success, .submit-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.upload-status.error, .submit-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.upload-note {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.email-btn {
    background: #667eea;
    color: white;
}

.email-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Divider */
.submit-divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #999;
    font-size: 0.9rem;
    position: relative;
}

.submit-divider::before,
.submit-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.submit-divider::before {
    left: 0;
}

.submit-divider::after {
    right: 0;
}

/* Email option */
.submit-email-option {
    text-align: center;
}

.submit-email-option .submit-btn {
    margin-bottom: 0.5rem;
}

.email-note {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .submit-quick-buttons {
        flex-direction: column;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .photo-submit-options {
        padding: 0 0.5rem;
    }
}

.loading {
    text-align: center;
    font-size: 1.2rem;
    padding: 3rem;
    color: #667eea;
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #f5c6cb;
}

/* Leaflet Popup Customization */
.leaflet-popup-content {
    margin: 13px 19px;
    line-height: 1.6;
}

.leaflet-popup-content b {
    color: #667eea;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.leaflet-popup-content a {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.leaflet-popup-content a:hover {
    background: #764ba2;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 0.9rem;
    margin-top: 2rem;
}

footer p {
    margin: 0.5rem 0;
}

.footer-cross {
    font-size: 2.5rem;
    color: #002eff;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        padding: 1rem 0;
    }
    
    header h1 {
        font-size: 1.3rem;
        padding: 0 70px; /* Space for flags */
    }
    
    header p {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    /* Language switcher - make flags smaller on mobile */
    .language-switcher {
        top: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .language-switcher .flag img {
        width: 28px;
        height: 21px;
    }
    
    /* Logo smaller on mobile */
    .main-logo {
        max-width: 200px;
        max-height: 60px;
    }
    
    /* Navigation more compact */
    .main-nav {
        gap: 8px;
        margin-top: 10px;
    }
    
    .main-nav a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    /* Main content padding */
    main {
        margin: 1.5rem auto;
        padding: 0 15px;
    }
    
    /* Map height adjusted */
    #map {
        height: 400px;
    }
    
    .location-detail {
        padding: 1rem;
    }
    
    #location-content h2 {
        font-size: 1.5rem;
    }
    
    /* Page content */
    .page-content {
        padding: 1.5rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    .page-content h3 {
        font-size: 1.2rem;
    }
}

/* Category Legend */
.legend {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.8;
    max-width: 250px;
}

.legend h4 {
    margin: 0 0 10px 0;
    color: #667eea;
    font-size: 1.1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 5px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 0.9rem;
}

.legend-color {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

/* Category Badge */
.category-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 18px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 12px 0 20px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Custom Marker */
.custom-marker {
    background: transparent;
    border: none;
}

/* Category Filters */
.search-bar {
    background: white;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-bar input[type="text"] {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.search-bar input[type="text"]:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-bar input[type="text"]::placeholder {
    color: #999;
}

/* Statistics Dashboard */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    padding: 0;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-card-wide {
    grid-column: span 2;
}

.stat-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recent-list {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.recent-list a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.recent-list a:hover {
    text-decoration: underline;
}

.status-stats {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-stat {
    font-size: 0.95rem;
    color: #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-stat strong {
    color: #667eea;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .stats-dashboard {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 15px;
        gap: 12px;
    }
    
    .stat-card-wide {
        grid-column: span 1;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .recent-list {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .status-stats {
        gap: 6px;
    }
    
    .status-stat {
        font-size: 0.85rem;
    }
    
    .status-stat strong {
        font-size: 1rem;
    }
}

/* Search Container */
.search-container {
    background: white;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-icon {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #667eea;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 10px;
    font-size: 1rem;
    outline: none;
    color: #333;
}

.search-box input::placeholder {
    color: #999;
}

.search-count {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .search-box input {
        font-size: 0.9rem;
        padding: 10px 8px;
    }
    
    .search-count {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

/* Unified Filters Container */
.filters-container {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.filters-header h3 {
    margin: 0;
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 600;
}

.filter-actions {
    display: flex;
    gap: 8px;
}

.filter-action-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    color: #667eea;
    font-weight: 500;
    transition: all 0.2s ease;
}

.filter-action-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.filter-action-btn:active {
    transform: scale(0.98);
}

/* Filter Sections */
.filter-section {
    margin-bottom: 15px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section-title {
    margin: 0 0 12px 0;
    color: #555;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    margin: 20px 0;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-checkbox {
    display: inline-block;
    cursor: pointer;
    user-select: none;
}

.filter-checkbox input[type="checkbox"] {
    display: none;
}

.filter-checkbox span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 18px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.filter-checkbox input[type="checkbox"]:checked + span {
    opacity: 1;
}

.filter-checkbox input[type="checkbox"]:not(:checked) + span {
    opacity: 0.3;
    filter: grayscale(100%);
}

@media (max-width: 768px) {
    .filter-options {
        gap: 6px;
    }
    
    .filter-checkbox span {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .filters-container {
        padding: 15px;
    }
    
    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .filter-actions {
        width: 100%;
    }
    
    .filter-action-btn {
        flex: 1;
        font-size: 0.8rem;
        padding: 8px 10px;
    }
    
    .filters-header h3 {
        font-size: 1.05rem;
    }
    
    .filter-section-title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .filter-section {
        margin-bottom: 12px;
    }
}

/* Page Content */
.page-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-content h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

.page-content h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.page-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Locations Grid (List Page) */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.location-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Image wrapper with loading animation */
.location-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.location-card-image-wrapper:has(img[src]:not([src=""])) {
    animation: none;
    background: none;
}

/* Loading progress indicator */
.image-loading-progress {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    z-index: 2;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    display: inline-block;
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    content-visibility: auto;
    contain: layout style paint;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card-image.error-image {
    object-fit: contain;
    padding: 20px;
    background: #f5f5f5;
}

.location-card-header {
    padding: 1.5rem;
    color: white;
}

.location-card-header h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
    color: white;
    width: 100%;
}

.location-card-header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-card-header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.category-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fbbf24;
}

.status-planned {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #3b82f6;
}

.status-in-progress {
    background-color: #fce7f3;
    color: #9f1239;
    border: 1px solid #ec4899;
}

.status-completed {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.location-card-body {
    position: relative;
    padding: 1.5rem;
    padding-bottom: 4.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.location-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
}

.details-link {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.6rem 1.2rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.details-link:hover {
    background: #764ba2;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.contact-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.contact-item h3 {
    margin-top: 0;
    color: #667eea;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-section {
    margin-top: 3rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background: #667eea;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #764ba2;
}

/* About Page */
.about-content {
    max-width: 800px;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #888;
    font-size: 1.1rem;
}

/* Suggest Page */
.suggest-page {
    max-width: 800px;
    margin: 0 auto;
}

.suggest-intro {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.suggest-intro p {
    margin-bottom: 0.5rem;
}

.suggest-intro p:last-child {
    margin-bottom: 0;
}

.suggest-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.suggest-form .form-group {
    margin-bottom: 1.5rem;
}

.suggest-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.suggest-form input[type="text"],
.suggest-form input[type="number"],
.suggest-form input[type="email"],
.suggest-form input[type="url"],
.suggest-form input[type="file"],
.suggest-form select,
.suggest-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.suggest-form input[type="file"] {
    padding: 0.6rem;
    cursor: pointer;
}

.suggest-form input:focus,
.suggest-form select:focus,
.suggest-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.suggest-form small {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: #888;
}

.suggest-form small a {
    color: #667eea;
    text-decoration: none;
}

.suggest-form small a:hover {
    text-decoration: underline;
}

.suggest-form .submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.suggest-note {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.suggest-note h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.suggest-note ul {
    margin-left: 1.5rem;
}

.suggest-note ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.suggest-note a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.suggest-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .suggest-form {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        gap: 10px;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* Loading Indicator */
.loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-indicator p {
    margin: 0;
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Error Message */
.error-message {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #fee2e2;
    color: #991b1b;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 2px solid #f87171;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 90%;
    text-align: center;
    font-weight: 600;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #667eea;
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #764ba2;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 90px;
        right: 20px;
    }
    
    .error-message {
        top: 80px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==================== NEWS PAGE STYLES ==================== */

.news-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.news-page h2 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.news-intro {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* News Filters */
.news-filters {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-filters .search-box {
    margin-bottom: 1.5rem;
}

.tag-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.tag-filter-label {
    font-weight: 600;
    color: #667eea;
    margin-right: 0.5rem;
}

.tag-filter-btn {
    background: #f0f0f0;
    border: 2px solid transparent;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.tag-filter-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.tag-filter-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.tag-filter-btn.clear-tags {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.tag-filter-btn.clear-tags:hover {
    background: #c82333;
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.news-header h3 {
    margin-bottom: 0.5rem;
}

.news-header h3 a {
    color: #667eea;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.news-header h3 a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-summary {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-locations {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.news-tag {
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 500;
}

.news-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.no-results {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    color: #666;
}

/* Related News on Location Page */
.related-news {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

.related-news h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.related-news-item {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-news-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.related-news-item:last-child {
    margin-bottom: 0;
}

.related-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.related-news-header h4 {
    flex: 1;
    margin: 0;
}

.related-news-header h4 a {
    color: #667eea;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.related-news-header h4 a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.related-news-date {
    color: #888;
    font-size: 0.85rem;
    white-space: nowrap;
}

.related-news-summary {
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.related-news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.related-news-source {
    color: #888;
    font-size: 0.85rem;
}

.related-news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.news-tag-small {
    background: #e8eaf6;
    color: #667eea;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.view-all-news {
    text-align: center;
    margin-top: 1.5rem;
}

.view-all-news a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.view-all-news a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .news-page {
        padding: 1rem;
    }
    
    .news-page h2 {
        font-size: 1.5rem;
    }
    
    .news-item {
        padding: 1.5rem;
    }
    
    .news-header h3 a {
        font-size: 1.2rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .related-news {
        padding: 1rem;
    }
    
    .related-news-item {
        padding: 1rem;
    }
    
    .related-news-header {
        flex-direction: column;
    }
    
    .related-news-date {
        white-space: normal;
    }
}

/* Footer Styles */
footer {
    background: #f5f1e8;
    color: #5b3517;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 3px solid #5b3517;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

footer a {
    color: #5b3517;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

footer .footer-cross {
    font-size: 2.5rem;
    margin-top: 1rem;
    opacity: 0.6;
    color: #002eff;
}

/* Mobile responsive for footer */
@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0.75rem;
        margin-top: 2rem;
    }
    
    footer p {
        font-size: 0.8rem;
        margin: 0.3rem 0;
        line-height: 1.4;
    }
    
    footer .footer-cross {
        font-size: 2rem;
        margin-top: 0.75rem;
    }
}

/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(91, 53, 23, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideUp 0.4s ease;
    transition: opacity 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #f5f1e8;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #f5f1e8;
    color: #5b3517;
}

.cookie-btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid #f5f1e8;
}

.cookie-btn-decline:hover {
    background: rgba(245, 241, 232, 0.1);
}

@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}
