.mini-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 2px solid #e0b13f44;
    box-shadow: 0 2px 8px #0002;
    transition: box-shadow 0.2s, border 0.2s;
}

/* Celebrate With Us Section Styles */
.occasions {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.occasions h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
    text-align: center;
}

.occasions h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff4e50, #fc913a);
    border-radius: 2px;
}

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

.occasion-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    transform-origin: center;
    height: 200px;
}

/* Smartphone styles */
@media screen and (max-width: 768px) {
    .occasion-card {
        height: 288px; /* Further increased by 20% from 240px */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .occasion-card h4 {
        font-size: 1.3rem;
        margin: 1rem 0.8rem 0.5rem;
    }
    
    .occasion-card p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .occasions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }
}

.occasion-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.occasion-card h4 {
    font-size: 1.5rem;
    margin: 1.5rem 1rem 1rem;
    color: #333;
}

.occasion-card p {
    padding: 0 1rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.book-btn {
    display: inline-block;
    margin: 0 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(to right, #ff4e50, #fc913a);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover Effects for Desktop */
@media (hover: hover) {
    .occasion-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .occasion-card:hover img {
        transform: scale(1.05);
    }

    .book-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 78, 80, 0.3);
    }
}

/* Touch Device Effects */
@media (hover: none) {
    .occasion-card:active {
        transform: scale(0.98);
    }

    .book-btn:active {
        transform: scale(0.95);
        background: linear-gradient(to right, #ff3a3c, #fb8022);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .occasions {
        padding: 3rem 1.5rem;
    }

    .occasions-grid {
        gap: 2rem;
    }

    .occasion-card {
        height: 180px;
    }

    .occasion-card img {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .occasion-card {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .occasions h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .occasions-grid {
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .occasion-card {
        height: 380px;
    }

    .occasion-card img {
        height: 200px;
    }

    .occasion-card h4 {
        font-size: 1.3rem;
        margin: 1rem 1rem 0.8rem;
    }

    .occasion-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .occasions {
        padding: 2rem 1rem;
    }

    .occasions-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .occasion-card {
        height: 200px;
        max-height: 200px;
    }

    .occasion-card img {
        height: 160px;
    }

    .book-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

/* Food and Drink Section Styles */
.menu-category {
    margin: 4rem auto;
    max-width: 1400px;
    padding: 0 2rem;
}

.menu-category h4 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

/* Touch Device Styles */
@media (hover: none) {
    .food-item span, .drink-item span {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    }

    .food-item:active, .drink-item:active {
        transform: scale(0.95);
    }
}

/* Hover Effects for non-touch devices */
@media (hover: hover) {
    .food-item:hover span, .drink-item:hover span {
        opacity: 1;
        transform: translateY(0);
    }

    .food-item:hover, .drink-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .food-item:hover img, .drink-item:hover img {
        transform: scale(1.1);
    }
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    .food-grid, .drink-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 1100px) {
    .food-grid, .drink-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .food-item, .drink-item {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .food-grid, .drink-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem;
    }

    .food-item, .drink-item {
        width: 220px;
        height: 220px;
    }

    .food-item span, .drink-item span {
        font-size: 1rem;
        padding: 1.5rem 1rem 1rem;
    }

    .menu-category h4 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .food-grid, .drink-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .food-item, .drink-item {
        width: 140px;
        height: 140px;
    }

    .food-item span, .drink-item span {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .food-grid, .drink-grid {
        grid-template-columns: 1fr;
    }

    .food-item, .drink-item {
        width: 240px;
        height: 240px;
    }
}

.menu-category h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff4e50;
}

.food-grid, .drink-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    place-items: center;
}

.food-item, .drink-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    width: 250px;
    height: 250px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.food-item img, .drink-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
    border-radius: 50%;
}

.food-item span, .drink-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem 1rem 1.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    height: 45%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: translateY(20px);
}

/* Hover Effects */
.food-item:hover, .drink-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.food-item:hover img, .drink-item:hover img {
    transform: scale(1.05);
}

.food-item:hover span, .drink-item:hover span {
    transform: translateY(0);
}

/* Shine effect */
.food-item::after, .drink-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(35deg);
    transition: all 0.6s;
    z-index: 2;
}

.food-item:hover::after, .drink-item:hover::after {
    left: 130%;
}

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

/* Stagger the animation for items */
.food-item:nth-child(1), .drink-item:nth-child(1) { animation-delay: 0.1s; }
.food-item:nth-child(2), .drink-item:nth-child(2) { animation-delay: 0.2s; }
.food-item:nth-child(3), .drink-item:nth-child(3) { animation-delay: 0.3s; }
.food-item:nth-child(4), .drink-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .food-grid, .drink-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .food-item, .drink-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .food-item, .drink-item {
        height: 200px;
    }

    .food-item span, .drink-item span {
        font-size: 1rem;
        padding: 0.75rem;
    }
}
.birthday-img {
    border-color: #ff69b4;
    box-shadow: 0 2px 12px #ff69b488;
}
.kitty-img {
    border-color: #aee1cd;
    box-shadow: 0 2px 12px #aee1cd88;
}
.anniversary-img {
    border-color: #e0b13f;
    box-shadow: 0 2px 12px #e0b13f88;
}
.farewell-img {
    border-color: #6a5acd;
    box-shadow: 0 2px 12px #6a5acd88;
}
.other-img {
    border-color: #ff9800;
    box-shadow: 0 2px 12px #ff980088;
}
.food-section {
    padding: 60px 0 40px 0;
    background: #181818;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.food-item {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.food-item.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.see-more-container {
    text-align: center;
    margin-top: 40px;
}

.see-more-btn {
    background: #e0b13f;
    color: #111;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.see-more-btn:hover {
    background: #fff;
    color: #e0b13f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 177, 63, 0.3);
}
.food-item:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px #e0b13f33;
}
.food-item span {
    display: block;
    margin-top: 12px;
    color: #e0b13f;
    font-size: 1.1rem;
    font-weight: 600;
}
.drink-section {
    padding: 60px 0 40px 0;
    background: #111;
}

