@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;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');
:root{
  --main-color: #252B45;
  --red: #fc0909;
  --black: #222;
  --white: #fff;
  --light-black: #777;
  --light-white: #fff9;
  --dark-rgba: (0, 0, 0, .7);
  --light-bg: #eee;
  --border: .1rem solid var(--black);
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  --text-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .3);
}

*{
    font-family: 'Poppins', Sans-Serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    background: var(--main-color);
}
body{
    
}
.header{
    position: sticky;
    left: 0; right: 0; top: 0;
    z-index: 1000;
    padding: 2rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--main-color);
    box-shadow: var(--box-shadow);
}
.header .logo a{
    font-size: 2rem;
    color: var(--white);
}
.header .navbar a{
    font-size: 2rem;
    color: var(--white);
    margin-left: 2rem;
}
.header .navbar a:hover{
    color: var(--main-color);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
.hero{
    background: url(../images/image1.webp) no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 10rem 0;
    color: var(--white);
}
.hero h1{
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero p{
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 15rem;
}
.hero-btn{
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    margin-top: 2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.8rem;
    cursor: pointer;
}
.hero-btn:hover{
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}
.main-content{
    padding: 5rem 10%;
}
.main-content .dj-list h2{
    font-size: 2rem;
    color: var(--white);
}
.dj-list p{
    font-size: 1.5rem;
    color: var(--red);
}

.content-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 2fr));
    gap: 2rem;
    margin-top: 2rem;
}
.content-grid .content-card{
    background:  var(--white);
    color: var(--black);
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.content-card .content h3{
    font-size: 2rem;
    text-align: center;
}
.content-card .content a{
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    text-decoration: none;
    margin-top: 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.3rem;
    cursor: pointer;
}
.social-media{
    margin-top: 5rem;
}
.social-media h2{
    color: var(--white);
    font-size: 2rem;
}
.social-media p{
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.social-media .container{
    display: flex;
    align-items: center;
}
.container .social-container img{
    height: 6rem;
    margin-right: 1rem;
}
.home-about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 5rem;
}
.home-about .image{
    flex: 1 1 41rem;
    margin-right: 2rem;
}
.home-about .image img{
    width: 100%;
}
.home-about .content{
    flex: 1 1 41rem;
    padding: 3rem;
}
.home-about .content h2{
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
}
.home-about .content p{
    font-size: 1.5rem;
    color: var(--white);
    line-height: 2;
}
.home-about .content a{
    font-size: 1.5rem;
    display: inline-block;
    padding: 10px 30px;
    color: var(--white);
    background: var(--red);
    margin-top: 1rem;
}

footer{
    background: #2d3748;
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}
.footer-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.footer-section h4{
    margin-top: 1rem;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--red);
}
.footer-section ul{
    list-style-type: none;
}
.footer-section ul li{
    margin-bottom: 1rem;
}
.footer-section a{
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section a:hover{
    color: var(--red);
}
footer .container p{
    font-size: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header{
        padding: 2rem 5%;
        font-size: 55.5%;
    }
}

@media (min-width: 1025px) {
    html{
        font-size: 55.5%;
    }
    
}

/* Responsive Design */
@media (max-width: 768px) {
    html{
        font-size: 55.5%;
    }
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: transparent;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .hero h1{
        font-size: 2.5rem;
    }
    .hero p{
        padding: 0 10rem;
    }

    .navbar.active {
        display: flex;
        color: var(--black);
        background: var(--main-color);
        padding: 2rem 0;
    }
    .navbar a{
        text-align: center;
        color: var(--black);
        padding: .5rem 0;
    }
    

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    html{
        font-size: 50.5%;
    }
    
    .hero p{
        padding: 0 5rem;
    }

    .post-card {
        flex: 0 0 180px;
    }

    .post-image {
        height: 150px;
    }
}


























