* {
    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: #def;
}

/* Header */
header {
    background: linear-gradient(135deg, #135 0%, #258 100%);
    color: #fff;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

header.header-hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo img {
    height: 75px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 0.3rem;
    flex-wrap: nowrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

nav a:hover,
nav a.active {
    background-color: rgba(255,255,255,0.2);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
}

/* Main content */
main {
    margin-top: 86px;
    min-height: calc(100vh - 86px - 200px);
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: #135;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 3px solid #ca2;
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Hero section */
#uvod {
    text-align: center;
    padding: 0.5rem 2rem 3rem;
    background: linear-gradient(rgba(26, 58, 92, 0.4), rgba(26, 58, 92, 0.1)), url('background.jpg') center/cover;
    color: #fff;
}

#uvod .logo-large {
    width: 280px;
    height: auto;
    margin: 0 auto 0.5rem;
    display: block;
}

#uvod h2 {
    color: #fa5;
    border-bottom-color: #ca2;
    font-size: 2.5rem;
    text-shadow: 0 0 8px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,0.8), -2px -2px 4px rgba(0,0,0,0.8);
}

.motto {
    font-style: italic;
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #fb7;
    text-shadow: 0 0 8px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,0.8), -2px -2px 4px rgba(0,0,0,0.8);
}

#uvod p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,0.8), -2px -2px 4px rgba(0,0,0,0.8);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ca2;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #135;
    margin-bottom: 0.5rem;
}

/* Price list */
.price-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.price-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 400px;
}

.price-main {
    font-size: 2.5rem;
    color: #ca2;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
}

.price-breakdown {
    background: #eee;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.price-breakdown p {
    margin: 0.5rem 0;
    display: flex;
    justify-content: space-between;
}

.price-includes {
    margin-top: 0;
}

.price-includes ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.price-includes li {
    margin: 0.3rem 0;
}

.price-note {
    background: #fec;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    border-left: 4px solid #ca2;
    font-size: 0.9rem;
}

/* Regulations */
.regulations {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.regulations h3 {
    color: #135;
    margin: 1.5rem 0 0.5rem;
}

.regulations p {
    margin-bottom: 1rem;
    text-align: justify;
}

.regulations-intro {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
    user-select: none;
    transition: opacity 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #135 0%, #258 100%);
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
    color: #ca2;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ca2;
}

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

/* Responsive */
@media (max-width: 960px) {
    .header-content {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding-top: 1rem;
    }

    nav a {
        display: block;
        padding: 0.75rem 1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    #uvod h2 {
        font-size: 1.8rem;
    }

    #uvod .logo-large {
        width: 200px;
    }
}

@media (max-width: 960px) {
    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
}

@media (max-width: 500px) {
    .header-content {
        padding: 0 0.5rem;
    }

    .logo {
        gap: 0.3rem;
    }

    .logo h1 {
        font-size: 1rem;
    }

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

    .service-card {
        min-width: 0;
    }

    .price-container {
        flex-direction: column;
    }

    .price-box {
        min-width: 0;
    }

    .regulations {
        padding: 1rem;
    }
}
