@font-face {
    font-family: 'DonJose_Black';
    src: url('../fonts/DonJose_Black.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham_Bold';
    src: url('../fonts/Gotham-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham_Light';
    src: url('../fonts/Gotham-Light.otf') format('opentype');
}


body, html {
    height: 100%;
    margin: 0;
    /* background: url('../images/background.png') no-repeat center center fixed;  */
    background-color: #fbf3e6;
    background-size: cover;
    /* font-family: 'Bangers', cursive; */
    font-family: 'DonJose_Black', sans-serif;
    scroll-behavior: smooth;
}

/* .navbar-custom {
    background-color: #55642d;
}
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #f1dbb2;
}
.navbar-custom .nav-link:hover {
    color: #d4c29d;
}
.navbar-nav {
    flex-direction: row;
    align-items: center;
}
.navbar-nav .nav-item {
    margin: 0 10px;
}
.navbar-brand {
    margin: 0 30px;
}    

.dropdown-menu {
    background-color: #55642d; 
}
.dropdown-item {
    color: #d4c29d !important;
    background-color: #55642d !important;
}

#navbarDropdown{
    color: #f1dbb2;

} */

.navbar-custom {
    /* background-color: #55642d; */
    background-color: rgba(255, 255, 255, 0.081);
    min-height: 56px; /* Adjust this height as needed */
}
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    /* color: #f1dbb2; */
    color: #000;
}
.navbar-custom .nav-link:hover {
    /* color: #d4c29d; */
    color: #000;
}

.navbar-nav {
    flex-direction: row;
    align-items: center;
}
.navbar-nav .nav-item {
    margin: 0 10px;
}
.navbar-brand {
    margin: 0 30px;
}
.dropdown-menu {
    /* background-color: #55642d; Match dropdown background with navbar */
    background-color: rgba(255, 255, 255, 0.338); /*Low opacity background*/
}
.dropdown-item {
    /* color: #d4c29d !important; */
    color: #000;
    background-color: transparent !important;
}
#navbarDropdown {
    /* color: #f1dbb2; */
    color: #000;
}

/* Additional styles for responsiveness */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-left: 20px; /* Add padding to move items to the right */
    }
    .navbar-nav .nav-item {
        margin: 5px 0;
        width: 100%;
    }

    .navbar-brand {
        margin: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 15px;
    }
    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
        border-color: #f1dbb2; /* Change border color if needed */

    }
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.338); /*Low opacity background*/
        position: fixed;
        top: 56px; /* Height of the navbar */
        left: 0;
        width: 100%;
        height: 0; /* Start with a height of 0 */
        overflow-y: auto;
        transition: height 0.3s ease; /* Smooth transition */
    }
    .navbar-collapse.show {
        height: calc(100% - 56px); /* Full height for the transition */
    }
}