.drink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.drink-item {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.drink-item.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.food-item:hover, .drink-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(224, 177, 63, 0.2);
}

.visual-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.food-item:hover .visual-img, .drink-item:hover .visual-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .food-grid, .drink-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }
    .visual-img {
        height: 180px;
    }
    .see-more-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
.drink-item:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px #e0b13f33;
}
.drink-item span {
    display: block;
    margin-top: 12px;
    color: #e0b13f;
    font-size: 1.1rem;
    font-weight: 600;
}
.visual-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 24px #0005, 0 1px 8px #e0b13f22;
    background: #222;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #e0b13f33;
}
.visual-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px #e0b13f55, 0 2px 16px #0007;
    border: 2px solid #e0b13f;
}
.visuals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}
@media (max-width: 700px) {
    .visual-img { height: 120px; border-radius: 10px; }
    .visuals-grid { gap: 10px; }
}
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    background: #181818;
    color: #fff;
    overflow-x: hidden;
}
header {
    background: #000;
    padding: 0;
    position: relative;
    z-index: 2;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    min-height: 70px;
}
.nav-left {
    display: flex;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    height: 60px;
}
.nv-logo {
    height: 48px;
    width: auto;
    margin-right: 10px;
    animation: fadeInDown 1s;
}
.nav-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 18px;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.nav-links li a:hover, .nav-links li a.active {
    background: #e0b13f;
    color: #181818;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 10px;
}
.nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.nav-icon {
    width: auto;
    height: 28px;
    max-width: 32px;
    max-height: 32px;
    display: block;
    transition: filter 0.2s, transform 0.2s;
}
/* Flipping effect for nav icons */
.flip-container {
    perspective: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 2px;
}
.flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    display: block;
}
.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    top: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back {
    transform: rotateY(180deg);
}
/* NV logo animation */
.nv-logo-animate {
    animation: nvLogoMotion 2.2s cubic-bezier(.68,-0.55,.27,1.55) 1;
}
@keyframes nvLogoMotion {
    0% { opacity: 0; transform: scale(0.5) rotate(-30deg); }
    60% { opacity: 1; transform: scale(1.1) rotate(10deg); }
    80% { transform: scale(0.95) rotate(-5deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@media (max-width: 900px) {
    .navbar { padding: 0 10px; }
    .nav-links { gap: 8px; }
    .nav-right { gap: 8px; }
}
@media (max-width: 700px) {
    .navbar { flex-wrap: wrap; min-height: 50px; }
    .nav-center { width: 100%; justify-content: flex-end; }
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;
        background: #111;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
        z-index: 10;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links li a { display: block; width: 100%; padding: 14px 24px; }
    .nav-toggle { display: flex; }
    .nav-right { gap: 6px; flex-wrap: wrap; }
    .nv-logo { height: 36px; }
    .flip-container { width: 28px; height: 28px; }

    /* Responsive slider for mobile */
    .hero-slider {
        height: 60vh;
    }
    
    .slider-title {
        font-size: 1.8rem;
    }
    
    .slider-overlay {
        padding: 24px 16px;
    }

    .slider-controls {
        bottom: 15px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}
/* --- HERO SLIDER --- */
/* Mobile Drawer Styles */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #1e1e1e;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 20px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.drawer-logo img {
    height: 40px;
}

.drawer-close {
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.drawer-links {
    list-style: none;
    padding: 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.drawer-link:hover {
    color: #e0b13f;
}

.drawer-link span {
    font-size: 20px;
}

/* Show drawer when active */
.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-overlay.active {
    display: block;
}

/* Hero Slider Styles */
.hero-slider {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    background: #111;
    height: 80vh;
    min-height: 350px;
    max-height: 800px;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
    background: #111;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    object-fit: cover;
    object-position: center;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slide.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}
.slider-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90vw;
    max-width: 600px;
    background: rgba(0,0,0,0.45);
    padding: 36px 18px 28px 18px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    animation: fadeInUp 1.2s;
}
.slider-title {
    color: #fff;
    font-size: 2.3rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 16px #000, 0 1px 2px #e0b13f44;
    animation: popIn 1.2s;
}
.nv-highlight {
    color: #e0b13f;
    text-shadow: 0 2px 8px #000;
    animation: highlightGlow 2s infinite alternate;
}
@keyframes highlightGlow {
    from { text-shadow: 0 2px 8px #000, 0 0 8px #e0b13f; }
    to { text-shadow: 0 2px 8px #000, 0 0 24px #e0b13f; }
}
.slider-btn {
    display: inline-block;
    margin-top: 18px;
    8px;margin-bottom: 12px
    padding: 12px 38px;
    background: linear-gradient(90deg, #e0b13f 60%, #fffbe6 100%);
    color: #181818;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 16px #e0b13f44;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    animation: fadeIn 1.8s;
}
.slider-btn:hover {
    background: linear-gradient(90deg, #fffbe6 0%, #e0b13f 100%);
    color: #000;
    transform: scale(1.07);
    box-shadow: 0 8px 32px #e0b13f66;
}
@keyframes popIn {
    0% { opacity: 0; transform: scale(0.7) translateY(40px); }
    80% { opacity: 1; transform: scale(1.1) translateY(-8px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
.slider-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}
.slider-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.6;
    cursor: pointer;
    border: 2px solid #e0b13f;
    transition: background 0.2s, opacity 0.2s, border 0.2s;
}
.slider-dot.active {
    background: #e0b13f;
    opacity: 1;
    border: 2px solid #fff;
}
@media (max-width: 700px) {
    .slider, .slide, .hero-slider {
        height: 200px;
        min-height: 120px;
    }
    .slider-title { font-size: 1.2rem; }
    .slider-overlay { padding: 16px 6px 12px 6px; }
    .slider-btn { font-size: 1rem; padding: 8px 18px; }
    .slider-dot, .slider-dot.active { width: 12px; height: 12px; }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');
.star {
  transform-style: preserve-3d;
  width: 1px;
  height: 1px;
  position: absolute;
  color: red;
  pointer-events: none;
}
.star:before {
  position: absolute;
  content: '\2726';
  color: inherit;
  inset: 0;
  //box-shadow: 0 0 1em .5em #a3c2;
  //filter: drop-shadow(0 0 .5em white);
  text-shadow: 0 0 1em #fff5;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  color: #F9F6EF;
  /* Removed display: grid and place-content: center to fix navbar centering */
  background-image: 
    radial-gradient(
    circle at 50% 50%,
      #2f3040,
      #1f2020
    );
}
.chooser {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  label{
    text-align: center;
    transition: .4s ease;
    border: 1px solid #AEE1CD20;
    padding: .5em 1em;
    cursor: pointer;
  }
  input[type='radio'] {
    display: none;
    &:checked + label {
      color: #FFE681;
      border: 1px inset #AEE1CD90;
    }
    &:not(:checked) + label {
        &:hover{
        color: #D1CDDA;
        box-shadow: inset 1px 1px #F9F6EF40;
        background-color: #1f202050;
      }
      &:active {
        box-shadow: inset -1px -1px #F9F6EF40;
      }
    }
  }
}
.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 56px !important;
    height: 56px !important;
    max-width: 70px;
    max-height: 70px;
    border-radius: 50%;
    box-shadow: 0 4px 16px #25d36655;
    background: #fff;
    transition: transform 0.2s;
}
.whatsapp-btn img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px #25d36699;
}

/* SEO-optimized content styles */
.hero-description {
    color: #fff;
    font-size: 1.2rem;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.welcome-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    color: #fff;
}

.section-title {
    text-align: center;
    color: #e0b13f;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.welcome-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.welcome-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: rgba(224, 177, 63, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    color: #e0b13f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #fff;
    font-size: 1rem;
}

.seo-tags {
    margin-top: 3rem;
    text-align: center;
}

.seo-tags h4 {
    color: #e0b13f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tag-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tag-list li {
    background: rgba(224, 177, 63, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: #fff;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .welcome-text p {
        font-size: 1rem;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}

/* Schema markup styles */
.schema-address {
    display: none;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/img/about/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero-content p {
    font-size: 1.5rem;
    color: #e0b13f;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-story, .about-values, .about-team, .about-contact {
    background: #181818;
    padding: 60px 0;
}

.about-story h2, .about-values h2, .about-team h2, .about-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e0b13f;
    margin-bottom: 3rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(224, 177, 63, 0.2);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.value-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: #e0b13f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #fff;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #e0b13f;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member h3 {
    color: #e0b13f;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #fff;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #e0b13f;
}

.contact-item p {
    color: #fff;
    font-size: 1.1rem;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
    }
    
    .about-container {
        padding: 2rem 1rem;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1.2rem;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
}

.occasions {
    padding: 50px 20px;
    background: rgba(0,0,0,0.5);
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.occasion-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(224, 177, 63, 0.3);
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(224, 177, 63, 0.2);
}

.occasion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.occasion-card h4 {
    color: #e0b13f;
    font-size: 1.5rem;
    margin: 0 0 15px 0;
}

.occasion-card p {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.book-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #e0b13f;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #fff;
}

.mini-occasions {
    padding: 40px 0 20px 0;
    background: #181818;
    text-align: center;
}
.mini-occasions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 18px;
}
.mini-occasion {
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 20px 24px 16px 24px; /* Increased padding for larger card */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 194px; /* Increased width by 35% for better clarity */
    box-shadow: 0 2px 8px #0002;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mini-occasion:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 18px #e0b13f33;
}
.mini-occasion img {
    width: 84px; /* Increased image size by 20% */
    height: 84px; /* Increased image size by 20% */
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 2px solid #e0b13f44;
    transition: transform 0.5s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
    will-change: transform;
}
.mini-occasion:hover .mini-img {
    transform: rotateY(360deg) scale(1.08);
    box-shadow: 0 6px 24px #e0b13f66, 0 0 0 4px #fff3;
}
.mini-occasion span {
    color: #e0b13f;
    font-size: 0.9rem; /* Decreased text size by 10% */
    font-weight: 600;
}

/* Gallery Styles */
.gallery-section {
    padding: 60px 20px;
    background: #111;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e0b13f;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wrapper h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #e0b13f;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(224, 177, 63, 0.3);
}

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

@media (max-width: 992px) {
    .gallery-section h2 {
        font-size: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 40px 15px;
    }
    .gallery-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
        padding: 0 10px;
    }
}

/* Add smooth scrolling to all elements */
* {
    scroll-behavior: smooth;
}

footer {
    background: #000;
    color: #fff;
    padding: 18px 0 0 0;
    text-align: center;
    font-size: 1rem;
    border-top: 1px solid #222;
}
.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.footer-main .developer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
    color: #e0b13f;
}
.dev-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0b13f;
    background: #fff;
}
.footer-main .developer a {
    color: #e0b13f;
    text-decoration: none;
    font-weight: 600;
}
.footer-main .developer a:hover {
    text-decoration: underline;
}
/* --- POPUP BOOKING FORM --- */
.popup-book-btn {
    background: #e0b13f;
    color: #181818;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 14px 44px;
    box-shadow: 0 4px 16px #e0b13f44;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.popup-book-btn:hover {
    background: #fffbe6;
    color: #e0b13f;
    transform: scale(1.07);
    box-shadow: 0 8px 32px #e0b13f66;
}

.popup-form-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-form-container {
    background: #222;
    padding: 36px 28px 28px 28px;
    border-radius: 18px;
    box-shadow: 0 8px 32px #000a;
    max-width: 350px;
    width: 90vw;
    position: relative;
    text-align: center;
}
.popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #e0b13f;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
}
.popup-close:hover {
    color: #fff;
}
.popup-book-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}
.popup-book-form input,
.popup-book-form select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e0b13f55;
    background: #181818;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
}
.popup-book-form input:focus,
.popup-book-form select:focus {
    border: 1.5px solid #e0b13f;
}
.popup-book-form button[type="submit"] {
    background: #e0b13f;
    color: #181818;
    font-weight: 700;
    border: none;
    border-radius: 20px;
    padding: 10px 0;
    font-size: 1.1rem;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.popup-book-form button[type="submit"]:hover {
    background: #fffbe6;
    color: #e0b13f;
}
@media (max-width: 700px) {
    .slider, .slide, .hero-slider {
        height: 200px;
        min-height: 120px;
    }
    .slider-title { font-size: 1.2rem; }
    .slider-overlay { padding: 16px 6px 12px 6px; }
    .slider-btn { font-size: 1rem; padding: 8px 18px; }
    .slider-dot, .slider-dot.active { width: 12px; height: 12px; }
    .mini-occasions-grid { gap: 10px; }
    .mini-occasion { width: 90px; padding: 8px 6px 6px 6px; }
    .mini-occasion img { width: 48px; height: 48px; }
    .visuals-grid { gap: 10px; }
    .party-visuals { padding: 20px 0 10px 0; }
    .footer-main { font-size: 0.9rem; }
    .popup-form-container { padding: 18px 6px 12px 6px; }
    .popup-form-container h3 { font-size: 1.1rem; }
    .popup-book-btn { font-size: 1rem; padding: 10px 18px; }
}

