:root {
    --primary: #FF8C00;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #f4f7f6;
    --text: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', Arial, sans-serif; font-style: normal !important; }
html { scroll-behavior: smooth; }
body { color: var(--text); background-color: white; line-height: 1.6; }

/* Modals & Lightbox */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 9999; justify-content: center; align-items: center; padding: 20px; }
.modal-content { background: white; padding: 40px; max-width: 800px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; border-radius: 5px; text-align: left; }
.img-modal { background: transparent; padding: 0; text-align: center; }
.img-modal img { max-width: 100%; max-height: 85vh; border: 3px solid var(--primary); object-fit: contain; }
.close { position: absolute; top: 15px; right: 20px; font-size: 28px; font-weight: bold; cursor: pointer; color: var(--dark); }

/* Header & Nav */
.top-bar { background: #222; color: #ffffff; padding: 10px 5%; font-size: 0.8rem; }
.top-bar-content { display: flex; justify-content: space-between; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.top-contacts a { margin-left: 20px; text-decoration: none; color: #ffffff !important; }

header { background: var(--light); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #eee; }
.brand { color: var(--dark); font-size: clamp(1rem, 4vw, 1.4rem); font-weight: 700; text-transform: uppercase; }
.orange-text { color: var(--primary); }

nav ul { list-style: none; display: flex; align-items: center; }
nav li { margin-left: 25px; }
nav a { color: #555; text-decoration: none; font-weight: 500; text-transform: uppercase; font-size: 0.75rem; }
.nav-cta { background: var(--primary); padding: 10px 20px; color: white !important; border-radius: 2px; font-weight: 700; }

/* Hero */
.hero { height: 75vh; min-height: 450px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: white; overflow: hidden; padding: 40px 20px; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: brightness(0.65); }
.hero-overlay h1 { font-size: clamp(1.8rem, 8vw, 3.5rem); font-weight: 800; text-transform: uppercase; line-height: 1.1; margin-bottom: 15px; }
.slogan { font-size: clamp(1rem, 4vw, 1.3rem); color: var(--primary); font-weight: bold; margin-bottom: 25px; }
.hero-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.btn-main, .btn-sub { padding: 15px 35px; text-decoration: none; font-weight: bold; border-radius: 2px; text-align: center; min-width: 200px; }
.btn-main { background: var(--primary); color: white; border: none; cursor: pointer; }
.btn-sub { background: rgba(255,255,255,0.15); color: white; border: 1px solid white; }

/* Sections */
.section { padding: 80px 10%; text-align: center; }
.section-title { font-size: clamp(1.5rem, 6vw, 2.3rem); margin-bottom: 50px; position: relative; padding-bottom: 15px; text-transform: uppercase; }
.section-title::after { content: ''; width: 40px; height: 3px; background: var(--primary); position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 40px 25px; border-radius: 5px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }

.gray-bg { background: var(--gray); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 3px; }

/* Kontakt */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; max-width: 1100px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; gap: 15px; }
.contact-form input, .contact-form textarea { padding: 15px; border: 1px solid #ddd; border-radius: 3px; font-size: 1rem; width: 100%; }
.contact-info { background: var(--gray); padding: 35px; border-radius: 5px; }
.info-item { margin-bottom: 20px; }
.info-item h4 { color: var(--primary); text-transform: uppercase; margin-bottom: 5px; font-size: 0.8rem; }
.info-item a { color: var(--dark); text-decoration: none; font-weight: bold; }
.vcard-btn { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 8px 15px; cursor: pointer; margin-top: 10px; }

/* Footer */
footer { background: #1a1a1a; color: #fff; padding: 50px 10%; }
.footer-box a { color: #ffffff !important; text-decoration: none; }

/* Mobile View & Menu Fix */
.nav-toggle { display: none !important; }
.nav-toggle-label { display: none; }

@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; }
    .form-group { flex-direction: column; }
    .nav-toggle-label { display: block; width: 30px; height: 20px; position: relative; cursor: pointer; z-index: 1001; }
    .nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after { background: var(--dark); height: 3px; width: 100%; position: absolute; }
    .nav-toggle-label span::before { content: ''; top: -8px; }
    .nav-toggle-label span::after { content: ''; top: 8px; }
    nav { position: absolute; top: 100%; left: 0; width: 100%; background: white; transform: scale(1,0); transform-origin: top; transition: 0.3s; }
    nav ul { flex-direction: column; padding: 25px; }
    nav li { margin: 0; width: 100%; }
    nav a { display: block; padding: 15px 0; border-bottom: 1px solid #f0f0f0; }
    .nav-toggle:checked ~ nav { transform: scale(1,1); }
}
