* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid hsl(113, 100%, 21%);
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: hsl(113, 100%, 21%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li a {
    color: #fff; 
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    transition: color 0.3s ease, background-color 0.3s ease; 
    border-radius: 4px; 
}

.nav-links li a:hover {
    color: #fff !important; 
    background-color: hsl(113, 100%, 21%); 
}

.nav-links li a.active {
    color: hsl(113, 100%, 45%) !important;
    font-weight: bold;
}

.nav-links li a.active:hover {
    color: #fff !important;
    background-color: hsl(113, 100%, 15%); 
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('bghome.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    color: hsl(113, 100%, 21%);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; 
    font-size: 20px;
    color: hsl(0, 0%, 100%);
    margin-bottom: 30px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');

.btn {
    display: inline-block;
    background-color: hsl(113, 100%, 21%);
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: hsl(113, 100%, 31%);
    transform: translateY(-3px);
}

.page-content {
    padding-top: 60px;
    text-align: center;
}

.page-content h1 {
    font-size: 36px;
    color: hsl(113, 100%, 21%);
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: hsl(113, 100%, 21%);
}

.service-card h3 {
    color: hsl(113, 100%, 21%);
    margin-bottom: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    filter: grayscale(30%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: hsl(113, 100%, 21%);
    margin-bottom: 15px;
    border-radius: 5px;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: hsl(113, 100%, 21%);
    outline: none;
}

.video-wrapper {
    max-width: 850px; 
    width: 100%;
    margin: 40px auto 0 auto; 
    padding: 0 10px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    border: 1px solid #333;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    background-color: #0b0b0b;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #222;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
}

/* Nastavenie pozície pre rozbaľovacie menu */
.dropdown {
    position: relative;
}

/* Malá šípka vedľa textu */
.dropdown-trigger i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

/* Skrytý rámček, ktorý sa zobrazí až po hoveri */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a; /* Tmavé pozadie rámčeka */
    border: 1px solid hsl(113, 100%, 21%); /* Zelené orámovanie */
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    z-index: 1000;
}

/* Položky vnútri rozbaleného rámčeka */
.dropdown-menu li a {
    color: #fff !important;
    padding: 10px 20px !important;
    display: block;
    background: transparent !important; /* Zrušíme globálny hover efekt */
    border-bottom: none !important;
}

/* EFEKT: Keď prejdeš kurzorom po položke v rámčeku */
.dropdown-menu li a:hover {
    background-color: hsl(113, 100%, 21%) !important; /* Zafarbí sa na zeleno */
    color: #fff !important;
}

/* ZOBRAZENIE: Keď prejdeš myšou cez "Moja zbierka", rámček sa ukáže */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Otočenie šípky pri hoveri */
.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}