/* ===================================
   Portfolio Design Enhancements
   Minimal & Clean
   =================================== */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* --- Navigation: sticky with blur --- */
#fh5co-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 6px 0;
    background: rgba(34, 34, 34, 0.7);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transition: background 0.3s ease, padding 0.3s ease;
}

#fh5co-nav.scrolled {
    padding: 3px 0;
    background: rgba(34, 34, 34, 0.95);
}

/* --- Project Images: slightly rounder + subtle hover lift --- */
.fh5co-project .fh5co-imgs .img-holder-1 img,
.fh5co-project .fh5co-imgs .img-holder-2 img {
    border-radius: 10px !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.fh5co-project .fh5co-imgs .img-holder-1:hover img,
.fh5co-project .fh5co-imgs .img-holder-2:hover img {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.55) !important;
}

/* --- Project Titles: subtle underline accent --- */
.fh5co-project .fh5co-text h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.fh5co-project .fh5co-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
}

/* --- Buttons: cleaner pill shape --- */
.btn.btn-light.btn-outline {
    border-radius: 30px !important;
    padding: 10px 28px !important;
    font-size: 14px !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
}

.btn.btn-light.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #fff !important;
    color: #fff !important;
}

/* --- Footer social icons: circle style --- */
.fh5co-social li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 0 4px;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
}

.fh5co-social li a:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

/* --- Thin scrollbar --- */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #222;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* --- Section divider: softer line --- */
.fh5co-project::before {
    background: rgba(255, 255, 255, 0.04) !important;
    height: 1px !important;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
    #fh5co-nav {
        padding: 3px 0;
    }

    .btn.btn-light.btn-outline {
        padding: 8px 22px !important;
        font-size: 13px !important;
    }
}
