.dj {
    padding: clamp(15px, 5vw, 50px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/dj/bg-desktop.webp');
    background-position: center;
    background-size: cover;
    color: #fff;
    background-repeat: no-repeat;
    font-family: 'Montserrat', sans-serif;
    text-align:center;
}

h1{
    font-size: clamp(40px, 7vw, 70px);
}

h2{
    font-size: clamp(30px, 3vw, 35px);
}

p{
    letter-spacing: -1px;
}
/* layout */

.dj-container {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
    gap: 381px;
}


/* LEFT SIDE */
.dj-left{
    /* padding-top:clamp(50px,5vw,100px); */
}
.dj-profile {
    width: 410px;
    margin-bottom: 20px !important;
    margin: 0 auto;
}

.dj-profile img {
    width: 100%;
}

.dj-hi {
    font-size: 28px;
    margin-top: 15px !important;
    margin: 10px 0;
    font-weight: 700;
}

.dj-name{
    
}

.dj-name img {
    width: 380px;
    max-width: 100%;
}

.dj-description {
    line-height: 1.5;
    margin-top: 20px;
}

/* RIGHT SIDE */

.dj-title {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #00eaff;
}

.services{
    display:flex;
    justify-content: center;
    margin-bottom: 25px;
    align-items: center;
}


.dj-services {
    /* margin-bottom: 25px; */
}

.serv{
    padding:0 20px;
}

.serv:nth-of-type(2){
    border-left: 1px solid #00eaff;
    border-right: 1px solid #00eaff;
}

.dj-btn {
    display: inline-block;
    border: 2px solid #00eaff;
    color: #00eaff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.dj-btn:hover {
    background: #00eaff;
    color: #001a33;
}

.dj-small {margin-bottom: 20px;font-size: clamp(16px,3vw,20px);}

.dj-know {
    font-weight: 700;
    margin-top: 10px;
}

.dj-contact {font-size: clamp(16px,3vw,20px);}

.email-modal{position:fixed;inset:0;background:rgba(0,0,0,0.7);display:none;align-items:center;justify-content:center;z-index:9999;font-family: 'Montserrat', sans-serif;}

.email-box{background:#001a33;padding:30px;border-radius:10px;text-align:center;width: 100%;max-width: 400px;}

.email-box h3{margin-bottom:20px;color: #00eaff;}

.email-box button{display:block;max-width: 450px;margin:8px auto;padding: 20px;border-radius:6px;border:none;cursor:pointer;width: 100%;}

.email-close{background: #00eaff;color:#fff;}

.email-box button:nth-of-type(5){
    display: none;
}

/* LAPTOP */
@media only screen and (min-width:1030px) and (max-width: 1450px){
.dj-container{
    gap: 180px;
}    
}

/* MOBILE */

@media (max-width: 1030px) {

    .dj {
        background-image: url('../images/dj/bg-mobile.webp');
        background-position-y: 40%;
    }

    .email-box button:nth-of-type(5){
    display: block;
}

    .dj-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .dj-profile {
    width: 330px;
    }

    .dj-name img {
        margin: auto;
    }

    .dj-btn{
        width:90%;
    }
}