/* Background and Container Styles */
.background-container {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(85%) brightness(90%);
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Optional dark overlay */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

.pcView{
    display: block !important;
}

.mobileView{
    display: none !important;
}

/* Header Content Styles */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 2s ease-in-out;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInDown 1s ease-out;
}

.sub-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #f0f0f0;
}

/* Typewriter Effect Styles */
.typewriter-container {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 620px; /* Adjust as needed */
    overflow: hidden;
    text-align: left; /* Align text left for better readability */
    margin-left: 20px;
}

#typed-text {
    display: inline;
    white-space: nowrap;
    overflow: hidden;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    border-right: 4px solid rgba(255, 255, 255, 0.75); /* Typing effect */
    animation: typing 10s steps(60, end), blink 0.75s step-end infinite;
}

/* Button Group Styles */
.button-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    animation: fadeInUp 2.5s ease-in-out;
}

.button-group a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn1 {
    background: linear-gradient(135deg, #ff6a3d, #ff8256);
    color: #fff;
}

.btn1:hover {
    background: linear-gradient(135deg, #ff8256, #ff9a6c);
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(255, 106, 61, 0.4);
}

.btn2 {
    background: #fff;
    color: #ff6a3d;
    border: 2px solid #ff6a3d;
}

.btn2:hover {
    background: #ff6a3d;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(255, 106, 61, 0.4);
}

/* Keyframe Animations */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0% {
        border-right-color: rgba(255, 255, 255, 0.75);
    }
    50% {
        border-right-color: transparent;
    }
    100% {
        border-right-color: rgba(255, 255, 255, 0.75);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 767px) {
    .header-content h1 {
        font-size: 3rem;
    }

    .sub-heading {
        font-size: 1.2rem;
    }

    .button-group {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .btn1, .btn2 {
        width: 100%;
        text-align: center;
    }

    .pcView{
        display: none !important; 
    }

    .mobileView{
        display: block !important;
    }


}
/* END of main slider */




/* menu section */
.culinary-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    color: #666a73;
}
.culinary-carousel {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    position: relative;
}
.culinary-carousel__overflow-container {
    overflow: hidden;
    width: 100%;
}
.culinary-carousel__nav-left,
.culinary-carousel__nav-right {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.culinary-carousel__nav-left::before,
.culinary-carousel__nav-right::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    display: block;
}
.culinary-carousel__nav-left {
    left: -20px;
}
.culinary-carousel__nav-left::before {
    transform: rotate(-135deg);
}
.culinary-carousel__nav-right {
    right: -20px;
}
.culinary-carousel__nav-right::before {
    transform: rotate(45deg);
}
.culinary-carousel__nav-left[disabled],
.culinary-carousel__nav-right[disabled] {
    opacity: 0.2;
    cursor: not-allowed;
}
.culinary-carousel__cards {
    display: flex;
    transition: transform 300ms ease;
    width: 100%;
}
.culinary-carousel__card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
}
.culinary-carousel__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 300ms ease;
}
.culinary-carousel__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.culinary-carousel__card:hover .culinary-carousel__overlay {
    opacity: 1;
}
.culinary-carousel__overlay-symbol {
    font-size: 2rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .culinary-carousel__card {
        flex: 0 0 calc(50% - 20px);
    }
    .culinary-carousel__nav-left {
        left: 0;
    }
    .culinary-carousel__nav-right {
        right: 0;
    }
}
@media (max-width: 480px) {
    .culinary-carousel__card {
        flex: 0 0 calc(100% - 20px);
    }
}
/* END OF menu section */


/* Parallax section 1 */
.custom-container {
    position: relative;
    background-image: url('../../../image/shop.webp'); /* Replace with your image path */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 100px 20px;
    text-align: left;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-container .overlayParalax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust opacity for better text visibility */
}

.custom-container .content {
    position: relative;
    z-index: 2;
    max-width: 800px; /* Adjust the width to control the text area */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .custom-container {
        padding: 50px 10px;
        background-attachment: scroll; /* Disable parallax on mobile for better performance */
        background-size: cover;
        background-position: center;
    }



    .custom-container .content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .custom-container {
        padding: 30px 5px;
        background-attachment: scroll; /* Disable parallax on very small screens */
    }

    .custom-container .content p {
        font-size: 13px; /* Adjust font size for readability on small screens */
    }

    .custom-container .content h3 {
        font-size: 18px; /* Adjust font size for smaller screens */
    }
}
/* END OF Parallax section 1 */




/* Parallax section 2 */
.custom-container2 {
    position: relative;
    background-image: url('../../../image/oldnew/parallax2.webp'); /* Replace with your image path */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 100px 20px;
    text-align: left;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.custom-container2 .overlayParalax2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust opacity for better text visibility */
}

.custom-container2 .content {
    position: relative;
    z-index: 2;
    max-width: 800px; /* Adjust the width to control the text area */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .custom-container2 {
        padding: 50px 10px;
        background-attachment: scroll; /* Disable parallax on mobile for better performance */
        background-size: cover;
        background-position: center;
        height: auto; /* Let the height adjust automatically */
    }

    .custom-container2 .content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .custom-container2 {
        padding: 30px 5px;
        background-attachment: scroll; /* Disable parallax on very small screens */
    }

    .custom-container2 .content p {
        font-size: 14px; /* Adjust font size for readability on small screens */
    }

    .custom-container2 .content h3 {
        font-size: 18px; /* Adjust font size for smaller screens */
    }
}
/* END OF Parallax section 2 */




/* Get In touch section */
.contact-section {
    background-color: #801515;
    color: white;
    padding: 40px 0;
}

.contact-section a{
    text-decoration: none;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact-icon {
    background-color: #ff6a3d;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}
.contact-text {
    flex: 1;
}
/* End of get in touch section */





