@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8fdff 0%, #e8f4f8 30%, #f0f8ff 100%);
    overflow-x: hidden;
    position: relative;
}

/* Cherry Blossom Background */
.cherry-blossom-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.large-cherry-branch {
    position: absolute;
    width: 100%;
    height: 600px;
    top: 10%;
    left: 0;
    opacity: 0.3;
    animation: gentle-sway 25s ease-in-out infinite;
    z-index: -1;
}

@keyframes gentle-sway {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(0.5deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(-0.5deg); }
}

.petal {
    position: absolute;
    width: 8px;
    height: 12px;
    background: linear-gradient(45deg, #ffc0cb, #ff69b4);
    border-radius: 50% 50% 50% 0;
    opacity: 0.9;
    animation: fall linear infinite;
    transform-origin: bottom;
}

.petal::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    background: linear-gradient(45deg, #fff0f5, #ffc0cb);
    border-radius: 50% 50% 50% 0;
    top: 1px;
    left: 1px;
    opacity: 0.7;
}

.petal:nth-child(2) { left: 15%; animation-duration: 8s; animation-delay: 0s; background: #ffc9e0; }
.petal:nth-child(3) { left: 25%; animation-duration: 12s; animation-delay: 2s; background: #ffb3d9; }
.petal:nth-child(4) { left: 35%; animation-duration: 10s; animation-delay: 4s; background: #ffa6d2; }
.petal:nth-child(5) { left: 45%; animation-duration: 14s; animation-delay: 1s; background: #ff99cc; }
.petal:nth-child(6) { left: 55%; animation-duration: 9s; animation-delay: 3s; background: #ffb3d9; }
.petal:nth-child(7) { left: 65%; animation-duration: 11s; animation-delay: 5s; background: #ffc9e0; }
.petal:nth-child(8) { left: 75%; animation-duration: 13s; animation-delay: 0.5s; background: #ffa6d2; }
.petal:nth-child(9) { left: 85%; animation-duration: 15s; animation-delay: 2.5s; background: #ff99cc; }
.petal:nth-child(10) { left: 5%; animation-duration: 7s; animation-delay: 4.5s; background: #ffb3d9; }

@keyframes fall {
    0% {
        top: -10px;
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg) translateX(10px);
    }
    50% {
        transform: rotate(180deg) translateX(-10px);
    }
    75% {
        transform: rotate(270deg) translateX(5px);
    }
    100% {
        top: 100vh;
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(93, 173, 226, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #c0392b;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1002;
}

.logo:hover {
    transform: scale(1.05);
    color: #a93226;
}

.nav-container {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(93, 173, 226, 0.15);
    border: 1px solid rgba(93, 173, 226, 0.2);
    backdrop-filter: blur(10px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #c0392b;
    transform: translateY(-2px);
}

.nav-links a.active {
    color: white;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(93, 173, 226, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #c0392b;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 40px 0;
}

.story-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 60px 50px;
    margin: 50px 0;
    border: 2px solid #5dade2;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(93, 173, 226, 0.1);
    position: relative;
}

.story-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #5dade2;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #c0392b;
    margin-bottom: 20px;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #5dade2, #c0392b);
    border-radius: 2px;
}

.story-subtitle {
    font-size: 1.3rem;
    color: #5dade2;
    font-style: italic;
    margin-bottom: 20px;
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.story-section {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(248, 253, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(93, 173, 226, 0.2);
    transition: all 0.3s ease;
}

.story-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 173, 226, 0.15);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #c0392b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight {
    background: linear-gradient(120deg, rgba(192, 57, 43, 0.2) 0%, rgba(93, 173, 226, 0.2) 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
    color: #c0392b;
}

.verse-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #5dade2;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(93, 173, 226, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
}

.verse-card::before {
    content: '"';
    font-size: 60px;
    color: #5dade2;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
}

.verse-card .verse-text {
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 10px;
    padding-left: 30px;
}

.verse-card .verse-ref {
    color: #c0392b;
    font-weight: 600;
    text-align: right;
}

.hours-info {
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.1), rgba(93, 173, 226, 0.1));
    border: 2px solid #5dade2;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.hours-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #c0392b;
    margin-bottom: 20px;
}

.contact-info {
    background: rgba(248, 253, 255, 0.9);
    border: 2px solid #5dade2;
    border-radius: 15px;
    padding: 35px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(93, 173, 226, 0.1);
}

.phone {
    font-size: 1.8rem;
    color: #c0392b;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.address {
    font-size: 1.2rem;
    color: #2c3e50;
    line-height: 1.6;
}

.payment-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    font-weight: 600;
    color: #856404;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 80px;
}

.footer p {
    margin: 10px 0;
}

.footer .tagline {
    color: #5dade2;
    font-style: italic;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        display: none;
    }

    .logo {
        font-size: 20px;
    }

    .story-container {
        margin: 0 10px;
        padding: 40px 25px;
    }

    .story-title {
        font-size: 2.2rem;
    }

    .story-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .story-content {
        font-size: 1rem;
    }

    .verse-card {
        padding: 20px;
    }

    .verse-card::before {
        font-size: 40px;
        top: -5px;
        left: 15px;
    }

    .verse-card .verse-text {
        padding-left: 20px;
        font-size: 0.95rem;
    }

    .hours-info, .contact-info {
        padding: 25px 20px;
    }

    .phone {
        font-size: 1.4rem;
    }

    .address {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .story-container {
        margin: 0 5px;
        padding: 30px 15px;
    }

    .story-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 5px;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1002;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 74px;
    /* height: 40px; */
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #c0392b;
    transition: all 0.3s ease;
}

.logo-container:hover .logo-text {
    color: #a93226;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

/* Ramen Bowl Animation for Our Story Page */
.ramen-bowl {
    position: absolute;
    top: -40px;
    font-size: 2.5rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    left: 0;
}

.ramen-bowl.hopping {
    animation: hop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes hop {
    0% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-20px) scale(1.1) rotate(-5deg);
    }
    50% {
        transform: translateY(-35px) scale(1.2) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) scale(1.1) rotate(5deg);
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

/* Mobile responsive ramen */
@media (max-width: 768px) {
    .ramen-bowl {
        font-size: 2rem;
        top: -35px;
    }
}





/* Mobile Menu Toggle - Redesigned */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(93, 173, 226, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(93, 173, 226, 0.1);
    border-color: #5dade2;
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #c0392b;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}



/* Modern Mobile Menu */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 253, 255, 0.95));
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 100px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0 30px;
    margin: 0;
}

.mobile-nav-menu ul li {
    margin: 0;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInMobile 0.4s ease forwards;
}

.mobile-nav-menu.active ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-menu.active ul li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-menu.active ul li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-menu.active ul li:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-menu.active ul li:nth-child(5) { animation-delay: 0.5s; }

.mobile-nav-menu ul li a {
    display: flex;
    align-items: center;
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 20px;
    margin: 8px 0;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(93, 173, 226, 0.1);
}

.mobile-nav-menu ul li a:hover,
.mobile-nav-menu ul li a.active {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.3);
}

.mobile-nav-menu ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.mobile-nav-menu ul li a:hover::before,
.mobile-nav-menu ul li a.active::before {
    opacity: 1;
    transform: scale(1.5);
}


/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #c0392b;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(192, 57, 43, 0.1);
    transform: scale(1.1);
}


/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}


@keyframes slideInMobile {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-nav-menu {
        max-width: 100%;
    }
}