/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f3f3f3;
    color:#222;
    padding-top:120px;
    overflow-x:hidden;
}

/* =========================
   GLOBAL
========================= */

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.book-profile{
    width:95%;
    max-width:1300px;
    margin:auto;
}

/* =========================
   HERO / HEADER PROFIL
========================= */

.book-header{
    position:relative;
    min-height:500px;
    border-radius:35px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    padding:60px;
    margin-bottom:40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    color: white;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.book-header-content{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-end;
    gap:35px;
    flex-wrap:wrap;
}

/* AVATAR */

.profile-avatar{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid rgba(255,255,255,0.9);
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

/* TEXT */
.profile-text{
    margin-left:15%;
}
.profile-text h1{
    font-size:58px;
    font-weight:700;
    color:white;
    margin-bottom:10px;
    line-height:1;
    text-align: center;
}

.model-role{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#ff3d8d;
    color:white;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.location{
    color:rgba(255,255,255,0.85);
    font-size:18px;
    margin-bottom:20px;
}

.profile-bio{
    max-width:700px;
    color:rgba(255,255,255,0.88);
    line-height:1.8;
    font-size:15px;
}

/* BUTTON */

.contact-btn{
    margin-top:25px;
    border:none;
    background:linear-gradient(135deg,#ff3d8d,#ff6ba8);
    color:white;
    padding:16px 30px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(255,61,141,0.3);
}

.contact-btn:hover{
    transform:translateY(-3px);
}

/* =========================
   MENU
========================= */

.profile-menu{
    position:sticky;
    top:90px;
    z-index:50;
    background:white;
    border-radius:20px;
    padding:18px 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.profile-menu a,
.gallery-btn{
    border:none;
    background:#f5f5f5;
    color:#444;
    padding:12px 18px;
    border-radius:50px;
    cursor:pointer;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}

.profile-menu a:hover,
.gallery-btn:hover{
    background:#111;
    color:white;
}

/* =========================
   DROPDOWN
========================= */

.gallery-dropdown{
    position:relative;
}

.gallery-dropdown-content{
    position:absolute;
    top:45px;
    left:0;
    min-width:240px;
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    display:none;
}

.gallery-dropdown:hover .gallery-dropdown-content{
    display:block;
}

.gallery-dropdown-content a{
    display:block;
    padding:15px 18px;
    border-radius:0;
    background:white;
    color:#333;
    border-bottom:1px solid #f1f1f1;
}

.gallery-dropdown-content a:hover{
    background:#f7f7f7;
    color:#000;
}

/* =========================
   SECTIONS
========================= */

.section-box,
.model-specs,
.poses-section,
.gallery-wrapper{
    background:white;
    border-radius:30px;
    padding:40px;
    margin-bottom:35px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

.section-box h2,
.specs-header h2,
.poses-section h2{
    font-size:34px;
    margin-bottom:30px;
    color:#111;
    position:relative;
}

.section-box h2::after,
.specs-header h2::after,
.poses-section h2::after{
    content:'';
    width:70px;
    height:4px;
    background:#ff3d8d;
    border-radius:10px;
    position:absolute;
    left:0;
    bottom:-10px;
}

/* =========================
   INFO GRID
========================= */

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.info-item{
    background:#fafafa;
    border-radius:20px;
    padding:25px;
    border:1px solid #eee;
    transition:0.3s;
}

.info-item:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.info-item strong{
    display:block;
    color:#999;
    margin-bottom:12px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.info-item span{
    font-size:24px;
    font-weight:600;
    color:#111;
}

/* =========================
   MENSURATIONS
========================= */

.specs-content{
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.body-visual{
    flex:1;
    text-align:center;
}

.body-visual img{
    max-width:260px;
    opacity:0.95;
}

.specs-grid{
    flex:2;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.spec-item{
    background:#fafafa;
    border-radius:20px;
    padding:25px;
    border:1px solid #eee;
    transition:0.3s;
}

.spec-item:hover{
    transform:translateY(-4px);
}

.spec-item span{
    display:block;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#999;
    margin-bottom:10px;
}

.spec-item strong{
    font-size:28px;
    color:#111;
}

/* =========================
   STYLES / BADGES
========================= */

.pose-grid,
.badge-container{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.pose-badge,
.style-badge{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 22px;
    border-radius:50px;
    background:#111;
    color:white;
    font-size:14px;
    transition:0.3s;
}

.pose-badge:hover,
.style-badge:hover{
    transform:translateY(-3px);
    background:#ff3d8d;
}

/* =========================
   GALLERIES
========================= */

.gallery-title{
    margin-bottom:20px;
    margin-top:20px;
}

.gallery-title h3{
    font-size:30px;
    color:#111;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:50px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    background:#ddd;
}

.gallery-item img{
    width:100%;
    height:550px;
    object-fit:cover;
    transition:0.5s;
    cursor:pointer;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* =========================
   LIGHTBOX
========================= */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
}

.lightbox img{
    max-width:95%;
    max-height:95%;
    border-radius:20px;
}

/* =========================
   CONTACT MODAL
========================= */

.contact-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.8);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
}

.contact-box{
    width:100%;
    max-width:550px;
    background:white;
    border-radius:30px;
    padding:40px;
    position:relative;
    animation:popup 0.3s ease;
}

@keyframes popup{
    from{
        transform:scale(0.9);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-btn{
    position:absolute;
    top:18px;
    right:25px;
    font-size:32px;
    cursor:pointer;
    color:#888;
}

.contact-box h2{
    margin-bottom:25px;
    font-size:32px;
    color:#111;
}

.contact-box input,
.contact-box textarea{
    width:100%;
    border:none;
    background:#f5f5f5;
    border-radius:18px;
    padding:16px 18px;
    margin-bottom:18px;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.contact-box input:focus,
.contact-box textarea:focus{
    background:#efefef;
}

.contact-box textarea{
    resize:none;
    min-height:140px;
}

.contact-box button{
    width:100%;
    border:none;
    background:#111;
    color:white;
    padding:18px;
    border-radius:18px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-box button:hover{
    background:#ff3d8d;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .specs-content{
        flex-direction:column;
    }

    .specs-grid{
        width:100%;
    }

    .book-header{
        padding:40px 30px;
    }

    .profile-text h1{
        font-size:42px;
    }

}

@media(max-width:700px){

    body{
        padding-top:90px;
    }

    .book-header{
        min-height:auto;
        padding:30px 20px;
    }

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

    .profile-avatar{
        width:130px;
        height:130px;
    }

    .profile-text h1{
        font-size:34px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:auto;
    }

    .info-grid,
    .specs-grid{
        grid-template-columns:1fr;
    }

    .section-box,
    .model-specs,
    .poses-section,
    .gallery-wrapper{
        padding:25px;
        border-radius:22px;
    }

    .profile-menu{
        gap:10px;
        padding:15px;
    }

    .profile-menu a,
    .gallery-btn{
        width:100%;
        text-align:center;
    }

}