@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
    --main-color: #443;
    --border-radius: 95% 4% 97% 5% / 4% 94% 3% 95%;
    --border-radius-hover: 4% 95% 6% 95% / 95% 4% 92% 5%;
    --border: .2rem solid var(--main-color);
    --border-hover: .2rem dashed var(--main-color);
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

section {
    padding: 2rem 9%;
}

.heading {
    font-size: 9rem;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: .05rem var(--main-color);
    letter-spacing: .2rem;
    text-align: center;
    pointer-events: none;
    position: relative;
}

.heading span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: var(--main-color);
    font-size: 3rem;
}

.btn {
    display: inline-block;
    padding: .9rem 1.5rem;
    border: var(--border);
    border-radius: var(--border-radius);
    color: var(--main-color);
    background: none;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 1.7rem;
}

.btn:hover {
    border-radius: var(--border-radius-hover);
    border: var(--border-hover);
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    padding: 1.5rem 9%;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 1rem 9%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(68, 51, 51, 0.15);
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--main-color);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: capitalize;
    animation: logoFloat 3s ease-in-out infinite;
}

.header .logo-icon {
    font-size: 2.5rem;
    animation: spin 20s linear infinite;
}

.header .logo-text {
    letter-spacing: 0.1rem;
    background: linear-gradient(135deg, #443 0%, #6b5344 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.header .navbar {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header .navbar a {
    margin: 0;
    font-size: 1.5rem;
    color: var(--main-color);
    position: relative;
    font-weight: 500;
    text-transform: capitalize;
}

.header .navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b8860b, #443);
    transition: width 0.3s ease;
}

.header .navbar a:hover::after {
    width: 100%;
}

.header .btn-header {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #b8860b, #8b6914);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0;
    text-transform: capitalize;
}

.header .btn-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
    background: linear-gradient(135deg, #8b6914, #6b5410);
}

#menu-btn {
    font-size: 2.5rem;
    color: var(--main-color);
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
}

#menu-btn.fa-times {
    transform: rotate(180deg);
}

/* HERO SECTION */

.hero {
    min-height: 100vh;
    margin-top: 6rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(68, 51, 51, 0.6) 0%, rgba(184, 134, 11, 0.3) 100%);
}

@keyframes zoomIn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-size: 5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.featured-image {
    height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    animation: bounce 3s ease-in-out infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-cards {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    width: 100%;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.3);
}

.hero-card i {
    font-size: 3rem;
    color: #b8860b;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.hero-card h3 {
    font-size: 1.8rem;
    color: var(--main-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-card p {
    font-size: 1.4rem;
    color: #666;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin: 8px auto;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollBounce {
    0%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
    }
}

/* HOME */

.home {
    display: none;
}

.home .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.home .row .content {
    flex: 1 1 42rem;
}

.home .row .image {
    flex: 1 1 42rem;
    padding-top: 10rem;
    text-align: center;
}

.home .row .image img {
    height: 35rem;
    animation: float 4s linear infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0rem);
    }

    50% {
        transform: translateY(-7rem);
    }
}

.home .row .content h3 {
    font-size: 6.5rem;
    color: var(--main-color);
    text-transform: uppercase;
}

.home .image-slider {
    text-align: center;
    padding: 3rem 0;
}

.home .image-slider img {
    height: 9rem;
    margin: 0 .5rem;
    cursor: pointer;
    margin-top: 5rem;
}

.home .image-slider img:hover {
    transform: translateY(-2rem);
}

/* ABOUT */

.about .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.about .row .image {
    flex: 1 1 42rem;
}

.about .row .image img {
    width: 100%;
    animation: aboutImage 4s linear infinite;
}

@keyframes aboutImage {

    0%,
    100% {
        transform: scale(.9);
        border-radius: var(--border-radius-hover);
    }

    50% {
        transform: scale(.8);
        border-radius: var(--border-radius);
    }
}

.about .row .content {
    flex: 1 1 42rem;
}

