*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Roboto';
}

body{
    background:#0b0b0b;
    color:white;
}

/* centered content */
.container{
    width:50%;
    margin:auto;
    padding-top: 50px;
}

@media (max-width:768px){
    .container{
        width:90%;
    }
}

/* cards / sections */

.card{
    background:#151515;
    border-radius:12px;
    padding:25px;
    margin-bottom:25px;
}

/* profile */

.profile{
    display:flex;
    align-items:center;
    gap:25px;
}

.profile img{
    width:150px;
    height:150px;
    border-radius:14px;
    object-fit:cover;
}

.profile-text h1{
    font-size:28px;
    margin-bottom:8px;
}

.profile-text p{
    color:#8f8f8f;
    margin-bottom:3px;
}

/* navbar */

.navbar{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding: 15px;
    position:sticky;
    top:20px;
    z-index:1000;

    background:rgba(20,20,20,0.6);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.05);
}


.navbar a{
    flex:1;
    text-align:center;
    padding:12px;
    text-decoration:none;
    background:#181818;
    color:white;
    border-radius:10px;
    transition:0.2s;

    border:1px solid rgba(255,255,255,0.04);
    background:rgba(30,30,30,0.6);

}

.navbar a:hover{
    background:#242424;
}

/* section title */

.section-title{
    font-size:22px;
    margin-bottom:15px;
}

.subtext{
    color:#8f8f8f;
}

/* TIMELINE */

.timeline{
    position:relative;
    margin-top:30px;
    padding-left:40px;
}

.timeline::before{
    content:"";
    position:absolute;
    left:15px;
    top:0;
    bottom:0;
    width:2px;
    background:#2a2a2a;
}

/* timeline item */

.timeline-item{
    position:relative;
    margin-bottom:35px;
}

/* dot */

.timeline-dot{
    position:absolute;
    left:7px;
    top:10px;
    width:16px;
    height:16px;
    background:#444;
    border-radius:50%;
}

/* content */

.timeline-content{
    background:#181818;
    padding:18px;
    border-radius:12px;
}

/* header */

.timeline-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:6px;
}

.timeline-logo{
    width:28px;
    height:28px;
    border-radius:6px;
    object-fit:cover;
}

.timeline-header h3{
    font-size:17px;
}

/* text styles */

.timeline-place{
    color:#d0d0d0;
    font-size:14px;
    margin-bottom:5px;
}

.timeline-desc{
    color:#8f8f8f;
    font-size:14px;
    margin-bottom:8px;
}

.timeline-date{
    color:#8f8f8f;
    font-size:13px;
}

.custom-link {
  color: #8ab4f8;       /* light blue */
  text-decoration: none;
}

.custom-link:visited {
  color: #8ab4f8;       /* same color after click */
}

.custom-link:hover {
  color: #a8c7fa;       /* slightly lighter on hover */
}

.custom-link:active {
  color: #8ab4f8;
}

/* MINI PROFILE */

.mini-profile{
    text-align:center;
}

.mini-name{
    font-size:25px;
    margin-bottom:6px;
    margin-left: -20px;
}

.mini-desc{
    color:#bdbdbd;
    font-size:14px;
}

/* profile layout */

.profile{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* left section */

.profile-left{
    display:flex;
    align-items:center;
    gap:25px;
}

/* social column */

.profile-socials{
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* icons */

.profile-socials img{
    width:22px;
    height:22px;
    opacity:0.8;
    transition:0.2s;
}

.profile-socials img:hover{
    opacity:1;
    transform:scale(1.1);
}

/* clickable card */

.card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

/* mini timeline */

.mini-timeline{
    position:relative;
    display:flex;
    justify-content:space-between;
    margin-top:25px;
    padding-top:25px;
}

/* horizontal line */

.mini-timeline::before{
    content:"";
    position:absolute;
    top:38px;
    left:0;
    right:0;
    height:2px;
    background:#2a2a2a;
}

/* item */

.mini-timeline-item{
    position:relative;
    text-align:center;
    width:33%;
}

/* logo */

.mini-timeline-logo{
    width:36px;
    height:36px;
    object-fit:cover;
    border-radius:8px;
    background:#181818;
    padding:4px;
    position:relative;
    z-index:2;
}

/* text */

.mini-title{
    margin-top:10px;
    font-size:14px;
}

.mini-place{
    font-size:13px;
    color:#bdbdbd;
}

.mini-date{
    font-size:12px;
    color:#888;
}

/* clickable card hover */

.card-link .card{
    cursor:pointer;
    transition:background 0.2s ease;
}

.card-link .card:hover{
    background:#1b1b1b;
}

/* music section */

.music-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-top:20px;
}

/* item */

.music-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

/* image */

.music-img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
}

