/* ============================================
   JAPANESE GARDEN - ELEGANT GEISHA STYLE
   Sakura, silk, and traditional beauty
   ============================================ */

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: #FBF5F2;
}

body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Background Image Layer */
.bg-sakura-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

:root {
    --silk-white: #FFFFFF;
    --sakura-pink: #E8AFCE;
    --pale-pink: #F0C8D8;
    --lavender: #D4B8D8;
    --soft-purple: #C8A8D8;
    --deep-purple: #8B6B8B;
    --midnight: #1a1a1a;
    --charcoal: #2a2a2a;
    --ink-black: #0f0f0f;
    --gold-accent: #D4A574;
    --pale-lavender: #F5E8F0;
    --white: #ffffff;
    --text: #2a2a2a;
    
    /* Sakura branch colors from photo */
    --branch-brown: #6B5346;
    --branch-dark: #54433A;
    --branch-light: #8A6E5F;

    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-handwriting: 'Georgia', 'Times New Roman', serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-serif: 'Georgia', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force font weights even during font loading */
body, html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-handwriting);
    font-weight: 500 !important;
}

body {
    font-weight: 500 !important;
}

/* Base paragraph styling */
p {
    font-weight: 500 !important;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* Main Container - Proper alignment on large screens */
main.main-container {
    width: 100%;
    padding: 0;
    padding-top: 1rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .content-wrapper {
        max-width: 1200px;
        padding: 0.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        max-width: 100%;
        padding: 0.5rem 1rem;
    }
}

body > * {
    position: relative;
    z-index: 1;
}

/* Flying Butterfly Animation */
.flying-butterfly {
    position: fixed;
    z-index: 999;
    animation: butterfly-fly 15s linear forwards;
    opacity: 0.8;
}
/* Butterfly animation - moved to animations.css */
/* Wing flapping animations */
.wing-left-upper {
    transform-origin: 34px 28px;
    animation: wing-flap-left-upper 0.6s ease-in-out infinite;
}

.wing-left-lower {
    transform-origin: 32px 32px;
    animation: wing-flap-left-lower 0.6s ease-in-out infinite;
}

.wing-right-upper {
    transform-origin: 46px 28px;
    animation: wing-flap-right-upper 0.6s ease-in-out infinite;
}

.wing-right-lower {
    transform-origin: 48px 32px;
    animation: wing-flap-right-lower 0.6s ease-in-out infinite;
}

@keyframes wing-flap-left-upper {
    0%, 100% { transform: rotateZ(0deg); }
    50% { transform: rotateZ(-25deg); }
}

@keyframes wing-flap-left-lower {
    0%, 100% { transform: rotateZ(0deg); }
    50% { transform: rotateZ(15deg); }
}

@keyframes wing-flap-right-upper {
    0%, 100% { transform: rotateZ(0deg); }
    50% { transform: rotateZ(25deg); }
}

@keyframes wing-flap-right-lower {
    0%, 100% { transform: rotateZ(0deg); }
    50% { transform: rotateZ(-15deg); }
}

/* Headings and Navigation - no italic */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700 !important;
}

