
        :root {
            --bg-color: #2d4262;
            --header-bg: #363237;
            --card-bg: #363237;
            --text-color: #ffefdb;
            --accent: #d09683;
            --border-color: #2a2a2a;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        body {
            margin: 0;
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        /* --- NAVIGATION --- */
        header {
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--header-bg);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-color);
        }

/*
        .logo { font-size: 1.2rem; letter-spacing: 1px; }
        .logo strong { color: var(--accent); }
*/

        .logo { 
		font-size: 1.2rem; 
		letter-spacing: 1px; 
		text-decoration: none; 
		color: var(--text-color);
		}
        .logo strong { color: var(--accent); }





        #menu-toggle, .lightbox-toggle { display: none; }

        .hamburger {
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 5px;
            width: 30px;
        }

        .hamburger span {
            display: block;
            height: 3px;
            background: var(--text-color);
            border-radius: 3px;
            transition: var(--transition);
        }


        .nav-menu {
            position: absolute; top: 45px; right: 0; background: var(--header-bg);
            padding: 1rem; list-style: none; border-radius: 8px; display: none;
            min-width: 180px; box-shadow: var(--shadow); border: 1px solid var(--border-color);
        }
		
		.nav-menu a {
			color: var(--text-color);
			text-decoration: none;
			transition: var(--transition);
		}
		
		.nav-menu a:hover,
		.nav-menu a:active,
		.nav-menu a:focus {
			color: var(--accent);
		}



/*
        .nav-menu {
            position: absolute;
            top: 45px;
            right: 0;
            background: var(--header-bg);
            padding: 1rem;
            list-style: none;
            border-radius: 8px;
            display: none;
            min-width: 180px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }

        .nav-menu li { margin: 10px 0; }
        .nav-menu a { color: var(--text-color); text-decoration: none; }
        .nav-menu a:hover { color: var(--accent); }
*/

        #menu-toggle:checked ~ .nav-menu { display: block; }
        #menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        #menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
        #menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- HERO TEXT --- */
        .intro-section {
            padding: 50px 5% 20px;
            max-width: 800px;
            margin: 0 auto;
/*            text-align: left;     */
        }

     /*   .intro-section h1 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 20px; }   */
		.intro-section h1 { font-size: clamp(1.8rem, 3vw, 2rem); margin-bottom: 20px; 
			 text-align: center;
		}
        .intro-section p { font-size: clamp(1rem, 2vw, 1.2rem); color: #ffefdb; line-height: 1.6; 
			 text-align: left;
		}



        /* --- GALERIE --- */
        .gallery {
            display: grid;
            grid-template-columns: 1fr;
 /*           gap: 30px;    */
			gap: 80px 80px;
            padding: 40px 5%;
            max-width: 900px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .gallery { grid-template-columns: 1fr 1fr; }
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 12px;
            background: var(--card-bg);
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }

        .img-container {
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .image-title {
            padding: 15px;
            font-size: 0.95rem;
            font-weight: 500;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

        /* --- LIGHTBOX (Checkbox-Hack) --- */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(54, 50, 55, 0.70);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }


        .lightbox-toggle:checked + .lightbox {
            display: flex;
        }


        .lightbox img {
            max-width: 90%;
            max-height: 85%;
            object-fit: contain;
            border-radius: 4px;
            box-shadow: 0 0 40px rgba(0,0,0,0.8);
            pointer-events: none;
		}



        .close-area {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: zoom-out;
        }

        .close-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2rem;
            color: #fff;
            pointer-events: none;
        }
        footer {
            padding: 40px 5%;
            background: var(--header-bg);
            border-top: 1px solid var(--border-color);
            text-align: center;
            margin-top: 60px;
        }

        footer a { color: var(--accent); text-decoration: none; font-size: 0.9rem; }