@font-face {
    font-family: 'AnonymousPro';
    src: url('../fonts/ttf/AnonymousPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

*{
    margin:0;
    padding:0;
    font-family: 'AnonymousPro', monospace;
    box-sizing: border-box;
}

.main{
    width:100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%), url(page.jpg);
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    background-color: black;
    position: relative;
}

.navbar{
    width: 1200px;
    height: 75px;
    margin: auto;
}

.icon{
    width: 200px;
    float:left;
    height: 70px;
}

.logo{
    color:darkolivegreen;
    font-size: 35px;
    font-family: 'AnonymousPro', monospace;
    padding-left: 20px;
    float:left;
    padding-top: 10px;
}

.logo a{
    text-decoration: none;
    color: inherit;
}

.menu{
    width: 400px;
    float: left;
    height: 70px;
}

ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li{
    list-style: none;
    margin-left: 62px;
    margin-top: 27px;
    font-size: 14px;
}

ul li a{
    text-decoration: none;
    color:blanchedalmond;
    font-family: 'AnonymousPro', monospace;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

ul li a:hover{
     color: darkolivegreen;
}

.search{
    width: 330px;
    float: left;
    margin-left:270px;
}

.srch{
    font-family: 'AnonymousPro', monospace;
    width: 200px;
    height: 40px;
    background: transparent;
    border: 1px solid blanchedalmond;
    margin-top: 13px;
    color:cornsilk;
    border-right: none;
    font-size: 16px;
    float: left;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.btn{
    width: 100px;
    height: 40px;
    background: darkolivegreen;
    border: 2px solid darkolivegreen;
    margin-top: 13px;
    color:cornsilk;
    font-size: 15px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
}

.btn:focus{
    outline:none;
}

.srch:focus{
    outline:none;
}

/* Music Player Styles - Record Player */
.music-player-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.record-player{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.record{
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 50% 50%, 
            rgba(30, 30, 30, 0.8) 0%,
            rgba(20, 20, 20, 0.9) 15%,
            rgba(10, 10, 10, 1) 30%,
            rgba(5, 5, 5, 1) 50%,
            rgba(10, 10, 10, 1) 70%,
            rgba(20, 20, 20, 0.9) 85%,
            rgba(30, 30, 30, 0.8) 100%
        );
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.9),
        inset 0 0 80px rgba(0, 0, 0, 0.6),
        inset 0 0 40px rgba(0, 0, 0, 0.4);
    animation: rotate 10s linear infinite paused;
    border: 4px solid #1a1a1a;
    overflow: hidden;
}

.record.playing{
    animation-play-state: running;
}

.record-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    border: 4px solid rgba(40, 40, 40, 0.6);
    box-shadow: 
        0 0 10px rgba(0, 0, 0, 0.5),
        inset 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.record-image{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 50%;
    opacity: 0.85;
}

.record-center::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8);
    z-index: 4;
}

.record-grooves{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: 
        repeating-conic-gradient(
            from 0deg,
            transparent 0deg 1.5deg,
            rgba(85, 107, 47, 0.2) 1.5deg 3deg
        ),
        radial-gradient(circle at 50% 50%,
            transparent 15%,
            rgba(85, 107, 47, 0.05) 15%,
            rgba(85, 107, 47, 0.05) 18%,
            transparent 18%,
            transparent 25%,
            rgba(85, 107, 47, 0.05) 25%,
            rgba(85, 107, 47, 0.05) 28%,
            transparent 28%,
            transparent 35%,
            rgba(85, 107, 47, 0.05) 35%,
            rgba(85, 107, 47, 0.05) 38%,
            transparent 38%,
            transparent 45%,
            rgba(85, 107, 47, 0.05) 45%,
            rgba(85, 107, 47, 0.05) 48%,
            transparent 48%
        );
    z-index: 2;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.record::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(200, 200, 200, 0.05) 20%,
            transparent 40%
        );
    z-index: 2;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
}
}

.player-controls{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.play-btn{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: darkolivegreen;
    border: 4px solid #6b8e23;
    color: cornsilk;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(85, 107, 47, 0.5);
}

.play-btn:hover{
    background: #6b8e23;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(85, 107, 47, 0.7);
}

.music-info{
    color: cornsilk;
    text-align: center;
    width: 100%;
}

.song-title{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'AnonymousPro', monospace;
}

.song-artist{
    font-size: 18px;
    opacity: 0.8;
    font-family: 'AnonymousPro', monospace;
}


.footer-container{
    background-color: black;
    padding: 10rem 0 4rem 0;
    position:relative;
    margin-top: 100px;
}

.footer{
    width:80%;
    height:40vh;
    background-color: black;
    color:cornsilk;
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    font-family: 'AnonymousPro', monospace;
}

.footer-heading{
    display:flex;
    flex-direction: column;
    margin-right: 4rem;
}

.footer-heading h2{
    margin-bottom: 4rem;
}

.footer-heading a{
    color:cornsilk;
    text-decoration: none;
    margin-bottom: 0.5 rem;
    font-family: 'AnonymousPro', monospace;
}

.footer-heading a:hover{
    color:darkolivegreen;
    transition: 0.3s ease-out;
}

.footer-email-form h2{
    margin-bottom: 2rem;
}

#footer-email{
    width:250px;
    height:40px;
    border-radius: 4px;
    outline: none;
    border:none;
    padding-left: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

#footer-email::placeholder{
    color:white;
}

#footer-email-btn{
    width:65px;
    height:40px;
    border-radius: 10px;
    background-color: darkolivegreen;
    outline:none;
    border:none;
    color:cornsilk;
    font-size: 1rem;
    font-family: 'AnonymousPro', monospace;
    cursor: pointer;
}

#footer-email-btn:hover{
    cursor:pointer;
    background-color: pink;
    transition: all 0.4s ease-out;
}

@media screen and (max-width:1150px){
    .footer{
        height: 50vh;
    }
    .footer-email-form{
    margin-top: 4rem;
}
}

@media screen and (max-width:820px){
    .footer{
        padding-top:2rem;
    }
    .record{
        width: 300px;
        height: 300px;
    }
    .record-center{
        width: 60px;
        height: 60px;
    }
    .play-btn{
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .song-title{
        font-size: 20px;
    }
    .song-artist{
        font-size: 16px;
    }
}

@media screen and (max-width:720px){
    .footer-3{
        display:none;
    }
    .footer-email-form{
        margin-top:4rem;
    }
    .record{
        width: 250px;
        height: 250px;
    }
    .record-center{
        width: 50px;
        height: 50px;
    }
    .play-btn{
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .song-title{
        font-size: 18px;
    }
    .song-artist{
        font-size: 14px;
    }
}

@media screen and (max-width: 700px) {
    html{
        font-size: 12px;
    }
    body{
        background-color: black;
    }
    .record{
        width: 200px;
        height: 200px;
    }
    .record-center{
        width: 40px;
        height: 40px;
    }
    .play-btn{
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .song-title{
        font-size: 16px;
    }
    .song-artist{
        font-size: 12px;
    }
}