html, body {
    width: 100%;
    overflow-x: clip;
}

img, video {
    max-width: 100%;
    height: auto;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: clip;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

/* Floating animation for decor elements */
.floating {
    animation: float 3s ease-in-out infinite;
}

/* Animation utility classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: white;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.6s ease forwards;
}

.navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: translateX(-50%) scale(1.05);
}

.navbar-logo img {
    max-width: 100px;
    height: auto;
}

.navbar-buttons {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.navbar .btn {
    padding: 8px 16px;
    font-size: 13px;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Header/Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 120px 20px 120px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
} */

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 4px;
    text-transform: uppercase;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero p {
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.6;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-buttons .btn {
    padding: 16px 40px;
    font-size: 18px;
}

/* Our Menu Section */
.our-menu {
    padding: 80px 20px;
    background: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-menu h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 2px;
}

.our-menu > p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 80px;
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: left;
}

.menu-grid-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-grid-item:hover {
    transform: translateY(-5px);
}

.menu-grid-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.menu-grid-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.menu-grid-item .price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.menu-grid-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.btn-dark {
    background: #ed6838;
    color: white;
    border-radius: 25px;
    padding: 14px 35px;
    align-self: center;
    width: auto;
    position: relative;
    overflow: hidden;
}

.btn-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-dark:hover::before {
    width: 300px;
    height: 300px;
}

.btn-dark:hover {
    background: #d55a2d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 104, 56, 0.3);
}

/* Explore Offerings Grid */
.offerings-grid {
    padding: 80px 20px;
    background: #cc3636;
    text-align: center;
    color: white;
}

.offerings-grid h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 2px;
}

.offerings-grid > p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.6;
}

