* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #fff;
}


/* Header Styles */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #000;
}

.logo img {
    height: 50px;
}


/* Hamburger Menu */

.nav-toggle {
    display: none;
    /* Hidden checkbox */
}

.hamburger {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    /* White lines */
    transition: all 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #00c3ff;
}


/* Navigation Dropdown Styles */

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropbtn {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    z-index: 1;
}

.nav-dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-dropbtn:hover,
.nav-dropdown-content a:hover {
    color: #00c3ff;
}


/* Hero Section */

.hero {
    flex: 1;
    background: url('pozadieWebu.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 50px;
    position: relative;
    min-height: 80vh;
}

.hero-text-box {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}


/* Dropdown Container Styles */

.dropdown-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    align-items: flex-start;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background-color: #00d5ff;
    color: #000;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
}

.dropdown-content a:hover {
    background-color: #555;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-btn {
    background-color: #009de6;
}

.dropdown-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 10px;
}


/* Footer Styles */

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #000;
    font-size: 12px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #00e5ff;
}

.subscribe {
    text-transform: uppercase;
}


/* Mobile Styles */

@media (max-width: 768px) {
    /* Header */
    header {
        padding: 15px 20px;
        position: relative;
    }
    .hamburger {
        display: flex;
        /* Show hamburger on mobile */
    }
    nav {
        display: none;
        /* Hide nav by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000;
        padding: 20px;
        z-index: 10;
    }
    .nav-toggle:checked~nav {
        display: block;
        /* Show nav when checkbox is checked */
    }
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    nav ul li a {
        font-size: 16px;
    }
    .nav-dropdown-content {
        position: static;
        background-color: #222;
        padding-left: 20px;
    }
    /* Hero Section */
    .hero {
        padding: 20px;
        min-height: 60vh;
        /* Reduce height for mobile */
    }
    .hero h1 {
        font-size: 32px;
        /* Smaller heading */
    }
    /* Dropdown Container */
    .dropdown-container {
        flex-direction: column;
        /* Stack dropdowns vertically */
        gap: 10px;
        width: 100%;
    }
    .dropdown-btn {
        width: 100%;
        /* Full-width buttons */
        text-align: left;
    }
    .dropdown-content {
        position: static;
        /* Stack dropdown items naturally */
        width: 100%;
        background-color: #444;
    }
    .dropdown-image {
        max-width: 100%;
        /* Full width on mobile */
    }
    /* Footer */
    footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 20px;
    }
}