img{
    width: 300px;
    height: 300px;
    display: block;
    margin: 50px auto;
}
body{
    margin: 0px;
}
h1{ 
    text-align: center;
    font-style:oblique;
    font-size: 120px;
    color: rgb(234, 239, 242);
}
h2{
    text-align: center;
    font-style:oblique;
    font-size: 40px;
    color: rgb(184, 205, 224);
}
.content{
    margin-left: 180px;     
    width: calc(100% - 180px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
}
.navbar{
    width: 110px;
    height: 100vh;
    background-color: rgb(82, 64, 38);
    position: fixed;
    top: 0;
    left: 0;
}
.navbar ul{
    list-style-type: none;
    background-color:rgb(117, 13, 13);
    padding: 40px 0;
    margin:auto;
    height: 1000px;
}
.navbar a{
    text-decoration: none;
    color: whitesmoke;
    padding: 20px;
    display: block;
    text-align: center;
}
.navbar a:hover{
    background-color: rgb(216, 181, 159);
}
.navbar li{
    float: center;
}
body{
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("caibackground.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}





p{
    text-align: center;
    font-style: normal;
    font-size: 15px;
    color: white;
}
.about-container{
    width: 100%;
    max-width: 900px;
    margin: 80px auto;
    padding: 80px;

    background: rgba(0, 0, 0, 0.6); 
    border-radius: 50px;

    color: rgb(208, 215, 219);
}
.about-container pre{
    text-align: justify;    
    font-size: 20px;
    line-height: 1.8;
}
.photo-gallery{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}
.left,
.right{
    width: 400px;
    height:500px;
}
.center{
    width:600px;
    height:400px;
}
.photo-gallery img{
    object-fit:cover;
    border-radius: 0px;
    border-color: rgb(206, 179, 106);
    border-style: solid;
    border-width: 10px;
}
.shs{
    width: 85%;
    margin: 60px auto;
    text-align: center;
}
.shs h2{
    color: white;
    font-size: 32px;
    margin-bottom: 30px;
}
.gallery{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    justify-items: center;
    margin-bottom: 35px;
}
.gallery img{
    width: 220px;
    height: 160px;
    object-fit: cover;
    border: 4px solid #d8b65b;
    border-radius: 8px;
    transition: .3s;
}
.gallery img:hover{
    transform: scale(2.00);
}
.shs pre{
    width: 80%;
    margin: auto;
    color: white;
    font-size: 19px;
    line-height: 1.8;
    text-align: justify;
}






.portfolio-description{
    width: 75%;
    margin: 30px auto 40px;
    text-align: center;
    font-size: 30px;
    color: rgb(235, 220, 188);
    line-height: 1.5;
    font-weight: bold;
    font-style: oblique;
}
.portfolio-img{
    width: 800px;
    height: 450px;
    object-fit: cover;
    border-color: white;
    border-style: solid;
    border-width: 15px;
}
.reflection{
    width: 70%;
    height: 100%;
    margin: 20px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.reflection pre{
    color: white;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
}






.contact-box{
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.55);
    padding: 40px;
    border-radius: 20px;
    color: white;
    width: 450px;
    backdrop-filter: blur(5px);
}
.contact-box h1{
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
}
.contact-item{
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 22px;
}
.contact-item img{
    width: 35px;
    height: 35px;
    margin-right: 20px;
}
.contact-item a{
    color: white;
    text-decoration: none;
}
.contact-item a:hover{
    color: #f6d5c3;
}



.navbar a{
    display: block;
    padding: 12px 20px;
    color: white;
    border-radius: 8px;
    transition: .3s;
}
.navbar a.active{
    background: white;
    color: #8B0000;
    font-weight: bold;
}
.navbar a:hover{
    transform: translateX(6px);
}
/* =====================================
   HOME | LANDING PAGE BUTTON
===================================== */

.home-button-container{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:60px 0 40px;

    position:relative;

    z-index:10;

}


/* Button Design */

.home-btn{

    display:flex;

    justify-content:center;

    align-items:center;


    width:260px;

    height:60px;


    text-decoration:none;

    color:white;


    background:rgba(112,40,40,0.85);


    border:3px solid rgb(216,181,159);


    border-radius:40px;


    font-size:18px;

    font-weight:bold;

    letter-spacing:1px;


    box-shadow:

    0 0 15px rgba(216,181,159,.5),

    0 0 30px rgba(112,40,40,.5);


    backdrop-filter:blur(8px);


    transition:.4s ease;

}



/* Hover Effect */

.home-btn:hover{

    background:rgb(216,181,159);

    color:rgb(112,40,40);


    transform:translateY(-8px) scale(1.05);


    box-shadow:

    0 0 25px rgb(216,181,159),

    0 0 50px rgba(216,181,159,.7);

}



/* Mobile */

@media(max-width:768px){

    .home-btn{

        width:220px;

        height:55px;

        font-size:15px;

    }

}