@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*  {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::selection {
    color: black;
    background: #e8ff22;
  }
  
::-moz-selection {
    color: black;
    background: #e8ff66; 
  }

img::selection {
    color: rgba(0, 0, 0, 0);
    background: #e8ff6600; 
  }
  
img::-moz-selection {
    color: rgba(0, 0, 0, 0);
    background: #e8ff6600; 
  }


:root {
    --primary-color: #dbf60d;
    --secondary-color: #c6de16;
    --gradient-color: linear-gradient(to right, rgb(210, 220, 18) ,rgb(157, 220, 10) );
    
    --one-color: rgb(34, 33, 33);
    --two-color: #fff;
}

header {
    background-color: #0000008c;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 100px;
    transition: 0.4s ease;
}

.logo {
    text-decoration: none;
    color: var(--two-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8em;
}

.navigation a {
    color: var(--two-color);
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    padding-left: 30px;
    transition: 0.2s ease-in;
}

.header--hidden {
    transform: translateY(-100px);
}

.navigation a:hover {
    color: rgb(217, 217, 217);
}

section {
    padding: 55px 200px;
}

section h2 span {
    color: var(--primary-color);
}

.el3ila {
    width: 260px;
    position: relative;
    right: 0.5em;
    margin-bottom: 20px;
}

#demo {
    padding-top: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 2.5rem;
}

#vol2 {
    color: white;
    font-weight: 500;
    font-size: 3.3rem;
}

#vol2 a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: inherit;
    padding: 0;
}

#vol2 a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(pictures/music.webp) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.main h2 {
    color: var(--two-color);
    font-size:2em ;
    font-weight: 700;
}

.main h3{
    color: var(--two-color);
    font-size:1.5em ;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.main h3 span {
    color: var(--primary-color);
}

.main-btn {
    color: var(--one-color);
    background-color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    display: inline-block;
    padding: 0.9375em 2.1875em;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: 0.5s ease;
}

.main-btn:hover {
    background-color: var(--secondary-color);;
    transform: scale(1.1);

}

.social-icons a {
    color: var(--two-color);
    font-size: 1.5em;
    padding-right: 33px;
}

.title {
    display: flex;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.2em;
    font-weight: 800;
}

.titlespan {
    color: var(--two-color);
}

.cards p {
    color: var(--two-color);
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 30px;
}

#services {
    background-color: var(--one-color);
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.card {
    color: var(--two-color);;
    background-color: var(--one-color);
    width: 21.25em;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition: 0.5s ease;
}

.card:hover {
    transform: scale(1.1);
}

.icon { 
    color: var(--primary-color);
    font-size: 8em;
    text-align: center;
}

.info {
    text-align: center;
}

.info h3 {
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px;
}

.projects {
    background-image: var(--gradient-color);
}

.projects h2 {
    color: var(--one-color);
}

.projects .content {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
}

.project-card {
    background-color: var(--one-color);
    border: 1px solid var(--one-color);
    min-height: 14em;
    width: 22em;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px;
    transition: 0.5s ease;
}

.project-title a{
    font-size: 0.8em;
}


.project-title span{
    font-size: 0.8em;
    color: var(--two-color);
}

.project-card:hover {
    transform: scale(1.1)
}


.project-card:hover .project-image {
    opacity: 0.9;
}

.project-image img {
    width: 100%;
}

.project-info {
    padding: 1em;
}

.project-category {
    font-size: 0.8 em;
    color: var(--two-color);
}

.poject-title {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 10px;
}

#contact {
    background-color: var(--one-color);
}

.more-details {
    text-decoration: none;
    color: var(--secondary-color);
}


.more-details:hover {
    color: var(--primary-color);
}

.cards-contact .icon {
    font-size: 4.5em;
}

.cards-contact .info h3 {
    color: var(--two-color);
}

.cards-contact .info a {
    font-size: 1.3em;
    text-decoration: none;
    color: var(--secondary-color);
}

.cards-contact .info a:hover {
    color: var(--primary-color);
}

.artists {
    background-color: var(--one-color);
}

.artists .title {
    margin-bottom: 0.5em;
}

.artists img {
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    margin-top: 15px;
    width: 5em;
    padding: 0%;
}

.artists a {
    text-decoration: none;
    color: #dbf60d;
    font-size: 1.3em;
    padding: 0%;
}

.artists p {
    text-decoration: none;
    color: #ffffff;
    font-size: 1em;

}

.artists .content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    
}

.artists .project-card {
    color: var(--two-color);;
    background-color: var(--one-color);
    width: 10em;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    border-radius: 5px;
    margin: 10px;
    transition: 0.5s ease;
}

.mail {
    background: var(--gradient-color);
}

.mail .title {
    color: var(--one-color);
    margin-bottom: 1em;
} 

.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2vw 2vw;
    width: 90%;
    max-width: 900px;
    max-height: 600px;
    border-radius: 10px;
    background-color: var(--one-color);
}

form h3 {
    color: #555;
    font-weight: 800;
}

form input, form textarea {
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: whitesmoke;
    font-size: 16px;
}

form textarea {
    resize: none;
}

form button, form select {
    padding: 15px;
    background: var(--primary-color);
    color: var(--one-color);
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
}

form select {
    padding: 7px;
}

form button:hover {
    background-color: var(--secondary-color);
}

.about {
    text-align: center;
    background-image: var(--gradient-color);
    
}

.about h2 {
    color: var(--one-color);
}

.about img {
    width: 600px;
}

.about-p {
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--one-color);
}

.about-p2 {
    margin-top:20px ;
    color: var(--one-color);

}

.footer {
    background-color: rgb(32, 32, 32);
    color: var(--two-color);
    padding: 1em;
    display: flex;
    justify-content: space-between;
}

.footer-title {
    font-size: 1.3em;
    font-weight: 600;
}

.footer-title span {
    color: var(--primary-color);
}

.footer .social-icons a{
    font-size: 1.3em;
    padding: 0 12px 0 0;
}

@media (max-width:1023px) {
    header {
        padding: 12px 20px;
    }
    
    .navigation {
        padding-left: 10px;
    }

    .title {
        font-size: 1.8em;
    }

    section {
        padding: 80px 20px;
    }

    #demo {
        font-size: 2rem;
    }
    
    #vol2 {

        font-size: 1.3rem;
    }

    .main-content h2 {
        font-size: 1em;
    }

    .main-content h3 {
        font-size: 1.6em;
    }

    .content {
        flex-direction: column;
        align-items: center; 
    }

    .about img {
        width: 300px;
    }

    @media (max-width:641px) {
        body {
            font-size: 12px;
        }

        .main-content h2{
            font-size: 0.8em;
        }

        .main-content h3{
            font-size: 1.4em;
        }
    }
    @media (max-width:300px) {
        body {
            font-size: 10px
        }
    }
}
