/* =========================
   HERO SECTION
========================= */
#hero{
    position: relative;
    height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-image: url("images/background.jpg"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

#hero::before{
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

#hero *{
    position: relative;
    z-index: 1;
}

#hero img{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f4a6c1; /* pink soft */
    margin-bottom: 20px;
}

#hero h1,
#hero p{
    color: #ffffff;
    font-weight: bold;
}

/* =========================
   BUTTON (WARNING -> PINK)
========================= */
.btn-warning{
    background-color: #f4a6c1 !important;
    border-color: #f4a6c1 !important;
    color: #000 !important;
}

.btn-warning:hover{
    background-color: #e68fb0 !important;
    border-color: #e68fb0 !important;
    color: #000 !important;
}

.btn-warning:focus,
.btn-warning:active{
    box-shadow: 0 0 0 0.2rem rgba(244, 166, 193, 0.4);
}

/* =========================
   PORTFOLIO FILTER / TAB
========================= */
.nav-pills .nav-link,
.nav-tabs .nav-link {
    color: #f4a6c1;
    font-weight: 500;
}

.nav-pills .nav-link:hover,
.nav-tabs .nav-link:hover {
    color: #e68fb0;
}

.nav-pills .nav-link.active,
.nav-tabs .nav-link.active {
    background-color: #f4a6c1;
    color: #000;
    border-color: #f4a6c1;
}

.nav-pills .nav-link:focus,
.nav-tabs .nav-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(244, 166, 193, 0.4);
}

/* =========================
   FOOTER
========================= */
footer{
    background: #222;
    color: #ddd;
    padding: 30px 20px;
    text-align: center;
}

footer a{
    color: #f4a6c1;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover{
    color: #e68fb0;
}