.about .row .content .title {
    color: var(--main-color);
    font-size: 3rem;
    line-height: 1.8;
}

.about .row .content p {
    color: var(--main-color);
    font-size: 1.5rem;
    line-height: 1.8;
    padding: 1rem 0;
}

.about .row .content .icons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 3rem;
}

.about .row .content .icons-container .icons {
    flex: 1 1 15rem;
    padding: 1.5rem;
    text-align: center;
    border: var(--border);
    border-radius: var(--border-radius);
}

.about .row .content .icons-container .icons img {
    height: 5rem;
}

.about .row .content .icons-container .icons h3 {
    font-size: 1.7rem;
    padding-top: 1rem;
    color: var(--main-color);
}

/* MENU */

.menu {
    background: url(../image/menu-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.menu .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.menu .box-container .box {
    flex: 1 1 42rem;
    padding: 2rem;
    border: var(--border);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 6rem;
}

.menu .box-container .box:hover {
    border: var(--border-hover);
    border-radius: var(--border-radius-hover);
}

.menu .box-container .box img {
    height: 8rem;
    margin-left: -6rem;
}

.menu .box-container .box .content h3 {
    font-size: 2.2rem;
    color: var(--main-color);
    line-height: 1.8;
}

.menu .box-container .box .content p {
    font-size: 1.6rem;
    color: var(--main-color);
    line-height: 1.8;
    padding: 1rem 0;
}

.menu .box-container .box .content span {
    font-size: 2rem;
    color: var(--main-color);
    line-height: 1.8;
}

/* REVIEW */

.review .review-slider {
    padding: 7rem 0;
}

.review .review-slider .box {
    border: var(--border);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    z-index: 0;
    padding: 2rem;
}

.review .review-slider .box .fa-quote-left {
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    font-size: 6rem;
    color: #ccc;
    z-index: -1;
}

.review .review-slider .box .fa-quote-right {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    font-size: 6rem;
    color: #ccc;
    z-index: -1;
}

.review .review-slider .box:hover .fa-quote-left {
    top: -6.5rem;
}

.review .review-slider .box:hover .fa-quote-right {
    bottom: -6.5rem;
}

.review .review-slider .box img {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    margin-bottom: .7rem;
}

.review .review-slider .box .stars {
    padding: .5rem 0
}

.review .review-slider .box .stars i {
    font-size: 1.7rem;
    color: var(--main-color);
}

.review .review-slider .box p {
    font-size: 1.6rem;
    color: var(--main-color);
    padding: 1rem 0;
    line-height: 1.8;
}

.review .review-slider .box h3 {
    font-size: 2.2rem;
    color: var(--main-color);
    line-height: 1.8;
}

.review .review-slider .box span {
    font-size: 1.5rem;
    color: var(--main-color);
}

.swiper-pagination-bullet {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 0;
}

.swiper-pagination-bullet-active {
    background: var(--main-color);
}

/* BOOK */

.book {
    background: url(../image/book-bg.jpg);
    background-position: center;
    background-size: cover;
}

.book form {
    margin: 0 auto 2rem auto;
    max-width: 60rem;
    border-radius: var(--border-radius-hover);
    padding: 3rem;
    border: var(--border);
}

.book form .box {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: .5rem;
    font-size: 1.6rem;
    background: none;
    text-transform: none;
    color: var(--main-color);
    border: var(--border);
    margin: .7rem 0;
}

.book form .box:focus {
    border: var(--border-hover);
}

.book form textarea {
    height: 15rem;
    resize: none;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    padding: 1rem 0;
    color: var(--main-color);
}

.footer .box-container .box a {
    display: block;
    font-size: 1.5rem;
    padding: 1rem 0;
    color: var(--main-color);
}

.footer .box-container .box a i {
    padding-right: .5rem;
}

.footer .box-container .box a:hover i {
    padding-right: 2rem;
}

.footer .credit {
    text-align: center;
    font-size: 2rem;
    padding: 2rem 1rem;
    margin-top: 1rem;
    color: var(--main-color);
}

.footer .credit span {
    border-bottom: var(--border-hover);
}



























/* MEDIA QUERIES */

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 1.5rem 5%;
    }

    .header .navbar {
        gap: 1rem;
    }

    .header .navbar a {
        font-size: 1.3rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 6rem;
    }

    .heading span {
        font-size: 2.3rem;
    }

    #menu-btn {
        display: initial;
    }

    .header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .navbar a {
        display: block;
        font-size: 1.5rem;
        margin: 0;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid #eee;
    }

    .header .navbar a::after {
        display: none;
    }

    .header .btn-header {
        display: none;
    }

    .hero {
        min-height: auto;
        margin-top: 4rem;
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .featured-image {
        height: 300px;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        padding: 0;
    }

    .hero-card {
        padding: 1.5rem;
    }

    .home .row .content h3 {
        font-size: 4rem;
    }

    .menu .box-container .box {
        margin-left: 0;
        margin-top: 6rem;
        flex-flow: column;
        text-align: center;
    }

    .menu .box-container .box img {
        margin-left: 0;
        margin-top: -6rem;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .header {
        padding: 1rem 3%;
    }

    .header .logo {
        font-size: 1.5rem;
    }

    .header .logo-icon {
        font-size: 1.8rem;
    }

    .hero {
        padding: 2rem 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .featured-image {
        height: 250px;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .home .row .image img {
        height: auto;
        width: 100%;
    }

    .gallery-container {
        flex-direction: column;
        align-items: center;
    }

    .gallery-card {
        width: 100% !important;
        max-width: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* MENU SECTION */

.menu {
    padding: 5rem 9%;
    background: linear-gradient(135deg, #f9f7f4 0%, #fff 100%);
}

.menu .heading {
    margin-bottom: 4rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.menu-item {
    background: #fff;
    border: var(--border);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(68, 51, 51, 0.15);
    border: var(--border-hover);
}

.menu-item-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0e6d2, #e8dcc8);
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1) rotate(2deg);
}

.price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #b8860b, #8b6914);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.3);
}

.menu-item-content {
    padding: 1.8rem;
}

.menu-item-content h3 {
    font-size: 1.8rem;
    color: var(--main-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.menu-item-content p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.add-btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #b8860b, #8b6914);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.4rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-btn:hover {
    background: linear-gradient(135deg, #8b6914, #6b5410);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(184, 134, 11, 0.3);
}

/* REVIEWS SECTION */

.reviews {
    padding: 5rem 9%;
    background: linear-gradient(135deg, #fff 0%, #f9f7f4 100%);
}

.reviews .heading {
    margin-bottom: 4rem;
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-carousel-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
}

.reviews-carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 calc(50% - 1rem);
    min-width: 400px;
}

.review-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #b8860b;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-stars {
    display: flex;
    gap: 0.3rem;
}

.review-stars i {
    font-size: 1.4rem;
    color: #ddd;
}

.review-stars i.filled {
    color: #b8860b;
    text-shadow: 0 2px 4px rgba(184, 134, 11, 0.3);
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(184, 134, 11, 0.2);
}

.review-text {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-footer {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.review-name {
    font-size: 1.6rem;
    color: var(--main-color);
    font-weight: 600;
}

.review-role {
    font-size: 1.3rem;
    color: #999;
}

/* CAROUSEL NAVIGATION */

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5rem;
    height: 5rem;
    border: none;
    background: linear-gradient(135deg, #b8860b, #8b6914);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.carousel-nav:hover {
    background: linear-gradient(135deg, #8b6914, #6b5410);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -60px;
}

.carousel-next {
    right: -60px;
}

/* CAROUSEL INDICATORS */

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 2rem;
}

.indicator {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #b8860b;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #b8860b;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

.indicator:hover {
    border-color: #8b6914;
    transform: scale(1.1);
}

/* GALLERY CARDS SECTION */
.gallery {
    padding: 5rem 9%;
}

.gallery .heading {
    margin-bottom: 3rem;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
}

.gallery-card {
    flex: 0 0 calc(25% - 1.5rem);
    background: #fff;
    border: var(--border);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-card:hover {
    border: var(--border-hover);
    transform: translateY(-10px) perspective(1000px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(68, 51, 51, 0.2);
}

.gallery-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.gallery-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover .card-image img {
    transform: scale(1.1);
}

.gallery-card .card-content {
    padding: 1.5rem;
}

.gallery-card .card-content h3 {
    font-size: 1.8rem;
    color: var(--main-color);
    margin-bottom: 0.5rem;
}

.gallery-card .card-content p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

/* GALLERY CAROUSEL */

.gallery-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.gallery-carousel-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2rem 0;
}

.gallery-carousel-container::-webkit-scrollbar {
    display: none;
}

.gallery-card-slide {
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: 300px;
}

.gallery-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.gallery-card-slide:hover .gallery-card-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.25);
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card-slide:hover .gallery-card-image img {
    transform: scale(1.08) rotate(0.5deg);
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(68,51,51,0.95) 100%);
    color: #fff;
    padding: 2rem 1.5rem;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.gallery-card-slide:hover .gallery-card-overlay {
    transform: translateY(0);
}

.gallery-card-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-card-overlay p {
    font-size: 1.3rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* GALLERY NAVIGATION BUTTONS */

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5rem;
    height: 5rem;
    border: none;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.85), rgba(139, 105, 20, 0.85));
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
    backdrop-filter: blur(10px);
}

.gallery-nav-btn:hover {
    background: linear-gradient(135deg, #b8860b, #8b6914);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5);
}

.gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-prev-btn {
    left: -65px;
}

.gallery-next-btn {
    right: -65px;
}

/* GALLERY STATUS & INDICATORS */

.gallery-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 0 1rem;
}

.status-text {
    font-size: 1.4rem;
    color: #666;
    font-weight: 500;
}

.gallery-dots {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.gallery-dot {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #b8860b;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #b8860b;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.6);
}

.gallery-dot.focused {
    background: #d4af37;
    border-color: #d4af37;
    transform: scale(1.5);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

.gallery-dot:hover {
    border-color: #8b6914;
    transform: scale(1.15);
}

/* GALLERY MODAL - FOCUS VIEW */

.gallery-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(5px);
    }
}

.gallery-modal-content {
    position: relative;
    background: #fff;
    border-radius: 1.5rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUpModal 0.4s ease;
}

@keyframes slideUpModal {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 4.5rem;
    height: 4.5rem;
    border: none;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.9), rgba(139, 105, 20, 0.9));
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.modal-close-btn:hover {
    background: linear-gradient(135deg, #b8860b, #8b6914);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5);
}

.modal-close-btn:active {
    transform: scale(0.95);
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-info {
    padding: 3rem 2.5rem;
}

.modal-info h2 {
    font-size: 2.5rem;
    color: #443;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-info p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-hint {
    font-size: 1.2rem !important;
    color: #999 !important;
    margin-top: 2rem !important;
    font-style: italic;
}

.click-to-focus-hint {
    font-size: 1rem !important;
    background: rgba(184, 134, 11, 0.9) !important;
    color: #fff !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 0.4rem !important;
    margin-bottom: 0.5rem !important;
    display: inline-block;
    font-weight: 500;
}

.gallery-card-slide.focused .gallery-card-image {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
}

/* BOOKING SECTION */

.booking {
    padding: 5rem 9%;
    background: linear-gradient(135deg, #f9f7f4 0%, #fff 100%);
}

.booking .heading {
    margin-bottom: 4rem;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.booking-info h3 {
    font-size: 2.2rem;
    color: var(--main-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-list {
    list-style: none;
    margin-bottom: 3rem;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.info-list i {
    color: #b8860b;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.15);
}

.info-item i {
    font-size: 2.2rem;
    color: #b8860b;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.6rem;
    color: var(--main-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-item p {
    font-size: 1.4rem;
    color: #666;
}

/* BOOKING FORM */

.booking-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0e6d2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.4rem;
    color: var(--main-color);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e8dcc8;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    color: #333;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b8860b;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #b8860b, #8b6914);
    color: #fff;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #8b6914, #6b5410);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    text-align: center;
    padding: 3rem;
    animation: slideInDown 0.5s ease-out;
}

.success-message i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
    display: block;
}

.success-message h3 {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 0.8rem;
}

.success-message p {
    font-size: 1.5rem;
    color: #666;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOOTER */
.footer {
    background: var(--main-color);
    color: #fff;
    padding: 5rem 9%;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: capitalize;
}

.footer-section p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section ul li:hover {
    color: #fff;
}

.footer-section ul li a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #b8860b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #b8860b;
    border-color: #b8860b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: #ddd;
}

/* Responsive Gallery Cards */
@media (max-width: 1024px) {
    .gallery-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 3rem 2rem;
    }

    .gallery-card {
        flex: 0 0 calc(100% - 1rem);
    }

    .footer {
        padding: 3rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery .heading {
        font-size: 4rem;
    }

    .gallery .heading span {
        font-size: 1.5rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-slide {
        flex: 0 0 calc(100% - 1rem);
        min-width: 100%;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .booking {
        padding: 3rem 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-image-wrapper {
        height: 350px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-overlay h3 {
        font-size: 1.8rem;
    }

    .gallery-overlay p {
        font-size: 1.3rem;
    }

    .gallery-card-slide {
        flex: 0 0 calc(50% - 1rem);
        min-width: 250px;
    }

    .gallery-card-image {
        height: 250px;
    }

    .gallery-prev-btn {
        left: 10px;
    }

    .gallery-next-btn {
        right: 10px;
    }

    .status-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item-image {
        height: 200px;
    }

    .menu-item-content {
        padding: 1.5rem;
    }

    .carousel-slide {
        flex: 0 0 calc(100% - 1rem);
        min-width: 100%;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 1.3rem;
    }

    .review-name {
        font-size: 1.4rem;
    }

    .add-btn {
        font-size: 1.2rem;
    }

    .carousel-nav {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-indicators {
        padding: 0;
        gap: 0.7rem;
    }

    .indicator {
        width: 1rem;
        height: 1rem;
    }

    .booking {
        padding: 2rem 1.5rem;
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-info h3 {
        font-size: 1.8rem;
    }

    .form-group label {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1.3rem;
        padding: 0.8rem;
    }

    .submit-btn {
        font-size: 1.4rem;
        padding: 1rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .info-item {
        padding: 1rem;
    }

    .info-item i {
        font-size: 1.8rem;
    }

    .gallery-image-wrapper {
        height: 280px;
    }

    .gallery-nav {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }

    .gallery-prev {
        left: 5px;
    }

    .gallery-next {
        right: 5px;
    }

    .gallery-overlay {
        padding: 1.5rem 1rem;
    }

    .gallery-overlay h3 {
        font-size: 1.5rem;
    }

    .gallery-overlay p {
        font-size: 1.2rem;
    }

    .gallery-indicators {
        gap: 0.7rem;
        margin-top: 1.5rem;
    }

    .gallery-indicator {
        width: 0.8rem;
        height: 0.8rem;
    }

    .gallery-card-slide {
        flex: 0 0 calc(100% - 1rem);
        min-width: 100%;
    }

    .gallery-card-image {
        height: 220px;
    }

    .gallery-nav-btn {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }

    .gallery-prev-btn {
        left: 5px;
    }

    .gallery-next-btn {
        right: 5px;
    }

    .gallery-card-overlay h3 {
        font-size: 1.4rem;
    }

    .gallery-card-overlay p {
        font-size: 1.1rem;
    }

    .gallery-status {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-dots {
        gap: 0.6rem;
    }

    .gallery-dot {
        width: 0.8rem;
        height: 0.8rem;
    }

    .status-text {
        font-size: 1.2rem;
    }
}