/* Body settings */
body {
    font-family: "Silkscreen", sans-serif;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.9) url(cocksucking-final.png);
    background-size: cover;
}

/* Header and Navigation */
header {
    background-color: transparent;
    padding: 5px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
}

.logo img {
    width: 100px; 
    height: auto; 
    padding-left: 15%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 60px;
    padding-right: 3%;
}

.nav-links li a {
    position: relative;
    color: whitesmoke;
    font-size: 21px;
    text-transform: uppercase;
    padding: 5px 0;
    text-decoration: none;
}

/* Responsive Navigation for smaller screens */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: white;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 20px;
        background-color: #151515;
        padding: 20px;
        width: 200px;
        border-radius: 8px;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }

    #menu-toggle:checked + .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked + .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Scroll-down arrow */
.scroll-down {
    position: absolute;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%);
    font-size: 3em; 
    color: white;
    text-decoration: none;
    animation: bounce 2s infinite; 
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-down:hover {
    transition: 0.9s; 
    color: rgb(0, 0, 0);
}

/* Hover effect for navigation */
.nav-links li a:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: whitesmoke;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s linear;
}

.nav-links a:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Logo hover effect */
.logo img:hover {
    width: 121px; 
    height: auto; 
    padding-left: 15%;
    transition: 1s;
}

/* Social Media Links */
.social-menu {
    position: fixed;
    right: 20px; 
    top: 50%; 
    transform: translateY(-50%); 
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.social-menu a {
    text-decoration: none; 
    font-size: 24px; 
    color: #fff; 
    background-color: #333; 
    width: 50px; 
    height: 50px; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    transition: background-color 0.3s ease;
    border-radius: 20%;
}

.social-menu a:hover {
    background-color: #000000; 
}

.social-menu i {
    vertical-align: middle; 
}

/* Main title */
.nadpis h1 {
    color: whitesmoke;
    font-size: 85px;
    padding-left: 8%;
    padding-top: 6%;
    text-shadow: 3px 5px #000000;
}

/* Subheading */
h3 {
    color: whitesmoke;
    font-size: 30px;
    padding-left: 8%;
    text-shadow: 3px 5px #000000;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .nadpis h1 {
        font-size: 50px;
        padding-left: 5%;
        padding-top: 10%;
    }

    h3 {
        font-size: 20px;
        padding-left: 5%;
    }
}

@media (max-width: 480px) {
    .nadpis h1 {
        font-size: 40px;
        padding-left: 5%;
        padding-top: 15%;
    }

    h3 {
        font-size: 18px;
        padding-left: 5%;
    }

    .social-menu {
        width: 40px;
        height: 40px;
    }

    .social-menu a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .scroll-down {
        font-size: 2em;
    }
}
