* {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #fff !important;
}

.navbar {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.74) !important;
}

.socmed-links .socmed:hover {
    color: #2e2e2e !important;
}

.btn-own-color {
    background-color: #0B8DA4 !important;
}

.btn-own-color:hover,
.btn-own-color:focus,
.btn-own-color:active {
    background-color: #065968 !important;
}

section {
    padding: 60px 0;
}

#home {
    padding: 0;
    background: url(../img/bg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

#home .conainer {
    padding: 60px 0;
}

.home-title {
    font-size: 84px;
    font-weight: 900;
    text-shadow: 0 0 5px #2b2b2b;
}

.sec-title {
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
}

#menu,
#reservation {
    background-color: #f5f5f5c5;
}

.food {
    background-color: #f5f5f5c5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 12px #ddd;
}

.img-food-container {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.img-food-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease-in-out;
}

.food:hover img {
    transform: scale(130%);
}

.food-info {
    z-index: 2;
}

.img-container {
    width: 100%;
    aspect-ratio: 1/1;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-item {
    transition: 0.3s ease-in-out;
}

.food-item:hover {
    transform: scale(110%);
}

.about img {
    border-radius: 10px;
    box-shadow: 2px 2px 10px #ddd;
}

.about-details {
    text-indent: 30px;
    text-align: justify;
}

#message {
    height: 120px;
    resize: none;
}

#header {
    height: 55vh;
    background: url(../img/bg3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center bottom;
}

footer {
    background-color: #1F1E1E;
}

/* RESPONSIVENESS */
@media screen and (max-width: 768px) {
    .home-title {
        font-size: 60px;
    }
}