footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
    font-family: Arial, sans-serif;
}

.socials-nav-container {
    display: flex;
    justify-content: space-between;
    gap: 20vw;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Ľavá sekcia - Newsletter */
.socials.footer-div {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.socials h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
}

.socials svg {
    fill: #ffffff;
}

.socials > div h3 {
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}

.socials > div h4 {
    font-size: 14px;
    color: #b0b0b0;
    font-weight: normal;
    margin-bottom: 20px;
}

.socials span {
    display: flex;
    gap: 10px;
}

.socials input {
    flex: 1;
    padding: 12px 16px;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

.socials input::placeholder {
    color: #666666;
}

.socials button {
    padding: 12px 24px;
    background-color: #00ff00;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.socials button:hover {
    background-color: #00cc00;
}

/* Pravá sekcia - Navigácia */
.navigation.footer-div {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.nav-div {
    flex: 1;
    min-width: 180px;
}

.nav-div h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

.nav-div a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.nav-div a:hover {
    color: #00ff00;
}

.nav-div p {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0;
    padding: 4px 0;
}

.nav-div a p:hover {
    color: #00ff00;
}

/* Spodná sekcia */
.footer-socials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    flex-wrap: wrap;
    gap: 20px;
}

.copy {
    font-size: 14px;
    color: #888888;
}

.socials-container {
    display: flex;
    gap: 2rem;
    padding-left: 3rem;
}

.socials-container a {
    color: #ffffff;
    font-size: 2.5rem;
    transition: color 0.3s;
}

.socials-container a:hover {
    color: #00ff00;
}

/* Responzívny dizajn */
@media (max-width: 1024px) {
    .socials-nav-container {
        flex-direction: column;
    }
    
    .navigation.footer-div {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
    }
    
    .navigation.footer-div {
        grid-template-columns: 1fr;
    }
    
    .footer-socials {
        flex-direction: column;
        align-items: flex-start;
    }
}