:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #DA9F5B;
  --secondary: #33211D;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #FFFBF2;
  --dark: #111111;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Montserrat", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
@media (min-width: 576px) {
    .float-sm-left {
        float: left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float: left !important
    }

    .float-md-right {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float: left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: sticky !important
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0)
}

@keyframes action {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-15px)
    }
}

.overlay-top::before,
.overlay-bottom::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 15px;
    left: 0;
    z-index: 1
}

.overlay-top::before {
    top: -1px;
    background: url(../img/overlay-top.png)
}

.overlay-bottom::after {
    bottom: -1px;
    background: url(../img/overlay-bottom.png)
}

.reservation,
.page-header,
.offer,
.footer {
    background: linear-gradient(rgba(51, 33, 29, 0.9), rgba(5, 4, 4, 0.9)), url(../assets/bg3.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover
}

/* For bottom torn paper effect on any element */
.torn-paper-bottom {
    position: relative;
}

.torn-paper-bottom::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 15px;
    left: 0;
    bottom: -1px;
    z-index: 1;
    background: url(../img/overlay-bottom.png);
    background-repeat: repeat-x;
    background-size: contain;
}

.hero {
    width: 100%;
    height: auto;
    background: linear-gradient(rgba(5, 5, 5, 0.9), rgba(6, 5, 5, 0.9)), url(../assets/bg6.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.hero .about_text {
    color:#fff;
    width: 80%;
    text-align: center;
    font-size: 16px;
}

.hero .read_more {
    background-color: #FFD1BA;
    color: #e83e8c;
    padding: 10px;
    width: fit-content;
    margin-top: 30px;
    text-decoration: none;
    text-transform: capitalize;
}

.hero img {
    width:350px;
    height: auto;
    object-fit: cover;
}

.hero.torn-paper-bottom {
    position: relative;
}

.hero.torn-paper-bottom::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 15px;
    left: 0;
    bottom: -1px;
    z-index: 1;
    background: url(../img/overlay-bottom.png);
    background-repeat: repeat-x;
    background-size: contain;
}

.torn-paper-top {
    position: relative;
}

.torn-paper-top::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 15px;
    left: 0;
    top: -1px;
    z-index: 1;
    background: url(../img/overlay-top.png);
    background-repeat: repeat-x;
    background-size: contain;
}

/* Add to your existing style.min.css */

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Carousel Slides */
.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 400px; /* Match your hero height */
}

/* Individual Slide */
.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(rgba(5, 5, 5, 0.9), rgba(6, 5, 5, 0.9)), url(../assets/bg6.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

/* Torn paper effects for carousel */
.carousel-slide.torn-paper-top {
    position: relative;
}

.carousel-slide.torn-paper-top::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 15px;
    left: 0;
    top: -1px;
    z-index: 1;
    background: url(../img/overlay-top.png);
    background-repeat: repeat-x;
    background-size: contain;
}

.carousel-slide.torn-paper-bottom {
    position: relative;
}

.carousel-slide.torn-paper-bottom::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 15px;
    left: 0;
    bottom: -1px;
    z-index: 1;
    background: url(../img/overlay-bottom.png);
    background-repeat: repeat-x;
    background-size: contain;
}

/* Slide Content */
.carousel-slide .slide-content {
    color: var(--light);
    width: 80%;
    text-align: center;
    font-size: 16px;
    z-index: 2;
    position: relative;
}

.carousel-slide .slide-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font-family-sans-serif);
}

.carousel-slide .slide-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.carousel-slide .slide-button {
    background-color: var(--primary); /* Using your primary color #DA9F5B */
    color: var(--light);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-family-sans-serif);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-slide .slide-button:hover {
    background-color: var(--secondary); /* Using your secondary color #33211D */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Carousel Navigation */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(218, 159, 91, 0.8); /* --primary with opacity */
    color: var(--light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background-color: var(--light);
}

/* Responsive Design */
@media (min-width: 768px) {
    .carousel-slide .slide-title {
        font-size: 3.5rem;
    }
    
    .carousel-slide .slide-description {
        font-size: 1.5rem;
    }
    
    .carousel-slides {
        height: 500px;
    }
}

@media (min-width: 992px) {
    .carousel-slides {
        height: 600px;
    }
    
    .carousel-slide .slide-title {
        font-size: 4rem;
    }
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-slide.active .slide-content {
    animation: fadeIn 0.8s ease forwards;
}

/* Auto-play indicator */
.carousel-autoplay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding-bottom: 30px;
    padding-top: 40px;
}

.location_link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
}

.footer .location_link svg {
    width: 70px;
    height: 70px;
    color: var(--white);
}

.contact-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.restaurant-name {
    color: #c62828;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.restaurant-tagline {
    color: #666;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 35px;
    font-style: italic;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 40px;
    gap: 20px;
}

@media(max-width:768px){
    .contact-info {
        grid-template-columns: repeat(1,1fr);
    }
    .hero .about_text {
        color:#fff;
        width: 95%;
        text-align: center;
        font-size: 16px;
    }
}

.contact-item {
    display: flex;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contact-item:hover {
    background-color: #fff5f5;
    transform: translateX(5px);
}

.icon-container {
    background-color: #ffebee;
    color: #c62828;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-container i {
    font-size: 1.3rem;
}

.details h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.details p {
    color: #555;
    line-height: 1.5;
}

.details a {
    color: #c62828;
    text-decoration: none;
    transition: color 0.2s;
}

.details a:hover {
    color: #b71c1c;
    text-decoration: underline;
}

.divider {
    height: 1px;
    background-color: #eee;
    margin: 15px 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .contact-card {
        padding: 30px 25px;
    }
    
    .restaurant-name {
        font-size: 1.7rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .icon-container {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 400px) {
    .contact-card {
        padding: 25px 20px;
    }
    
    .restaurant-name {
        font-size: 1.5rem;
    }
    
    .icon-container {
        width: 45px;
        height: 45px;
    }
}

.download_btn {
    padding: 20px;
    text-decoration: none;
    margin-top: 40px;
    border: 3px dotted #A66A4C;
    color: #fff;
    display: flex;
    align-items: center;
}

.download_wrapper {
    margin-top:30px; 
    display:flex;gap:20px
}

@media (max-width:768px){
    .download_wrapper {
        margin-top:30px; 
        display:flex;
        flex-direction: column;
    }
}