/* Main page title styling - same as hero-sakura */
.content-wrapper h1 {
    max-width: 1200px;
    margin: 2rem auto 2rem;
    padding: 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(232, 175, 206, 0.04) 0%, 
        rgba(215, 163, 220, 0.04) 50%,
        rgba(232, 175, 206, 0.04) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(232, 163, 192, 0.1);
    font-size: 2.8rem;
    color: #8b5a7a;
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* Keep hero-sakura h1 inside its own container */
.hero-sakura h1 {
    max-width: none;
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: center;
    background: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

nav.nav-menu,
nav.nav-menu a {
    font-family: var(--font-heading);
    font-style: normal;
}

/* ============================================
   NO DECORATIVE ELEMENTS
   ============================================ */

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

/* ============================================
   MODERN NAVIGATION BAR - MINIMAL TOP NAV
   ============================================ */
nav.nav-bar-top {
    position: relative;
    z-index: 999;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    color: #4a3f5c;
    font-weight: 700;
    width: 100%;
}

@media (min-width: 769px) {
    nav.nav-bar-top {
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem 1rem;
    }
}

nav.nav-bar-top .nav-menu {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--branch-brown);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

/* Navigation Menu - Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: center;
    position: static;
    background: transparent;
    padding: 0.8rem 0.5rem;
    width: 100%;
    border: none !important;
    border-bottom: none !important;
    overflow-x: visible;
    overflow-y: visible;
}

/* Show nav menu on desktop only */
@media (min-width: 769px) {
    body .nav-menu {
        display: flex !important;
        list-style: none;
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
        position: static !important;
        width: 100% !important;
        background: transparent !important;
        padding: 0.8rem 0.5rem !important;
        margin: 0 !important;
        border: none !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        overflow-x: visible;
        overflow-y: visible;
    }
    
    body .nav-menu a {
        display: inline-block !important;
    }
}

/* Show links on desktop */
@media (min-width: 769px) {
    .nav-menu a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1.2rem;
        text-decoration: none;
        border: none;
        border-radius: 50px;
        font-weight: 600 !important;
        font-size: 0.85rem;
        font-family: 'Georgia', 'Times New Roman', serif;
        font-style: normal;
        transition: all 0.3s ease;
        white-space: nowrap;
        position: relative;
        color: #fff;
        background: linear-gradient(135deg, #4a3f5c 0%, #6b5374 100%);
        box-shadow: 0 2px 8px rgba(74, 63, 92, 0.2);
        flex-shrink: 0;
        min-height: 40px;
        min-width: 100px;
        text-align: center;
    }
}

.nav-menu a::before {
    display: none;
}

@media (min-width: 769px) {
    .nav-menu a::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--sakura-pink), var(--soft-purple));
        transition: width 0.4s ease;
    }
}

.nav-menu a:hover {
    color: #fff;
}