/* Change color of the navbar-toggler-icon */
.navbar-toggler {
    border: none; /* Remove border if desired */
    outline: none; /* Remove the outline on focus */
    box-shadow: none;
}
.navbar-toggler:focus {
    outline: none; /* Ensure no outline on focus */
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 24px;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon div {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000; /* Change this color to your desired color */
    position: absolute;
    left: 0;
    transition: all 0.2s ease;
}
.navbar-toggler-icon::before {
    top: 6px;
}
.navbar-toggler-icon div {
    top: 50%;
    transform: translateY(-50%);
}
.navbar-toggler-icon::after {
    bottom: 6px;
}


/* .navbar-custom .navbar-brand {
    font-weight: bold;
}
.navbar-custom .nav-link {
    color: #f1dbb2;
    margin: 0 10px; 
.navbar-custom .nav-link:hover {
    color: #d4c29d;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28241, 219, 178, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
} */


.section {
    padding: 30px 0;
}

.section1 {
    padding: 30px 0;
    background-color: #55642d;
    text-align: center;
    font-family: 'Gotham_Bold', sans-serif;
}
.section-image {
    background: url('../images/section-image2.jpg') no-repeat center center; 
    background-size: cover;
    height: 100vh;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.section-content {
    position: absolute;
    bottom: 80px;
    left: 100px;
    color: #f1dbb2;
    animation: fadeIn 2s;
    font-family: 'Gotham_Bold', sans-serif;
    text-align: center; 
}

/* Media query for mobile view */
@media (max-width: 768px) {
    .section-content {
        position: absolute;
        bottom: 80px;
        left: 30px;
        color: #f1dbb2;
        animation: fadeIn 2s;
        font-family: 'Gotham_Bold', sans-serif;
    }
}

.text-container {
    display: inline-block;
    text-align: center;
    line-height: 1;
}

.line1,
.line2 {
    display: block;
    font-size: 35px;
}


.section-content h2 {
    margin: 0;
}
.section-content .btn-custom {
    background-color: #f2c85c;
    border: none;
    color: #000;
    margin-top: 10px;
    font-family: 'Gotham_Bold', sans-serif;
    display: inline-block;
}

.section1 .container .btn-custom {
    background-color: #f2c85c;
    border: none;
    color: #55642d;
    margin-top: 10px;
}

.section-content a {
    color: #000;
    text-decoration: none;
    font-family: 'Gotham_Bold', sans-serif;

}

.section-image2 {
    background: url('../images/section-image1.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-content2 {
    text-align: center;
}
.section-content2 .btn-custom {
    background-color: #c14d36;
    border: none;
    color: #f1dbb2;
    /* margin-top: 200px; */
    margin-right: 10px;
}

.section-content2 a {
    color: #f1dbb2;
    text-decoration: none;
}



.text-container-i1{
    text-align: center;
}

.section-title {
    color: #55642d;
    text-align: center;
    /* margin-top: 20px; */
    font-size: 2rem;
    font-family: 'Gotham_Bold', sans-serif;
}
.section-subtitle {
    color: #000;
    text-align: center;
    /* margin-top: 10px; */
    font-size: 1rem;
    font-family: 'Gotham_Bold', sans-serif;
}

.section-subtitle a {
    color: #000;
    /* font-family: 'Patrick Hand', cursive; */
    font-family: 'Gotham_Light', sans-serif;
}

.section-title1 {
    color: #f1dbb2;
    text-align: center;
    /* margin-top: 20px; */
    font-size: 2rem;
    font-family: 'Gotham_Bold', sans-serif;
}
.section-subtitle1 {
    color: #f1dbb2;
    text-align: center;
    /* margin-top: 10px; */
    font-size: 2rem;
    font-family: 'Gotham_Bold', sans-serif;
}

/* Media query for mobile view */
@media (max-width: 768px) {
        
    .section-title {
        color: #55642d;
        text-align: center;
        /* margin-top: 20px; */
        font-size: 1.4rem;
        font-family: 'Gotham_Bold', sans-serif;
    }
    .section-subtitle {
        color: #000;
        text-align: center;
        /* margin-top: 10px; */
        font-size: 0.8rem;
        font-family: 'Gotham_Bold', sans-serif;
    }

    .section-subtitle a {
        color: #000;
        /* font-family: 'Patrick Hand', cursive; */
        font-family: 'Gotham_Light', sans-serif;
    }

    .section-title1 {
        color: #f1dbb2;
        text-align: center;
        /* margin-top: 20px; */
        font-size: 1.4rem;
        font-family: 'Gotham_Bold', sans-serif;
    }
    .section-subtitle1 {
        color: #f1dbb2;
        text-align: center;
        /* margin-top: 10px; */
        font-size: 1.4rem;
        font-family: 'Gotham_Bold', sans-serif;
    }
}


.row1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px; /* Adjust as needed to control spacing between columns */
    position: relative; /* Needed for positioning the stamp */
}
.col-md-4 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px; /* Adjust as needed */
    padding: 0;
    margin-bottom: 20px; /* Adjust to control spacing below each column */
}


.stamp-container1 {
    position: absolute;
    top: 100%;
    left: 88.5%;
    transform: translate(-50%, -50%);
    z-index: 1; /* Ensure the stamp is on top */
}

.stamp1 {
    width: 350px; /* Adjust size as needed */
    height: 350px; /* Adjust size as needed */
}

.stamp-container2 {
    position: absolute;
    top: 170%;
    left: 7%;
    transform: translate(-50%, -50%);
    z-index: 1; /* Ensure the stamp is on top */
    /* transform: rotate(15deg);  */
}

.stamp2 {
    width: 400px; /* Adjust size as needed */
    height: 400px; /* Adjust size as needed */
}

.stamp-container3 {
    position: absolute;
    top: 215%;
    left: 83%;
    transform: translate(-50%, -50%);
    z-index: 1; /* Ensure the stamp is on top */
    transform: rotate(-15deg); 
}

.stamp3 {
    width: 200px; /* Adjust size as needed */
    height: 300px; /* Adjust size as needed */
}

@media (min-width: 1440px) and (max-width: 1440px) {

    .stamp-container1 {
        position: absolute;
        top: 100%;
        left: 87%;
        transform: translate(-50%, -50%);
        z-index: 1; /* Ensure the stamp is on top */
    }

    .stamp-container2 {
        left: 8%; /* Adjust for better centering on mobile view */
        top: 160%; 
    }

    .stamp-container3 {
        top: 210%;
        left: 88%;
    }
    
    .stamp3 {
        width: 150px; /* Adjust size as needed */
        height: 150px; /* Adjust size as needed */
    }
}


/* Media query for mobile view */
@media (max-width: 768px) {
    .row {
        flex-direction: row; /* Change direction to row on mobile view */
        gap: 0px; /* Adjust gap as needed */
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: auto; /* Adjust width to auto */
    }

    .text-center {
        padding: 5px; /* Optional: Add some padding for better spacing */
    }
    .stamp-container1 {
        left: 73%; /* Adjust for better centering on mobile view */
        top: 97%; 
        transform: translate(-50%, -50%);
    }

    .stamp1 {
        width: 200px; /* Adjust size as needed */
        height: 200px; /* Adjust size as needed */
    }

    .stamp-container2 {
        left: 9%; /* Adjust for better centering on mobile view */
        top: 230%; 
    }
    .stamp2 {
        width: 150px; /* Adjust size as needed */
        height: 150px; /* Adjust size as needed */
    }

    .stamp-container3 {
        top: 460%;
        left: 55%;
    }
    
    .stamp3 {
        width: 150px; /* Adjust size as needed */
        height: 150px; /* Adjust size as needed */
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    .stamp-container1 {
        left: 85%; /* Adjust for better centering on mobile view */
        top: 97%; 
        transform: translate(-50%, -50%);
    }

    .stamp-container2 {
        left: 8%; /* Adjust for better centering on mobile view */
        top: 152%; 
    }
    .stamp2 {
        width: 250px; /* Adjust size as needed */
        height: 250px; /* Adjust size as needed */
    }

    .stamp-container3 {
        top: 230%;
        left: 78%;
    }
    
    .stamp3 {
        width: 150px; /* Adjust size as needed */
        height: 150px; /* Adjust size as needed */
    }
}

.card-container {
    margin: 20px;
    padding: 0px;
}
.card {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}
.card img {
    width: 100%;
    height: auto;
    display: block;
}

.card .custom-button {
    position: relative;
    z-index: 3;
    margin-top: 10px;
}

.card-container {
    position: relative;
    width: 200px;
    height: 300px;
    margin: 10px;
}
.card-container img {
    position: absolute;
    width: 200px;
    height: 200px;
}
.card-container .back {
    z-index: 1;
}
.card-container .front {
    z-index: 2;
}

@media (max-width: 576px) {
    .card-container {
        margin-bottom: 50px;
    }
    .card .custom-button {
        width: 100%;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .card-container {
        margin-bottom: 50px;
    }
    .card .custom-button {
        width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .card-container {
        margin-bottom: 50px;
    }
    .card .custom-button {
        width: 100%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.custom-button {
    display: block;
    width: 100%;
    margin-top: 250px;
    padding: 10px;
    background-color: #c14d36;
    color: #f1dbb2;
    text-align: center;
    /* font-family: 'Bangers', cursive; */
    font-family: 'DonJose_Black', sans-serif;
    /* font-size: 1.5rem; */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}
.custom-button:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    color: #f1dbb2;
}

.explore-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px auto;
    background-color: transparent;
    color: #c14d36;
    border: 2px solid #c14d36;
    text-align: center;
    /* font-family: 'Bangers', cursive; */
    font-family: 'DonJose_Black', sans-serif;
    font-size: 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.explore-button:hover {
    background-color: #c14d36;
    color: #f1dbb2;
}

.menu-title {
    color: #c14d36;
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
}
.menu-section {
    margin: 20px;
    /* background: rgba(255, 255, 255, 0.8); */
    padding: 20px;
    border-radius: 10px;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}
.menu-item-title {
    font-size: 1.5rem;
    color: #55642d;
}
.menu-item-description {
    font-size: 1rem;
    color: #333;
    flex: 1;
    margin-right: 20px;
}
.menu-item-price {
    font-size: 1.5rem;
    color: #c14d36;
    white-space: nowrap;
}


.footer-custom {
    background-color: #333021;
    padding: 20px 0;
    color: #f1dbb2;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: 50px; */
}
.footer-image {
    max-width: 170px; /* Adjust the size as needed */
}
.footer-title {
    color: #f1dbb2;
    margin-bottom: 10px;
    font-family: 'Gotham_Bold', sans-serif;
}
.footer-section {
    margin-right: 20px;
}
.footer-right {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px; /* Adjust the max-width as needed */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}
.footer-section p {
    margin: 5px 0;
    /* font-family: 'Patrick Hand', cursive; */
    font-family: 'Gotham_Light', sans-serif;
}

.footer-section p a {
    text-decoration: none;
    color: #f1dbb2;
}

@media (max-width: 768px) {
    .footer-right {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
}


.section3{
    padding-top: 50px;
}

.right-text {
    background-color: #c14d36;
    color: black;
    display: flex;
    height: 100%;
    width: 100%;
}

.right-text p {
    margin: 0;
}

.right-text .content {
    padding: 20px;
    font-family: 'Gotham_Light', sans-serif;
}

.right-text .content p{
font-size: larger;
}

.right-text .content h2{
    padding-top: 20px;
    color: #f1dbb2;
    font-family: 'Gotham_Bold', sans-serif;
}


.right-text h1.title {
    margin-bottom: 20px;
    text-align: center;
}

/* Ensure the image and text stack vertically on smaller screens */
@media (max-width: 1024px) {
    .col-md-6 {
        width: 100%;
    }

    .story1{
        width: 100%;
    }

    .col-md-5{
        width: 100%;
    }

    .col-md-7 {
        width: 100%;
    }
}


.about-title {
    color: #c14d36;
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
}
.about-section {
    margin: 20px;
    /* background: rgba(255, 255, 255, 0.8); */
    padding: 20px;
    border-radius: 10px;
}
.about-section p {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 20px;
}

.workshop-details-title {
    color: #c14d36;
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
}

.workshop-title {
    color: #c14d36;
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
}

.workshop-detail-title {
    color: #000;
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.visit-title {
    color: #c14d36;
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
}
.visit-section {
    /* margin: 20px; */
    /* background: rgba(255, 255, 255, 0.8); */
    /* padding: 20px; */
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}
.visit-section p {
    font-size: 1.2rem;
    text-align: center;
    color: #55642d;
    margin-bottom: 70px;
}

#map {
    height: 400px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    #map {
        height: 300px; /* Height for larger screens */
    }
}

.location-info {
    padding-left: 50px;
}

.location-info h4 {
    margin-top: 10px;
}

.btn-custom {
    background-color: #c14d36;
    color: #f1dbb2;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
    margin-top: 10px;
}
.btn-custom:hover {
    /* background-color: #a83725; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #f1dbb2;
}   

.contact-title {
    color: #c14d36;
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
}
.contact-section {
    margin: 20px;
    /* background: rgba(255, 255, 255, 0.8); */
    padding: 20px;
    border-radius: 10px;
}
.contact-section p {
    font-size: 1.2rem;
    color: #55642d;
    margin-bottom: 20px;
    text-align: center;
}
.form-control {
    border-radius: 5px;
    border: 1px solid #c14d36;
}


.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    white-space: nowrap;
    background-color: #f1dbb2;
}

.carousel-slide {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.carousel-slide img {
    width: 250px;
    height: auto;
    display: inline-block;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.overlay-bar {
    text-align: center;
    padding: 20px 0;
    background-color: #f1dbb2;
    color: #55642d;
}

.overlay-bar h1 {
    margin: 0;
    font-size: 700;
    /* font-family: presicav, sans-serif !important; */
    
    font-family: 'Gotham_Light', sans-serif;
    
}

.overlay-bar p {
    margin: 0;
    font-size: 24px;
}

.food-item-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-left: 100px;
}
.food-item {
    text-align: center;
    max-width: 220px;
}
.food-item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    margin-left: 20px;
}
.food-item h5 {
    font-size: 20px;
    margin-bottom: 10px;
    /* font-family: 'Gotham_Light', sans-serif; */
    font-family: 'Gotham_Bold', sans-serif;

}

.food-item h6 {
    font-size: 15px;
    font-family: 'Gotham_Light', sans-serif;
}

.slick-prev:before,
.slick-next:before {
    color: black; /* Arrow colors */
}
.btn-info {
    background-color: transparent;
    border: none;
    color: #55642d;
    font-size: 20px;
    
}
.btn-info:hover {
    color: #55642d;
}
.food-carousel {
    padding: 20px;
    border-radius: 10px;
    padding-bottom: 50px;
}
@media (max-width: 768px) {
    .food-item-container {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    .food-item {
        max-width: 100%;
    }
    .food-item img {
        width: 150px;
        height: 150px;   
        margin-left: 15px;
    }
    .container {
        width: 90%;
    }
}

/* Loader spinner styles */
#loader {
    position: absolute;
    left: 45%;
    top: 30%;
    transform: translate(-50%, -50%);
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #55642d;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@media (max-width: 768px) {

    #loader {
        position: absolute;
        left: 35%;
        top: 30%;
        transform: translate(-50%, -50%);
        border: 16px solid #f3f3f3;
        border-radius: 50%;
        border-top: 16px solid #55642d;
        width: 120px;
        height: 120px;
        animation: spin 2s linear infinite;
    }

}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Hide the loader initially */
.hidden {
    display: none;
}

.form-group{
    padding-bottom: 20px;
}