/* text */

.music-text h3{
    font-size:17px;
    margin-bottom:3px;
}

.music-sub{
    color:#cfcfcf;
    font-size:14px;
    margin-bottom:6px;
}

.music-desc{
    color:#b5b5b5;
    font-size:14px;
    margin-bottom:6px;
}

.music-date{
    color:#888;
    font-size:13px;
}

/* responsive */

@media (max-width:768px){

.music-grid{
    grid-template-columns:1fr;
}

.focus-grid{
    grid-template-columns:1fr;
}
.container{
    width:90%;
}
}

/* music horizontal scroll */

.music-scroll{
    display:flex;
    gap:20px;
    overflow-x:auto;
    margin-top:20px;
    padding-bottom:5px;

    scrollbar-width:none;      /* Firefox */
    -ms-overflow-style:none;   /* IE / Edge */
}

/* hide scrollbar (clean look) */

.music-scroll::-webkit-scrollbar{
    display:none;
}

.music-scroll::-webkit-scrollbar{
    height:6px;
}

.music-scroll::-webkit-scrollbar-track{
    background:transparent;
}

.music-scroll::-webkit-scrollbar-thumb{
    background:#2a2a2a;
    border-radius:10px;
}

/* song card */

.song-card{
    min-width:140px;
    text-decoration:none;
    color:white;
    flex-shrink:0;
}

/* cover */

.song-cover{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:8px;
}

/* text */

.song-title{
    font-size:14px;
    margin-bottom:2px;
}

.song-album{
    font-size:13px;
    color:#bdbdbd;
}

.song-date{
    font-size:12px;
    color:#888;
}

/* hover */

.song-card:hover .song-cover{
    filter:brightness(1.1);
}

/* skills */

/* skills */

.skills-section{
    margin-top:30px;
}

.skills-section h3{
    font-size:18px;
    font-weight:600;
    color:#ffffff;
    margin-bottom:14px;
    padding-bottom:6px;
    border-bottom:1px solid #2a2a2a;
}

.skill-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:7px 0;
}

.skill-name{
    font-weight:500;
    color:#e6e6e6;
}

.skill-desc{
    color:#6f6f6f;
    font-size:14px;
}
/* compact skills */

.skills-compact{
    margin-top:15px;
}

.skill-row{
    display:flex;
    justify-content:space-between;
    padding:8px 0;
    border-bottom:1px solid #222;
}

.skill-category{
    font-weight:600;
    color:#ffffff;
}

.skill-list{
    color:#8a8a8a;
}

/* fields of focus */

.focus-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-top:18px;
}

.focus-item{
    background:#151515;
    padding:16px;
    border-radius:10px;
    border:1px solid #222;
}

.focus-item h3{
    font-size:16px;
    margin-bottom:6px;
    color:#ffffff;
}

.focus-item p{
    font-size:14px;
    color:#8a8a8a;
    line-height:1.4;
}

/* footer */

.footer{
    margin-top:10px;
    padding-bottom: 20px;
}

.footer-inner{
    width:50%;
    margin:0 auto;
    text-align:center;
}

.footer p{
    color:#666;
    font-size:14px;
}

/* coming soon shimmer */

.coming-soon{
    position:relative;
    overflow:hidden;
    text-align:center;
    padding:40px 20px;
}

.coming-soon p{
    color:#8a8a8a;
    font-size:16px;
}

/* shimmer layer */

.coming-soon::before{
    content:"";
    position:absolute;
    top:0;
    left:-150%;
    width:50%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );

    animation:shimmer 2s infinite;
}

@keyframes shimmer{

    0%{
        left:-150%;
    }

    100%{
        left:150%;
    }

}
/* mobile layout */

@media (max-width:768px){

.container{
    width:60% !important;
}

}


