@import "colors.css";


html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

body {
    background-color: var(--background-color);
    padding-bottom: 100px;
    font-family: 'Quicksand', sans-serif;
}

h1, h2, h3, h4, .navbar-brand, .menu-title {
}

a{
    color: var(--tertiary-color); 
}

a:hover{
    color: var(--secondary-color);
}

.btn-primary {
    background: var(--text-color);
    border-color: var(--text-color);
}

.btn-primary:hover{
    color: var(--primary-color);
    background: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

.form-group{ 
    margin-bottom: 10px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.container{
    max-width: 100%;
    padding: 20px 50px;
    color: var(--text-color);
}

.main{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-section-container{
    display: flex;
    flex-direction: row;
    height: 90vh;
    margin-bottom: 20px;
}

.hero-section-container .left-part{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
    flex-direction: column;
    height: 100%;
    padding: 20px 20px 20px 0px;
}

.hero-section-container .right-part {
    width: 50%;
    height: 100%;
}

.hero-section .swiper {
    height: 100%;
    border-radius: 5px;
}

.hero-section .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-section .card-body{
    display: flex;
    flex-direction: column;
    text-align: justify;
    justify-content: space-evenly;
    align-items: center;
}

.hero-section .card-body .card-title{
    color: var(--text-color);
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.85;
}

.hero-section .card-body .card-text {
    color: var(--primary-color);
    opacity: 0.85;
}

.hero-section .card-img-wrapper{
    position: relative;
    height: 80%;
}

.swiper-button-next, .swiper-button-prev{
    color: var(--tertiary-color) !important;
}

.hero-section .card-img {
    height: 100%;
    object-fit: cover;
}

.hero-section .card-body {
    height: 20%;
    background-color: var(--secondary-color);
}

.hero-section .btn-link-menu {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

    .hero-section .btn-link-menu:hover {
        background-color: var(--text-color);
    }

.menu-item {
    border: 1px solid color-mix(in srgb, var(--secondary-color) 10%, transparent);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.menu-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: scale(1.03);
}

.menu-item-title{

}

.menu-item-desc{
    color: var(--gray-color);
}

.menu-item-price {
    color: var(--secondary-color);
    font-size: 1.2rem;
}


.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    row-gap: 10px;
    justify-content: space-evenly;
}

.gallery-grid img {
    width: 24%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.featured-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
}



@media (max-width: 1024px) {
    .container {
        padding: 20px;
    }


    .hero-section-container{
        flex-direction: column;
        height: auto;
    }

    .hero-section-container .left-part{
        width: 100%;
        padding: 20px;
    }

    .hero-section-container .right-part{
        width: 100%;
    }

    .hero-section .card-img{
        height: 60vh;
    }
}