﻿:root {
    --cyber-lemon: #bad72f !important;
    --dark-gray: #1a1a1a !important;
}

body {
    font-family: 'Roboto', sans-serif !important;
    background-color: var(--dark-gray) !important;
    color: #fff !important;
}

.navbar {
    background-color: rgba(26, 26, 26, 0.95);
    border-bottom: 2px solid var(--cyber-lemon);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: #fff !important;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: var(--cyber-lemon) !important;
    }

.contact-section, #infoModal .modal-content {
    padding: 120px 0 60px;
    background: linear-gradient(45deg, var(--dark-gray), #2a2a2a);
    position: relative;
    overflow: hidden;
}

/*  .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%2300ff00" fill-opacity="0.1" x="0" y="0" width="100" height="100"/></svg>');
        opacity: 0.1;
        animation: backgroundMove 20s linear infinite;
    }*/

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

.section-title {
    color: var(--cyber-lemon);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--cyber-lemon);
        box-shadow: 0 0 10px var(--cyber-lemon);
    }

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

    .contact-info h3 {
        color: var(--cyber-lemon);
        margin-bottom: 20px;
    }

    .contact-info p {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .contact-info svg {
        margin-right: 10px;
        fill: var(--cyber-lemon);
    }

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
}

.form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff;
    padding: 12px !important;
    margin-bottom: 20px;
}

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.6) !important;
    }

    .form-control:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--cyber-lemon);
        color: #fff;
        box-shadow: 0 0 0 0.25rem rgba(186, 215, 47, 0.25);
    }

.btn-send, #closeModalBtn {
    background-color: var(--cyber-lemon) !important;
    color: var(--dark-gray) !important;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .btn-send:hover, #closeModalBtn:hover {
        background-color: #a3c029;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(186, 215, 47, 0.3);
    }

#infoModal .modal-dialog {
    max-width: 320px;
    width: auto;
}

#infoModal .modal-content {
    background-color: #1e1e1e;
    border-radius: 10px;
    color: white;
    padding: 1rem;
}

#closeModalBtn {
    width: 100px;
    background-color: #c6f91f;
    border: none;
    color: #000;
    font-weight: bold;
}

    #closeModalBtn:hover {
        background-color: #b5e91e;
    }

.footer-copyright-section {
    background: #181818;
    border-top: 1.5px solid #222;
    padding: 1.5rem 0 !important;
}

    .footer-copyright-section .row {
        align-items: center;
    }

    .footer-copyright-section p,
    .footer-copyright-section a {
        margin: 0;
        padding: 0.5rem 0;
    }

@media (max-width: 768px) {
    .footer-copyright-section .row {
        text-align: center;
    }

    .footer-copyright-section .col-md-6 {
        text-align: center !important;
        margin: 0.5rem 0;
    }
}

input.form-control, textarea.form-control {
    color: white !important;
}
