/* General Styles */
body {
    font-family:  "Open Sans", sans-serif;
    color: #333;
    background-color: #f8f8f8;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #555;
    font-weight: 700;
    margin-bottom: 20px;
}

a {
    color: #a72b32;
    text-decoration: none;
}

a:hover {
    color: #7a1f24;
}

.btn-primary {
    background-color: #a72b32;
    border-color: #a72b32;
}

.btn-primary:hover {
    background-color: #7a1f24;
    border-color: #7a1f24;
}

.btn-secondary {
    background-color: #d4aa70;
    border-color: #d4aa70;
    color: #333;
}

.btn-secondary:hover {
    background-color: #b08a57;
    border-color: #b08a57;
    color: #fff;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #a72b32;
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link {
    color: #555;
    padding: 12px 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fff;
    background-color: #a72b32;
}

/* Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.carousel-caption h5 {
    font-size: 48px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.carousel-caption p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
}

.carousel-item {
    background-size: cover;
    background-position: center;
}

/* About Preview Section Styles */
.about-preview {
    padding: 50px 0;
    background-color: #f8f8f8;
}

.about-preview h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Featured Dishes Section Styles */
.featured-dishes {
    padding: 50px 0;
    background-color: #fff;
}

.featured-dishes h2 {
    text-align: center;
    margin-bottom: 30px;
}

.featured-dishes .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.featured-dishes .card-body {
    padding: 20px;
}

.featured-dishes .card-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.featured-dishes .card {
    transition: transform 0.3s ease;
}

.featured-dishes .card:hover {
    transform: scale(1.05);
}

.featured-dishes .card-text.price {
    color: #a72b32;
    font-weight: bold;
}

/* Testimonials Section Styles */
.testimonials {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.testimonials .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #a72b32;
    font-size: 36px;
}

.testimonials .card {
    border: none;
    margin-bottom: 20px;
}

.testimonials .card-body {
    padding: 25px;
}

.testimonials p.lead {
    font-size: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonials p.author {
    font-size: 16px;
    color: #a72b32;
    font-weight: bold;
    margin-top: 15px;
}

/* Newsletter Section Styles */
.newsletter {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 20px;
    color: #a72b32;
    font-size: 36px;
}

.newsletter p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.newsletter form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter .form-control {
    border-radius: 5px;
    border-color: #ddd;
    padding: 12px;
    font-size: 16px;
}

.newsletter .form-control:focus {
    border-color: #a72b32;
    box-shadow: none;
}

.newsletter .btn-primary {
    padding: 12px 30px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.newsletter .btn-primary:hover {
    transform: scale(1.05);
}

/* Testimonials Section Styles */
.testimonials .card {
    transition: all 0.3s ease;
}

.testimonials .card:hover {
    transform: translateY(-5px);
}

/* Menu Modal Styles */
#menuModal .modal-body {
    padding: 0;
}

#menuModal .nav-tabs {
    border-bottom: 1px solid #ddd;
}

#menuModal .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    color: #495057;
}

#menuModal .nav-link.active,
#menuModal .nav-link:hover {
    background-color: #f8f9fa;
    border-color: #ddd #ddd #fff;
}

#menuModal .tab-content {
    padding: 1rem;
}

#menuModal .menu-item {
    margin-bottom: 1rem;
}

#menuModal .menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.25rem;
}

#menuModal .menu-item h3 {
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

#menuModal .menu-item p {
    font-size: 1rem;
}

#menuModal .menu-item .price {
    font-weight: bold;
}

#menuModal .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#menuModal .card:hover {
    transform: translateY(-5px);
}

#menuModal .tab-pane {
    transition: opacity 0.3s ease;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* About Page Styles */
.about {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.about .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.about h2 {
    margin-bottom: 30px;
    color: #a72b32;
    font-size: 36px;
    text-align: center;
}

.about img {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about h3 {
    font-size: 24px;
    color: #a72b32;
    margin-bottom: 15px;
}

.about ul {
    list-style: none;
    padding: 0;
}

.about li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #555;
}

/* Menu Page Styles */
.menu {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.menu h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #a72b32;
    font-size: 36px;
}

.menu .nav-tabs {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 30px;
}

.menu .nav-tabs .nav-link {
    border: 1px solid #ddd;
    border-radius: 50px;
    color: #555;
    padding: 12px 30px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.menu .nav-tabs .nav-link:hover,
.menu .nav-tabs .nav-link.active {
    background-color: #a72b32;
    color: #fff;
    border-color: #a72b32;
}

.menu .tab-content {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.menu .menu-item {
    margin-bottom: 30px;
    text-align: center;
}

.menu .menu-item a {
    display: block;
    margin-bottom: 15px;
}

.menu .menu-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu .menu-item img:hover {
    transform: scale(1.05);
}

.menu .menu-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #555;
}

.menu .menu-item .price {
    color: #a72b32;
    font-weight: bold;
    font-size: 18px;
}

/* Contact Page Styles */
.contact {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.contact .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.contact h2 {
    margin-bottom: 30px;
    color: #a72b32;
    font-size: 36px;
    text-align: center;
}

.contact form {
    margin-bottom: 30px;
}

.contact .form-label {
    font-weight: 600;
    color: #555;
}

.contact .form-control {
    border-radius: 5px;
    border-color: #ddd;
}

.contact .form-control:focus {
    border-color: #a72b32;
    box-shadow: none;
}

.contact h4 {
    font-size: 24px;
    color: #a72b32;
    margin-bottom: 15px;
}

.contact p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.contact iframe {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Reservation Page Styles */
.reservation {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.reservation .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.reservation h2 {
    margin-bottom: 30px;
    color: #a72b32;
    font-size: 36px;
    text-align: center;
}

.reservation form {
    margin-bottom: 30px;
}

.reservation .form-label {
    font-weight: 600;
    color: #555;
}

.reservation .form-control {
    border-radius: 5px;
    border-color: #ddd;
}

.reservation .form-control:focus {
    border-color: #a72b32;
    box-shadow: none;
}

.reservation .btn-primary {
    padding: 12px 30px;
    font-size: 18px;
}

#confirmationMessage {
    margin-top: 20px;
    padding: 20px;
    background-color: #d4aa70;
    color: #333;
    border-radius: 5px;
    text-align: center;
}

/* Order Page Styles */
.order {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.order .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.order h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #a72b32;
    font-size: 36px;
}

.order .menu-item {
    margin-bottom: 30px;
    text-align: center;
}

.order .menu-item a {
    display: block;
    margin-bottom: 15px;
}

.order .menu-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.order .menu-item img:hover {
    transform: scale(1.05);
}

.order .menu-item h5 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #555;
}

.order .menu-item .price {
    color: #a72b32;
    font-weight: bold;
    font-size: 18px;
}

.order .menu-item .btn-primary {
    padding: 12px 30px;
    font-size: 18px;
    cursor: pointer;
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    z-index: 1000;
    display: none;
}

.popup h3 {
    font-size: 24px;
    color: #a72b32;
    margin-bottom: 20px;
}

.popup p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.portfolio-menu{
    text-align:center;
}
.portfolio-menu ul li{
    display:inline-block;
    margin:0;
    list-style:none;
    padding:10px 15px;
    cursor:pointer;
    -webkit-transition:all 05s ease;
    -moz-transition:all 05s ease;
    -ms-transition:all 05s ease;
    -o-transition:all 05s ease;
    transition:all .5s ease;
}

.portfolio-item{
    /*width:100%;*/
}
.portfolio-item .item{
    /*width:303px;*/
    float:left;
    margin-bottom:10px;
}
