@media(min-width: 992px){
    .navbar-brand-wrapper{
        margin-left: 100px;
    }

    .navbar-nav{
        padding-right:100px
    }
}

@media (max-width:768px){
    .about{
        padding:60px 0;
    }
    .about-title{
        font-size:36px;
        text-align:center;
    }
    .about-text{
        text-align: center;
    }
    .about-image-wrapper{
        margin: 40px auto 0;
    }
}



.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    
}

.hero-content .lead{
    font-weight: 350;
}


.hero-content .btn{
    font-weight: 600;
}

.hero-camera-icon{
    font-size: 80px;
}

.scroll-indicator{
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 30px;
    animation: bounce 0.8s infinite ease-in-out;
}

.mouse-icon{
    width: 30px;
    height: auto;
    fill: white;
}

@keyframes bounce{
    0%, 100%{
        transform: translateX(-50%) translateY(0);
    }
    50%{
        transform: translateX(-50%) translateY(-12px);
    }
}


/*Album Section*/


.albums{
    padding: 80px;
    background-color: #e8efe8;
}
.album-card img{
    width: 100%;
    height: auto;
}
.album-number{
    font-size: 14px;
    letter-spacing:1px;
    color: #2f4f2f;
    margin-bottom: 8px;
}
.album-line{
    width: 30px;
    height: 1px;
    background-color: #2f4f2f;
    margin: 0 auto 12px auto;
}
.album-title{
    font-family: "Georgia";
    font-style: italic;
    font-size: 36px;
    color: #2f4f2f;
    margin-bottom: 10px;
}
.album-image{
    width: 100%;
    height: 320px;
    transition: transform 0.6s ease;
}
.album-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.album-card{
    max-width: 100%;
}
.album-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: #4f6b4f;
}
.album-link{
    text-decoration: none;
    color:inherit;
    display: block;
}
.album-card:hover .album-image {
    transform: scale(1.08) rotate(1.5deg);
}


/* "About-Me" Section*/
.about{
    padding: 100px 0;
    background-color: #c4c8c3;
}
.about-title{
    font-size:48px;
    font-weight: 500;
    margin-bottom: 30px;
}
.about-text{
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-image-wrapper{
    max-width:700px;
    margin-left: 30px;
}

.about-image{
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}


/*Achivement*/

    /*Stats Wrapper*/
.Stats{
    margin-top: 50px;
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
}
    /*Single stat*/
.stat-item{
    text-align: center;
}

    /*Icon*/
.stat-icon{
    font-size: 48px;
    display: block;
    margin-bottom: 8px;
}

    /*Number*/
.stat-number{
    font-family: Oswald;
    font-size: 24px;
    font-weight: 600;
}
    /*Label*/
.stat-label{
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
}    


/*Contact*/
.Contact{
    margin-top: 80px;
}
.Contact-title{
    font-family: 'Times New Roman', Times, serif;
    font-size: 60px;
}

.contact-subtitle{
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
}
.contact-form-inner{
    max-width: 640px;
    margin-left: 150px;
}
.Address {
    height: 100px;      /* increase box height */
    font-size: 18px;   /* optional: bigger text */
    padding: 12px 16px;
}
.social_media{
    margin-left: -10px;
}

.butn{
    color: #f4f4f4;
    background-color: #011106;
    
}
.btn-submit{
    width: 100%;
    padding: 12px 0;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    
}
.btn-submit:hover{
    background-color: #000;
    transform: translate(-1px);
    transition: all 0.2s ease;
}


/*Footer*/
.site-footer{
    margin-top: 120px;
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    font-size: 14px;
    font-family: "poppins";
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-left{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 500;
}
.footer-icon{
    font-size: 20px;
}
.footer-center{
    opacity: 0.8;
    text-align: center;
}
.footer-right{
    display: flex;
    gap: 20px;
}
.footer-right a {
    color: #bbb;
    text-decoration: none;
}
.footer-right a:hover{
    color: #fff;
}
@media(max-width: 768px){
    .footer-content{
        flex-direction: column;
        gap:15px;
        text-align: center;
    }
    .footer-right{
        justify-content: center;
    }
}