@media (min-width: 769px) {
    .nav-menu a:hover {
        color: #fff !important;
        background: linear-gradient(135deg, #6b5374 0%, #8B6B8B 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(74, 63, 92, 0.3);
    }
}

.nav-menu a:hover::before {
    width: 0;
}

@media (min-width: 769px) {
    .nav-menu a:hover::before {
        display: none;
    }
}

.nav-menu a.active {
    background: linear-gradient(135deg, #e8a3c0 0%, #d7a3dc 100%);
}

@media (min-width: 769px) {
    .nav-menu a.active {
        background: linear-gradient(135deg, #e8a3c0 0%, #d7a3dc 100%);
        border: none;
        color: #fff !important;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(232, 163, 192, 0.4);
    }
}

/* Language Switcher */
.language-switcher {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    padding: 0.5rem 0;
    justify-content: center;
    align-items: center;
}

@media (min-width: 769px) {
    .language-switcher {
        display: flex;
        padding: 0;
        margin-left: 1rem;
        flex-wrap: nowrap;
        gap: 0.3rem;
    }
    
    .language-switcher .lang-link {
        min-width: 70px;
        width: auto;
    }
}

.language-switcher .lang-link {
    padding: 0.5rem 0.6rem !important;
    font-size: 0.75rem;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.85) !important;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #8B6B8B;
    font-weight: 500;
    border: 1px solid rgba(139, 107, 139, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    width: 100%;
    flex-shrink: 0;
}

.language-switcher .lang-link:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 107, 139, 0.15);
}

.language-switcher .lang-link.active {
    background: linear-gradient(135deg, #8B6B8B 0%, #C8A8D8 100%) !important;
    color: #fff !important;
    border-color: #8B6B8B;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(139, 107, 139, 0.3);
}

@media (min-width: 769px) {
    .language-switc6rem 0.8rem !important;
        font-size: 0.8rem;
        min-height: 36px;
        min-width: 70px;
        min-width: 100px;
    }
}

/* Mobile Responsive */
/* Debug: Fake mobile for testing */
@media (max-width: 1600px) {
    /* Change this to test mobile on desktop */
    /* .hamburger { display: flex !important; } */
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        flex-direction: column;
        gap: 5px;
        z-index: 1001;
        order: -1;
    }

    .hamburger span {
        width: 24px;
        height: 3px;
        background: var(--branch-brown);
        display: block;
        transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(9px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-9px);
    }

    nav.nav-bar-top {
        padding: 0.5rem;
        justify-content: flex-end;
        gap: 0;
        min-height: 50px;
        align-items: center;
        flex-wrap: nowrap;
    }

    .nav-menu {
        display: flex !important;
        position: fixed !important;
        top: 50px !important;
        left: auto !important;
        right: 0 !important;
        width: 55% !important;
        flex-direction: column !important;
        gap: 0.35rem;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: none;
        z-index: 9999;
        padding: 0.5rem;
        padding-bottom: 1rem;
        margin: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        height: auto;
        max-height: calc(100vh - 50px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        display: block !important;
        padding: 0.6rem 0.8rem;
        border: none;
        border-radius: 18px;
        width: 100%;
        color: #fff;
        text-decoration: none;
        white-space: normal;
        word-wrap: break-word;
        font-size: 0.8rem;
        font-weight: 600 !important;
        transition: all 0.2s ease;
        background: linear-gradient(135deg, #4a3f5c 0%, #6b5374 100%);
        box-shadow: 0 2px 8px rgba(74, 63, 92, 0.3);
        min-height: 38px;
        display: flex !important;
        align-items: center;
        flex-shrink: 0;
    }

    .nav-menu a::before {
        display: none;
    }

    .nav-menu a:hover {
        background: linear-gradient(135deg, #6b5374 0%, #8B6B8B 100%);
        color: #fff;
        transform: translateX(-4px);
        box-shadow: 0 4px 10px rgba(74, 63, 92, 0.3);
    }

    .nav-menu a.active {
        background: linear-gradient(135deg, #e8a3c0 0%, #d7a3dc 100%);
        color: #fff;
        box-shadow: 0 4px 10px rgba(232, 163, 192, 0.4);
    }
    
    .language-switcher {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        padding: 0.4rem 0;
        margin-top: 0.4rem;
        gap: 0.3rem;
        flex-shrink: 0;
    }
    
    .language-switcher .lang-link {
        padding: 0.45rem 0.55rem !important;
        font-size: 0.7rem !important;
        min-height: 34px !important;
        width: 100% !important;
        min-width: auto !important;
        flex-shrink: 0;
        box-shadow: 0 2px 6px rgba(139, 107, 139, 0.25);
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    nav.nav-bar-top {
        padding: 0.5rem 0.5rem;
    }

    .hamburger {
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hamburger span {
        width: 24px;
        height: 3px;
    }

    .nav-menu {
        width: 60% !important;
        padding: 0.5rem;
        padding-bottom: 1rem;
        gap: 0.3rem;
    }
    
    .nav-menu a {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
        font-weight: 600 !important;
        min-height: 40px;
    }
    
    .language-switcher {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        padding: 0.4rem 0;
        gap: 0.3rem;
        margin-top: 0.4rem;
    }
    
    .language-switcher .lang-link {
        padding: 0.5rem 0.6rem !important;
        font-size: 0.75rem !important;
        min-height: 36px !important;
        width: 100% !important;
        min-width: auto !important;
    }
}



/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: transparent;
    opacity: 0.9;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-weight: 700;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.hero-text strong {
    color: var(--color-primary);
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--sakura-pink), var(--soft-purple));
    color: var(--silk-white);
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: var(--font-handwriting);
    letter-spacing: 0.05em;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(244, 180, 208, 0.25);
    margin-top: 1.5rem;
    border: 1px solid var(--sakura-pink);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lavender), var(--soft-purple));
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.cta-button:hover {
    box-shadow: 0 10px 30px rgba(196, 168, 216, 0.35);
    transform: translateY(-2px);
    border-color: var(--soft-purple);
}

.cta-button:hover::before {
    left: 0;
}

.hero-visual {
    background: linear-gradient(135deg, rgba(168, 216, 232, 0.15), rgba(184, 212, 168, 0.15));
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--light-blue);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--soft-pink), var(--soft-green));
    clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
    opacity: 0.1;
}

.hero-visual h2 {
    font-size: 2.5rem;
    color: var(--color-secondary);
    font-weight: 700;
}

/* ============================================
   STAT CARDS
   ============================================ */

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(232, 175, 206, 0.04) 0%, 
        rgba(215, 163, 220, 0.04) 50%,
        rgba(232, 175, 206, 0.04) 100%);
    border-radius: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.5);
    padding: 3rem 2.5rem;
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(139, 107, 139, 0.08);
    border: none;
    border-top: 3px solid var(--sakura-pink);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(244, 180, 208, 0.02), transparent);
    pointer-events: none;
}

.stat-card:nth-child(2) {
    border-top-color: var(--lavender);
}

.stat-card:nth-child(3) {
    border-top-color: var(--soft-purple);
}

