* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary: #50b8a2; --primary-dark: #3d9684; --beige: #f5e6d3; --beige-dark: #e8d4bb; --dark: #2c3e50; --light: #fff; }

body { line-height: 1.6; color: var(--dark); background: var(--beige); }

.header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--light); padding: 40px 20px; text-align: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.back-link { display: inline-block; color: var(--beige); text-decoration: none; margin-bottom: 20px; font-size: 1.1rem; transition: transform 0.3s ease; }
.back-link:hover { color: #FFF; transform: translateX(-5px); }
h1 { font-size: 2.5rem; margin-bottom: 15px; }
h2 { font-size: 1.5rem; margin-top: 30px; margin-bottom: 15px; }
.subtitle { font-size: 1.1rem; opacity: 0.9; }
.screenshots-section { padding: 60px 20px; }

.feature-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.tag { background: var(--primary); color: var(--light); padding: 8px 16px; border-radius: 20px; font-size: 0.9rem; font-weight: 500; }
.cta-section { background: var(--light); padding: 60px 20px; text-align: center; }
.cta-button { display: inline-block; background: var(--primary); color: var(--light); padding: 16px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(80, 184, 162, 0.3); }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(80, 184, 162, 0.4); background: var(--primary-dark); }

.language-selector { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.lang-btn { background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3); color: var(--light); padding: 8px 20px; border-radius: 20px; cursor: pointer; transition: all 0.3s ease; }
.lang-btn:hover, .lang-btn.active { background: var(--beige); color: var(--dark); border-color: var(--beige); }

.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-content { position: relative; max-width: 95%; max-height: 95vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-title { color: var(--beige); font-size: 1.5rem; margin-bottom: 20px; text-align: center; padding: 0 60px; }
.lightbox-image-container { position: relative; max-width: 100%; max-height: 80vh; display: flex; align-items: center; justify-content: center; }
.lightbox-image { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; box-shadow: 0 10px 50px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: var(--light); font-size: 2.5rem; cursor: pointer; background: rgba(0,0,0,0.5); border: none; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 10001; }
.lightbox-close:hover { background: var(--primary); transform: rotate(90deg); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); border: none; color: var(--light); font-size: 2rem; cursor: pointer; padding: 20px; border-radius: 8px; transition: all 0.3s ease; z-index: 10000; }
.lightbox-nav:hover { background: var(--primary); }
.lightbox-nav.disabled { opacity: 0.3; cursor: not-allowed; }
.lightbox-nav.disabled:hover { background: rgba(0,0,0,0.5); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: var(--beige); background: rgba(0,0,0,0.5); padding: 10px 20px; border-radius: 20px; font-size: 1rem; }
/*
@media (min-width: 768px) { h1 { font-size: 3rem; } .menu-item { padding: 25px 30px; } .lightbox-title { font-size: 2rem; } }
@media (max-width: 768px) { .lightbox-nav { padding: 15px; font-size: 1.5rem; } .lightbox-prev { left: 10px; } .lightbox-next { right: 10px; } .lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 2rem; } }
*/


/* ===== MENU SPECIFIEK ===== */
.screenshots-section .menu-section { margin-bottom: 20px; }
.screenshots-section .menu-section-title { font-size: 0.8rem; font-weight: bold; color: #999; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; padding-left: 5px; }
.screenshots-section .menu-item { display: flex; align-items: center; gap: 12px; padding: 12px 10px; color: #333; text-decoration: none; transition: all 0.2s; border-radius: 8px; font-size: 0.95rem; }
.screenshots-section .menu-item:hover { background: #fff5e8; cursor: pointer; }
.screenshots-section .menu-item .fa-solid { width: 20px; text-align: center; color: #43a28e; font-size: 1.1rem; }
.screenshots-section .menu-item.disabled { opacity: 0.4; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
}
