@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,600;0,700;0,800;1,700;1,800&family=Ubuntu:wght@400;500;700&display=swap');

* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}


:root {
    --primary: #a95c18;
    --dark: #21252f;
    --body: #888;
    --box-shadow: 0 8px 22px rgba(0,0,0,0.2);
    --background: #fff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
    color: var(--body);
}

h1,h2,h3,h4,h5,h6,
.display-4 {
    color: var(--dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.navbar {
    box-shadow: var(--box-shadow);
    background: transparent;
}

.navbar-brand img {
    width: 50px;
}

a {
    color: var(--dark);
    text-decoration: none;
}


.btn {
    background-color: #fff;
    border: #a95c18;
    color: #a95c18;
    transition: background-color, color 1.2s;
}

.btn:hover {
    background-color: #a95c18;
}

.btna {
    background-color: #a95c18;
    border-radius: 5px;               
    padding: 3px 10px;
    color: #fff;
    border: #a95c18;
}


.backg {
    background-image: url(../images/about1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    width: 100%;
    height: 50vh;
    padding: 0;
    margin: 0;
    position: relative;
}

.b-cont { 
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    color: #fff;
    text-align: center;
    position: absolute;
}

.b-cont h1 {
    font-weight: 400;
    font-size: 80px;
    color: #fff;
}

.section-title h2 {
    margin-top: 100px;
    font-size: 50px;
    font-weight: bold;
}

.section-title h2 span {
    color: #a95c18;
}


.img-gallery {
    width: 100%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 30px;
}

.img-gallery img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: 0.4s;
}

.img-gallery img:hover {
    /* transform: scale(0.8); */
    box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
}

.full-img {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.full-img img {
    width: 90%;
    max-width: 500px;
}

.full-img span {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.view {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

.view img {
    display: block;
}

.layer {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 25px;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(100%);
}

.view:hover .layer {
    transform: translateY(0);
    opacity: 1;
}

.view:hover img {
    transform: scale(1.2);
}

/* footer */

footer {
    width: 100%;
    /* position: absolute; */
    bottom: 0;
    background: #a95c18;
    color: #fff;
    padding: 100px 0 30px;
    font-size: 13px;
    line-height: 20px;
}

.foot {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 30px;
}

.logo {
    width: 90px;
    margin-bottom: 10px;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    color: #fff;
}

.social-icons i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 15px;
    color: #a95c18;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
    padding: 5px 5px;
}

.col p i {
    margin-right: 5px;
    color: #fff;
    font-size: 20px;
}

.col p a {
    color: #fff;
}

.line {
    width: 80%;
    height: 2px;
    background-color: #fff;
    margin: 16px auto 24px auto;
}

.phsps {
    text-align: center;
    width: 95%;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}