.stat-card:nth-child(4) {
    border-top-color: var(--pale-pink);
}

.stat-card:hover {
    box-shadow: 0 8px 25px rgba(139, 107, 139, 0.12);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.65);
}

.stat-card:hover::before {
    top: -25%;
    right: -25%;
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.stat-card p {
    color: #666;
    line-height: 1.6;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(232, 175, 206, 0.04) 0%, 
        rgba(215, 163, 220, 0.04) 50%,
        rgba(232, 175, 206, 0.04) 100%);
    border-radius: 20px;
}

.content h1, .content h2 {
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content h1 {
    font-size: 2.5rem;
}

.content h2 {
    font-size: 2rem;
}

.content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 500;
}

.content-block {
    background: linear-gradient(135deg, 
        rgba(232, 175, 206, 0.04) 0%, 
        rgba(215, 163, 220, 0.04) 50%,
        rgba(232, 175, 206, 0.04) 100%);
    padding: 3rem 2.5rem;
    border-radius: 0;
    margin: 2rem 0;
    border: none;
    border-left: 3px solid var(--soft-purple);
    box-shadow: 0 4px 15px rgba(139, 107, 139, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 168, 232, 0.03), transparent);
    pointer-events: none;
}

.content-block h3 {
    color: var(--deep-purple);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: var(--font-handwriting);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.content-block ul, .content-block ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-block li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ============================================
   PRICING TABLE
   ============================================ */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-blue);
}

.pricing-table th {
    background: linear-gradient(135deg, #C8D9C3, #B8D4A8);
    color: #3a3a3a;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #eee;
}

.pricing-table tr:hover {
    background: rgba(232, 197, 208, 0.1);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

/* ============================================
   BLOG & GRID LAYOUTS
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(232, 175, 206, 0.04) 0%, 
        rgba(215, 163, 220, 0.04) 50%,
        rgba(232, 175, 206, 0.04) 100%);
    border-radius: 20px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 107, 139, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(244, 180, 208, 0.2);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sakura-pink), var(--lavender), var(--soft-purple));
    z-index: 1;
}

.blog-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--lavender), var(--soft-purple), var(--deep-purple));
}

.blog-card:nth-child(3n)::before {
    background: linear-gradient(90deg, var(--soft-purple), var(--sakura-pink), var(--lavender));
}

.blog-card:hover {
    box-shadow: 0 8px 25px rgba(139, 107, 139, 0.12);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.65);
}

.blog-card-header {
    background: linear-gradient(135deg, rgba(244, 180, 208, 0.15), rgba(212, 168, 232, 0.1));
    padding: 2.5rem 2rem;
    color: var(--charcoal);
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(244, 180, 208, 0.2);
}

.blog-card:nth-child(2) .blog-card-header {
    background: linear-gradient(135deg, rgba(212, 168, 232, 0.15), rgba(196, 168, 216, 0.1));
}

.blog-card:nth-child(3n) .blog-card-header {
    background: linear-gradient(135deg, rgba(232, 200, 216, 0.15), rgba(244, 180, 208, 0.1));
}

.blog-card-header h3 {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 500;
    font-family: var(--font-handwriting);
    letter-spacing: 0.03em;
    color: var(--deep-purple);
}

.blog-card-body {
    padding: 2rem;
}

.blog-card-body p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-card-meta {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
}

/* ============================================
   FORMS
   ============================================ */

form {
    max-width: 600px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--sakura-pink);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--soft-purple);
    box-shadow: 0 0 0 3px rgba(212, 168, 232, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

button {
    background: linear-gradient(135deg, var(--sakura-pink), var(--lavender));
    color: var(--silk-white);
    padding: 1rem 2.2rem;
    border: 1px solid var(--sakura-pink);
    border-radius: 0;
    font-weight: 600;
    font-family: var(--font-handwriting);
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(244, 180, 208, 0.25);
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lavender), var(--soft-purple));
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 232, 0.35);
    border-color: var(--soft-purple);
}

button:hover::before {
    left: 0;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--branch-brown);
    color: var(--silk-white);
    text-align: center;
    padding: 3.5rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid var(--branch-dark);
    position: relative;
}

footer p {
    margin: 0.5rem 0;
    position: relative;
    z-index: 1;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    text-decoration: underline;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(232, 175, 206, 0.04) 0%, 
        rgba(215, 163, 220, 0.04) 50%,
        rgba(232, 175, 206, 0.04) 100%);
    border-radius: 20px;
}