.offerings-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.offering-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offering-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.offering-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.offering-card:hover img {
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .offerings-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .offerings-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-white {
    background: white;
    color: #333;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-red {
    background: #cc3636;
    color: white;
}

.btn-red:hover {
    background: #b02e2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204, 54, 54, 0.3);
}

.btn-green {
    background: #397f3d;
    color: white;
}

.btn-green:hover {
    background: #2d6630;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(57, 127, 61, 0.3);
}

/* What Sets Us Apart Section */
.sets-apart {
    background: white;
    color: #333;
    padding: 80px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sets-apart h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #333;
}

.sets-apart > p {
    margin-bottom: 50px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

.sets-apart > p.moments-desc {
    font-size: 15px;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.7;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.feature-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
    text-align: left;
    background: #333;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-card-bg {
    transform: scale(1.1);
}

.feature-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
    transition: padding-bottom 0.3s ease;
}

.feature-card:hover .feature-card-content {
    padding-bottom: 40px;
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}

.feature-card-btn {
    display: inline-block;
    padding: 10px 28px;
    background: #cc3636;
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-card-btn {
    background: #a02c2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 54, 54, 0.4);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        height: 350px;
    }
}

/* Explore Offerings Section */
.offerings {
    padding: 80px 20px;
    background: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offerings h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 2px;
}

.offerings > p {
    margin-bottom: 40px;
    color: #666;
    font-size: 16px;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.menu-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #cc3636;
    transition: width 0.3s ease, left 0.3s ease;
}

.menu-tab:hover::after,
.menu-tab.active::after {
    width: 100%;
    left: 0;
}

.menu-tab:hover,
.menu-tab.active {
    color: #333;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    transform: translateY(10px);
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item-overlay h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-item-overlay p {
    font-size: 12px;
    opacity: 0.9;
}

.gallery-item-overlay .price {
    font-size: 14px;
    font-weight: 700;
    color: #ed6838;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.menu-item {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.menu-item-content {
    text-align: left;
}

.menu-category {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.menu-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.menu-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.menu-item-image {
    background: #e0e0e0;
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: #c0c0c0;
    border-radius: 8px;
    position: relative;
}

.placeholder-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background: #a0a0a0;
    border-radius: 50% 50% 0 0;
}

/* Brings Nepal Section */
.brings-nepal {
    background: #cc3636;
    color: white;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brings-nepal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.brings-nepal-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.brings-nepal-text p {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
    opacity: 0.95;
}

.brings-nepal-image {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brings-nepal-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.brings-nepal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.6s ease;
}

.brings-nepal-image:hover img {
    transform: scale(1.1);
}

/* Ready to Dine Section */
.ready-to-dine {
    background: #397f3d;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.ready-to-dine h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.ready-to-dine p {
    margin-bottom: 30px;
    color: #e0e0e0;
}

.ready-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: white;
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::after {
    height: 100%;
}

.btn-outline:hover {
    color: #397f3d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Find Us Section */
.find-us {
    padding: 80px 20px;
    background: white;
}

/* Our Location Section */
.our-location {
    padding: 80px 20px;
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.our-location-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.our-location-info > p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.location-detail {
    margin-bottom: 0;
}

.location-detail h4 {
    font-size: 14px;
    font-weight: 600;
    color: #cc3636;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-detail p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Side-by-side layout for address and hours */
.location-details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

/* Minimal frame styling */
.location-frame {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 18px 20px;
}

.location-frame.address-frame {
    border-left: 4px solid #cc3636;
    border-top: 4px solid #cc3636;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 500;
    color: #333;
    font-size: 13px;
}

.hours-row .time {
    color: #666;
    font-size: 13px;
}

@media (max-width: 600px) {
    .location-details-row {
        grid-template-columns: 1fr;
    }
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-map:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .our-location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .our-location-info h2 {
        font-size: 32px;
    }
}

.find-us-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.find-us h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 2px;
}

.location-section {
    margin-bottom: 30px;
}

.location-section h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.location-section h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.location-section p {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.social-links {
    margin-top: 20px;
}

.social-links h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.social-links p {
    color: #666;
    margin-bottom: 3px;
    font-size: 14px;
}

.newsletter {
    margin-top: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.find-us-map {
    background: #e0e0e0;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-note {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #999;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    padding-right: 20px;
}

.footer-brand h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-brand .newsletter-form {
    margin-top: 10px;
}

.footer-social {
     display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #cc3636;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #cc3636;
}

.footer-hours {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-hours p {
    margin-bottom: 15px;
}

.footer-hours .day {
    color: white;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.footer-contact-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #cc3636;
}

/* Newsletter Section */
.footer-newsletter {
    margin-top: 10px;
}

.footer-newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: background 0.3s ease;
}

.newsletter-form input[type="text"]::placeholder,
.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 12px 20px;
    background: #cc3636;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.newsletter-form button:hover {
    background: #a02c2c;
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 992px) {
    .navbar-logo {
        position: static;
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Get in Touch Footer */
.contact-footer {
    background: #cc3636;
    color: white;
    padding: 80px 20px;
}

.contact-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 15px;
    color: white;
}

.contact-info > p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cc3636;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #f0f0f0;
}

.contact-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.contact-details a {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.contact-details a:hover {
    opacity: 0.8;
}

.contact-copyright {
    margin-top: 30px;
    font-size: 13px;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #cc3636;
    box-shadow: 0 0 0 3px rgba(204, 54, 54, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.topics-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
}

.topics-group {
    margin-bottom: 20px;
}

.topic-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

.topic-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #cc3636;
}

.topic-option span {
    font-size: 14px;
    color: #333;
}

.btn-send {
    background: #397f3d;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-send::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-send:hover::before {
    width: 300px;
    height: 300px;
}

.btn-send:hover {
    background: #234a1f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(57, 127, 61, 0.3);
}

.btn-send:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .contact-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 32px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }

    .sets-apart h2,
    .offerings h2,
    .offerings-grid h2,
    .our-menu h2,
    .brings-nepal-text h2,
    .ready-to-dine h2,
    .find-us h2 {
        font-size: 36px;
    }

    .menu-item,
    .brings-nepal-content,
    .find-us-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .menu-tabs {
        gap: 15px;
    }

    .menu-tab {
        font-size: 16px;
    }

    .navbar {
        padding: 10px 15px;
        justify-content: space-between;
    }

    .navbar-logo {
        position: static;
        transform: none;
    }

    .navbar-logo img {
        max-width: 90px;
    }

    .navbar .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Remove excessive min-height on mobile */
    .our-menu,
    .sets-apart,
    .brings-nepal,
    .our-location,
    .offerings {
        min-height: auto;
    }

    /* Fix brings-nepal image height for single column */
    .brings-nepal-image {
        height: 350px;
    }

    /* Moments paragraph readability */
    .sets-apart > p {
        font-size: 14px;
        text-transform: none;
        letter-spacing: 0.5px;
        line-height: 1.7;
    }
}

/* Small phones */
@media (max-width: 500px) {
    /* Navbar */
    .navbar {
        padding: 8px 10px;
    }
    .navbar-logo img {
        max-width: 70px;
    }
    .navbar .btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    /* Hero */
    .hero {
        padding: 60px 15px;
        min-height: 70vh;
    }
    .hero h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-buttons .btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    /* Our Menu */
    .our-menu {
        padding: 40px 15px;
        min-height: auto;
    }
    .our-menu h2 {
        font-size: 28px;
    }
    .our-menu > p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .menu-grid {
        gap: 25px;
    }
    .menu-grid-item h3 {
        font-size: 16px;
    }
    .menu-grid-item .price {
        font-size: 15px;
    }
    .menu-grid-item p {
        font-size: 13px;
    }
    .btn-dark {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* Customer Favourites */
    .offerings-grid {
        padding: 40px 15px;
    }
    .offerings-grid h2 {
        font-size: 28px;
    }
    .offerings-grid > p {
        font-size: 14px;
    }

    /* Upcoming Events */
    .sets-apart {
        padding: 40px 15px;
        min-height: auto;
    }
    .sets-apart h2 {
        font-size: 26px;
    }
    .feature-card {
        height: 280px;
    }
    .feature-card h3 {
        font-size: 16px;
    }
    .feature-card-content {
        padding: 15px;
    }

    /* About / Brings Nepal */
    .brings-nepal {
        padding: 40px 15px;
        min-height: auto;
    }
    .brings-nepal-text h2 {
        font-size: 26px;
    }
    .brings-nepal-text p {
        font-size: 13px;
    }
    .brings-nepal-content {
        gap: 25px;
    }
    .brings-nepal-image {
        height: 250px;
    }

    /* Location */
    .our-location {
        padding: 40px 15px;
        min-height: auto;
    }
    .our-location-info h2 {
        font-size: 24px;
    }
    .our-location-content {
        gap: 30px;
    }
    .location-map {
        height: 280px;
    }

    /* Contact */
    .contact-footer {
        padding: 40px 15px;
    }
    .contact-info h2 {
        font-size: 24px;
    }
    .contact-footer-content {
        gap: 30px;
    }
    .contact-form-wrapper {
        padding: 20px;
    }
    .contact-form input[type="text"],
    .contact-form input[type="tel"],
    .contact-form input[type="email"],
    .contact-form textarea,
    .contact-form select {
        padding: 12px;
        font-size: 13px;
    }
    .btn-send {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
    }

    /* Footer */
    .site-footer {
        padding: 40px 15px 20px;
    }
    .footer-content {
        gap: 25px;
    }
}