/* ===================================================
   PROFILE PAGE - BREATH & STRENGTH
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins",sans-serif;
}

body{

    background:#f7f8fc;

    color:#1d1d1d;

    overflow-x:hidden;

}


/* ===================================================
   PROFILE NAVBAR
=================================================== */
/* =========================
   NAVBAR
========================= */


/* =======================================
   NAVBAR
======================================= */

/* ================= NAVBAR ================= */

/* ---------- BRAND ---------- */

.brand{

    display:flex;

    align-items:center;

    gap:15px;

}

.brand img{

    width:60px;

}

.brand-text h2{

    font-size:18px;

    color:#10284f;

    margin:0;

}

.brand-text span{

    font-size:12px;

    color:#555;

}
.logout-btn{
    margin-top:20px;
    padding:12px 20px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
}

/* ---------- CENTER NAV ---------- */

.nav-links{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:60px;

    list-style:none;

    margin:0;

    padding:0;

}

.nav-links a{

    text-decoration:none;

    color:#10284f;

    font-size:18px;

    font-weight:600;

}

/* ---------- PROFILE ---------- */

.profile-nav{

    display:flex;

    align-items:center;

    gap:10px;

}

.profile-nav i{

    color:#6B8E23;

    font-size:22px;

}

.profile-nav span{

    font-size:18px;

    font-weight:600;

    color:#10284f;

}


/* ===================================================
   HERO
=================================================== */

.profile-hero{

    position:relative;

    min-height:55vh;

    background:
    linear-gradient(
        rgba(255,255,255,.55),
        rgba(255,255,255,.45)
    ),
    url("../assets/bg2.png");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    padding-top:90px;

}
.avatar-circle{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#6B8E23;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 20px;
    color:#fff;
    font-size:50px;
}



.hero-overlay{

    position:absolute;

    inset:0;

    backdrop-filter:blur(2px);

}


/* ===================================================
   PROFILE CARD
=================================================== */

.profile-card{

    position:relative;

    z-index:5;

    width:90%;

    max-width:500px;

    padding:45px;

    text-align:center;

    border-radius:25px;

    background:rgba(255,255,255,.22);

    backdrop-filter:blur(15px);

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.avatar{

    width:120px;

    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #6B8E23;

    margin-bottom:18px;

}

.profile-card h1{

    color:#10284f;

    font-size:36px;

    margin-bottom:10px;

}

.profile-card p{

    color:#555;

    line-height:1.7;

}


/* ===================================================
   MEMBERSHIP BADGE
=================================================== */

.member-badge{

    display:inline-block;

    margin-top:25px;

    background:#6B8E23;

    color:#fff;

    padding:12px 22px;

    border-radius:50px;

    font-weight:700;

    box-shadow:0 10px 25px rgba(107,142,35,.25);

}


/* ===================================================
   DASHBOARD
=================================================== */

.dashboard{

    width:90%;

    max-width:1400px;

    margin:70px auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


/* ===================================================
   CARDS
=================================================== */

.card{

    background:#ffffff;

    padding:35px;

    border-radius:22px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

}

.card h2{

    color:#10284f;

    margin-bottom:25px;

    font-size:28px;

}


/* ===================================================
   INFO ROWS
=================================================== */

.info-row{

    display:flex;

    justify-content:space-between;

    padding:14px 0;

    border-bottom:1px solid #ececec;

}

.info-row span{

    color:#777;

}

.info-row strong{

    color:#10284f;

}


/* ===================================================
   DISCOUNT
=================================================== */

.discount{

    margin-top:25px;

    padding:15px;

    background:#edf8e4;

    color:#4e7f15;

    border-radius:12px;

    font-weight:700;

    text-align:center;

}


/* ===================================================
   BOOKINGS
=================================================== */

.booking-item{

    padding:18px;

    border-radius:15px;

    background:#f8f9fc;

    margin-bottom:15px;

    transition:.3s;

}

.booking-item:hover{

    background:#eef2f8;

}

.booking-item h3{

    color:#10284f;

    margin-bottom:8px;

}

.booking-item p{

    color:#666;

}


/* ===================================================
   BUTTONS
=================================================== */

.card button{

    width:100%;

    padding:15px;

    margin-top:15px;

    border:none;

    border-radius:12px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

#editProfile{

    background:#10284f;

    color:#fff;

}

#editProfile:hover{

    background:#6B8E23;

}

#logoutBtn{

    background:#e63946;

    color:#fff;

}

#logoutBtn:hover{

    opacity:.9;

}


/* ===================================================
   MOBILE
=================================================== */

@media(max-width:992px){

    .dashboard{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .profile-card{

        padding:30px;

    }

    .profile-card h1{

        font-size:28px;

    }

    .avatar{

        width:90px;

        height:90px;

    }

    .profile-nav span{

        display:none;

    }

}