.section {
    padding: 2rem 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-visual h2 {
        font-size: 2rem;
    }

    header {
        padding: 1rem 0;
    }

    nav a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }

    .hero {
        margin: 1.5rem auto;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .content {
        padding: 0 1rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .pricing-table {
        font-size: 0.9rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    footer {
        padding: 2rem 1rem;
    }
}

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   JAPANESE CUISINE PAGE - Special Styling
   ============================================ */

/* Speciální pozadí pro japonskou stránku */
body.page-japanese-cuisine {
    background: linear-gradient(135deg, #faf7f4 0%, #f0e8f4 50%, #e8d4e8 100%) fixed;
    background-attachment: fixed;
    position: relative;
}

body.page-japanese-cuisine::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/flowers-bg.svg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

body.page-japanese-cuisine > * {
    position: relative;
    z-index: 1;
}

.page-header-japanese {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.95) 0%, rgba(232, 200, 216, 0.92) 100%);
    background-attachment: scroll;
    position: relative;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 3rem 0;
    border-bottom: 3px solid rgba(244, 180, 208, 0.5);
    overflow: hidden;
}

/* Květiny na pozadí - dekorace */
.page-header-japanese::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    opacity: 0.15;
    background-image: 
        radial-gradient(circle, #F4B4D0 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
}

.page-header-japanese::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    opacity: 0.15;
    background-image: 
        radial-gradient(circle, #E8C8D8 2px, transparent 2px);
    background-size: 25px 25px;
    z-index: 1;
}

.page-header-japanese .container {
    position: relative;
    z-index: 2;
}

.page-title-japanese {
    font-size: 4rem;
    color: #8B5A6F;
    margin: 0 0 1rem 0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.1em;
}

.page-subtitle-japanese {
    font-size: 1.4rem;
    color: #A0758B;
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.japanese-courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3.5rem;
    margin: 3rem auto;
    padding: 2rem;
    max-width: 1200px;
    background: linear-gradient(135deg, 
        rgba(232, 175, 206, 0.04) 0%, 
        rgba(215, 163, 220, 0.04) 50%,
        rgba(232, 175, 206, 0.04) 100%);
    border-radius: 20px;
}

.course-card-japanese {
    text-align: center;
    animation: fadeIn 0.8s ease-out;
    padding: 2rem 1.5rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.course-card-japanese:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(139, 107, 139, 0.2);
}

.course-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #F4B4D0 0%, #E8C8D8 100%);
    box-shadow: 0 10px 30px rgba(139, 107, 139, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.course-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-circle svg {
    width: 100%;
    height: 100%;
}

.course-card-japanese h3 {
    font-size: 1.5rem;
    color: #4A3F5C;
    margin: 1.5rem 0 0.7rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
}

.course-card-japanese .course-subtitle {
    font-size: 0.95rem;
    color: #8B6B8B;
    margin: 0 0 1.2rem;
    font-family: 'Noto Serif JP', serif;
    font-style: italic;
}

.course-card-japanese p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* ============================================
   SAKURA HOME PAGE - NEW LAYOUT
   ============================================ */

.page-home-sakura {
    background: linear-gradient(135deg, #f9f0f0 0%, #fbe8f0 50%, #f5e8f5 100%);
}

/* Alice Photo Styling */
.alice-photo-container {
    text-align: left;
    margin-bottom: 2rem;
    margin-left: 2rem;
    background: transparent;
}

.alice-photo {
    width: 320px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: transparent;
}

.alice-photo:hover {
    transform: scale(1.02);
}

/* Alice About Section (O mně page) */
.alice-about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .alice-about-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .alice-about-section .alice-photo-container {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .alice-about-text {
        flex: 1;
    }
}

.hero-sakura {
    max-width: 1200px;
    margin: 2rem auto 2rem;
    padding: 1.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(232, 175, 206, 0.04) 0%, 
        rgba(215, 163, 220, 0.04) 50%,
        rgba(232, 175, 206, 0.04) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(232, 163, 192, 0.1);
}

.hero-sakura .hero-text h1 {
    font-size: 2.8rem;
    color: #8b5a7a;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-sakura .hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Language Circles Section */
.languages-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.languages-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #8b5a7a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.language-circles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    justify-items: center;
}

.language-card-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.language-card-link:hover,
.language-card-link:focus,
.language-card-link:active {
    text-decoration: none !important;
    outline: none;
}

.language-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.language-card:hover {
    transform: translateY(-10px);
}

.language-circle {
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(139, 90, 122, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(74, 63, 92, 0.3);
}

.language-circle svg {
    width: 80%;
    height: 80%;
}

.language-circle .lang-icon-text {
    font-size: 42px;
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle;
}

.language-card h3 {
    font-size: 1.5rem;
    color: #4a3f5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.language-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Specializations Section */
.specializations-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.specializations-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #8b5a7a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: stretch;
}

.spec-item {
    background: linear-gradient(135deg, rgba(232, 163, 192, 0.15), rgba(200, 168, 216, 0.15));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #e8a3c0;
    transition: all 0.3s ease;
}

.spec-item:hover {
    box-shadow: 0 6px 20px rgba(139, 90, 122, 0.15);
    transform: translateX(5px);
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.course-card {
    background: linear-gradient(135deg, rgba(232, 163, 192, 0.15), rgba(200, 168, 216, 0.15));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #e8a3c0;
    transition: all 0.3s ease;
}

.course-card:hover {
    box-shadow: 0 6px 20px rgba(139, 90, 122, 0.15);
    transform: translateY(-5px);
}

.course-card h3 {
    font-size: 1.5rem;
    color: #4a3f5c;
    margin-bottom: 1rem;
}

.course-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.course-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.course-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.course-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b5a7a;
    font-weight: bold;
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

.spec-item h3 {
    font-size: 1.2rem;
    color: #4a3f5c;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.spec-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, 
        rgba(107, 83, 70, 0.3) 0%, 
        rgba(138, 110, 95, 0.3) 50%, 
        rgba(107, 83, 70, 0.3) 100%);
    text-align: center;
    box-shadow: 0 10px 40px rgba(107, 83, 70, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cta-section h2 {
    font-size: 2.2rem;
    color: var(--branch-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--branch-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #fff 0%, #f5f0f5 100%);
    color: #8b5a7a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-handwriting);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
    cursor: pointer;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #f9f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-sakura {
        margin: 2rem auto 2rem;
        padding: 2rem 1rem;
        border-radius: 15px;
    }

    .hero-sakura .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .hero-sakura .hero-subtitle {
        font-size: 1rem;
    }

    .languages-section {
        padding: 0 1rem;
        margin: 3rem auto;
    }

    .languages-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .language-circles {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .language-circle {
        width: 160px;
        height: 160px;
        margin: 0 auto 1rem;
    }

    .language-card h3 {
        font-size: 1.2rem;
    }

    .language-card p {
        font-size: 0.9rem;
    }

    .specializations-section {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }

    .specializations-section h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .spec-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .spec-item {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .spec-item h3 {
        font-size: 1.1rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-sakura {
        margin: 1rem auto;
        padding: 1.5rem 1rem;
    }

    .hero-sakura .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-sakura .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .languages-section {
        padding: 0 0.5rem;
        margin: 2rem auto;
    }

    .languages-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .language-circles {
        gap: 1rem;
    }

    .language-circle {
        width: 140px;
        height: 140px;
    }

    .language-card h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .language-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .specializations-section {
        padding: 1.5rem 0.5rem;
        margin: 1.5rem auto;
    }

    .specializations-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .spec-item {
        padding: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .spec-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .spec-item p {
        font-size: 0.85rem;
    }
}

/* ============================================
   ALICEARTJOURNEY GALLERY PAGE
   ============================================ */

.page-art-gallery {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.art-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.art-hero {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    background: transparent !important;
}

.art-hero h1 {
    font-size: 3.5rem;
    color: #c19a6b;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(193, 154, 107, 0.3);
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 auto 1rem auto !important;
    text-align: center;
}

.art-subtitle {
    font-size: 1.3rem;
    color: #3a2f28;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.art-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.art-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.art-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.2);
}

.art-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.art-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.art-item:hover .art-overlay {
    transform: translateY(0);
}

.art-title {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

@media (max-width: 768px) {
    .art-hero h1 {
        font-size: 2.5rem;
    }
    
    .art-subtitle {
        font-size: 1.1rem;
    }
    
    .art-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .art-hero h1 {
        font-size: 2rem;
    }
    
    .art-hero {
        padding: 2rem 1rem;
    }
}
