/* BizArt V6 Rich Visual Overhaul + Expanded Flow */
:root {
    --color-cream: #FFFCF7;
    --color-beige: #F8F2EA;
    --color-mint-light: #F4F7F2;
    --color-orange: #E88D67;
    --color-coffee-soft: #6A493D;
    --color-dusk: #24292F;
    --color-dusk-icon: #353D46;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --radius-btn: 60px;
    --radius-lg: 30px;
    --shadow-soft: 0 15px 45px rgba(106, 73, 61, 0.05);
    --shadow-glow: 0 18px 50px rgba(232, 141, 103, 0.3);
    --shadow-hover: 0 25px 60px rgba(106, 73, 61, 0.12);
    --transition-fast: 0.35s ease;
    --transition-slow: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-cream);
    background-image: linear-gradient(to bottom, #fcfaf7 0%, #f4eee3 25%, #ebdcca 55%, #dfcbb3 80%, var(--color-dusk) 95%);
    min-height: 100vh;
    color: var(--color-coffee-soft);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.page-loading {
    overflow-y: hidden;
}

/* Language Visibility Logic */
html.lang-sq [lang="en"] {
    display: none !important;
}

html.lang-en [lang="sq"] {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-coffee-soft);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-padding {
    padding: 6rem 0;
    overflow: hidden;
}

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

.mt-2 {
    margin-top: 2rem;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--color-coffee-soft), #fff, var(--color-orange));
    z-index: 9999;
}

/* Entrance Animations */
.entrance-drop {
    opacity: 0;
    transform: translateY(-100%);
    animation: dropIn var(--transition-slow) forwards 0.2s;
}

.entrance-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp var(--transition-slow) forwards;
}

@keyframes dropIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Universal Hovers */
.glow-hover {
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.glow-hover:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
}

.shadow-glow {
    box-shadow: 0 15px 40px rgba(224, 137, 99, 0.25);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1.1rem 2.6rem;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: var(--radius-btn);
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-orange);
    color: #fff;
    box-shadow: 0 8px 20px rgba(224, 137, 99, 0.3);
}

.btn-secondary {
    background: #fff;
    color: var(--color-coffee-soft);
    box-shadow: var(--shadow-soft);
}

@keyframes softPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(224, 137, 99, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(224, 137, 99, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(224, 137, 99, 0);
    }
}

.pulse-soft {
    animation: softPulse 2s infinite;
}

.pulse-btn:hover {
    animation: softPulse 1.5s infinite;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(255, 251, 243, 0.95);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(112, 79, 64, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    transition: var(--transition-fast);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo {
    color: var(--color-coffee-soft);
    text-shadow: none;
}

.lang-toggle-pill {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.navbar.scrolled .lang-toggle-pill {
    background: rgba(112, 79, 64, 0.1);
    border-color: rgba(112, 79, 64, 0.2);
}

.lang-pill {
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.navbar.scrolled .lang-pill {
    color: rgba(112, 79, 64, 0.6);
}

.lang-pill.active {
    background: #fff;
    color: var(--color-coffee-soft) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--color-coffee-soft);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a.nav-item {
    color: #fff;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-fast);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled .nav-links a.nav-item {
    color: var(--color-coffee-soft);
    text-shadow: none;
}

.nav-links a.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--color-orange);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a.nav-item:hover::after,
.nav-links a.nav-item.active::after {
    width: 100%;
    left: 0;
}

.btn-nav {
    background: var(--color-orange);
    color: #fff !important;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-btn);
    text-shadow: none !important;
    font-weight: 500;
}

/* Rich Background Fundamentals */
.rich-section {
    position: relative;
}

.section-bg-layer {
    position: absolute;
    top: -15%;
    left: -10%;
    width: 120%;
    height: 130%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 10;
}

/* Section Specific Rich Backgrounds */
.bg-cream {
    background-color: var(--color-cream);
}

.bg-beige {
    background-color: transparent;
}

.bg-coffee-texture {
    background: linear-gradient(180deg, transparent, rgba(55, 100, 160, 0.06) 50%, transparent);
    position: relative;
    overflow: hidden;
}

.bg-coffee-texture .section-bg-layer {
    background-image: url('images/bg_coffee_texture.png');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(1.2) hue-rotate(-10deg);
    opacity: 0.45;
    -webkit-mask-image: linear-gradient(180deg, transparent 5%, black 25%, black 75%, transparent 95%);
    mask-image: linear-gradient(180deg, transparent 5%, black 25%, black 75%, transparent 95%);
}

.bg-sweet-dessert {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.bg-sweet-dessert .blur-layer {
    background-image: url('https://images.unsplash.com/photo-1558961363-a0c326e5a0e9?auto=format&fit=crop&w=1500&q=80'); /* Rich warm Baklava/Desert */
    background-size: cover;
    background-position: center;
    filter: blur(16px) brightness(1.05) sepia(0.4);
    opacity: 0.25;
    -webkit-mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
}

.bg-rustic-wood {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.bg-rustic-wood .pattern-wood {
    background-image: url('https://images.unsplash.com/photo-1623341214825-9f4f963727da?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    filter: blur(12px) brightness(0.9) sepia(0.3);
    opacity: 0.25;
    background-blend-mode: normal;
    -webkit-mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
}

.bg-morning-glow {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.bg-morning-glow .blur-light {
    background-image: url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    filter: blur(12px) brightness(0.9) sepia(0.3);
    opacity: 0.25;
    -webkit-mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
}

.bg-evening-lounge {
    background: linear-gradient(180deg, #dfcbb3 0%, var(--color-dusk) 15%);
    position: relative;
    overflow: hidden;
}

.bg-evening-lounge .section-bg-layer {
    background-image: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(8px);
    opacity: 0.15;
    mix-blend-mode: luminosity;
    -webkit-mask-image: linear-gradient(180deg, transparent, black 15%, black 100%);
    mask-image: linear-gradient(180deg, transparent, black 15%, black 100%);
}

/* V7 Aperitivo Background */
.bg-aperitivo {
    background: var(--color-dusk);
    overflow: hidden;
    position: relative;
}

.bg-aperitivo .section-bg-layer {
    background-image: url('https://images.unsplash.com/photo-1574096079513-a82f3efbdca6?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.12;
    mix-blend-mode: overlay;
}

.aperitivo-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.aperitivo-image {
    height: 500px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.text-light,
.text-light span {
    color: #fff !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay-rich {
    filter: contrast(1.1) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(112, 79, 64, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-title {
    font-size: 4.5rem;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: #fff;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

.arrow-down i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Section Title & Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.8rem;
    margin-bottom: 1.8rem;
    letter-spacing: -0.5px;
}

.card-soft {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 3rem;
}

/* Tilt Mechanics (JS) */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
}

.tilt-effect {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Borbone Visuals */
.borbone-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.animated-icon-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.icon-bubble {
    padding: 0.8rem 1.2rem;
    background: var(--color-orange);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(224, 137, 99, 0.3);
}

.borbone-visual {
    perspective: 1000px;
}

.coffee-cup-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.coffee-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    z-index: 2;
    border: 12px solid #fff;
    transform: translateZ(30px);
}

/* Steam & Beans */
.steam {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0;
    z-index: 3;
    transform: translateZ(60px);
}

.steam-1 {
    width: 50px;
    height: 80px;
    top: 15%;
    left: 40%;
    animation: riseSteam 4s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.5s;
}

.steam-2 {
    width: 70px;
    height: 100px;
    top: 20%;
    left: 55%;
    animation: riseSteam 5s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.2s;
}

.steam-3 {
    width: 55px;
    height: 85px;
    top: 10%;
    left: 50%;
    animation: riseSteam 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite 2.5s;
}

@keyframes riseSteam {
    0% {
        transform: translateY(0) scale(1) translateZ(60px) rotate(0deg);
        opacity: 0;
    }

    30% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-120px) scale(2.5) translateZ(60px) rotate(20deg);
        opacity: 0;
    }
}

.floating-bean {
    position: absolute;
    font-size: 2.5rem;
    color: #4a3424;
    z-index: 4;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));
    transform: translateZ(80px);
}

.bean-1 {
    top: 0%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.bean-2 {
    bottom: 15%;
    right: -10%;
    animation: float 5s ease-in-out infinite reverse;
}

.bean-3 {
    bottom: 0%;
    left: 10%;
    animation: float 7s ease-in-out infinite 1s;
    font-size: 1.8rem;
}

/* Menu Lists Layout */
.menu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 2rem;
    perspective: 1000px;
}

.menu-layout.reverse .menu-list-card {
    order: 1;
}

.menu-layout.reverse .menu-image {
    order: 2;
}

.menu-image {
    height: 550px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-hover);
    transition: transform var(--transition-slow);
}

.image-float {
    animation: floatIcon 6s ease-in-out infinite;
}

.image-float-reverse {
    animation: floatIcon 6s ease-in-out infinite reverse;
}

.menu-list-card {
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-slow);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.product-list {
    list-style: none;
}

.product-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 2px dotted rgba(112, 79, 64, 0.2);
    transition: var(--transition-fast);
}

.product-list li:last-child {
    border-bottom: none;
}

#embelsira .product-list li {
    border-bottom: none !important;
}

.product-list li span:last-child {
    color: var(--color-orange);
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

.hover-list li:hover {
    padding-left: 15px;
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
    background: linear-gradient(90deg, rgba(224, 137, 99, 0.05) 0%, transparent 100%);
}

.hover-list.dark li:hover {
    color: #fff;
    border-bottom-color: #fff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

/* Rich Photographic Food Cards */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
    perspective: 1000px;
    margin-top: 2rem;
}

.food-photo-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    text-align: left;
    position: relative;
}

.food-img-wrapper {
    height: 350px;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.food-photo-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.food-photo-card:hover .food-img-wrapper {
    transform: scale(1.08);
}

.food-content {
    padding: 3rem;
    position: relative;
    background: #fff;
}

.bright-card .food-content {
    background: rgba(255, 255, 255, 0.98);
}

.food-content h4 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}

.food-content p {
    font-size: 1.1rem;
    opacity: 0.75;
    margin-bottom: 0;
    line-height: 1.5;
}

.food-content .price {
    position: absolute;
    right: 2rem;
    top: -22px;
    background: #fff;
    color: var(--color-orange);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(106, 73, 61, 0.12);
    border: 1px solid var(--color-beige);
}



/* Sweet Sparkles */
.sparkle-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    color: #FFD700;
    font-size: 1.5rem;
    opacity: 0;
    filter: drop-shadow(0 0 10px #FFD700);
}

.s-1 {
    top: 20%;
    left: 10%;
    animation: twinkle 3s infinite 0.2s;
}

.s-2 {
    top: 50%;
    right: 15%;
    animation: twinkle 4s infinite 1.5s;
    font-size: 2rem;
}

.s-3 {
    bottom: 20%;
    left: 25%;
    animation: twinkle 3.5s infinite 0.8s;
}

.s-4 {
    top: 15%;
    right: 30%;
    animation: twinkle 5s infinite 2.2s;
    font-size: 1rem;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(45deg);
    }
}



/* V6 Vertical Timeline (Atmosfera) */
.vertical-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #DDE3D9;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.left {
    flex-direction: row;
}

.timeline-item.right {
    flex-direction: row-reverse;
}

.timeline-card {
    width: 42%;
    background: #fff;
    padding: 2.2rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.timeline-node {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(112, 79, 64, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: var(--color-orange);
}

.timeline-card h3 {
    font-size: 1.5rem;
    color: var(--color-coffee-soft);
    margin-bottom: 0.6rem;
}

.timeline-card p {
    font-size: 1rem;
    color: #665b53;
    line-height: 1.5;
    margin: 0;
}

/* Cocktail Garnishes & Shimmer */
.shimmer-text {
    background: linear-gradient(90deg, #fff, #E08963, #fff);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmerEffect 4s linear infinite;
}

@keyframes shimmerEffect {
    to {
        background-position: 200% center;
    }
}

.cocktail-glow {
    box-shadow: 0 0 50px rgba(224, 137, 99, 0.2);
}

.dark-glass {
    background: rgba(43, 52, 61, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.garnish-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.garnish {
    position: absolute;
    font-size: 2.5rem;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
    opacity: 0.7;
}

.fruit {
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.2));
    opacity: 0.9;
}

.g-1 {
    top: 15%;
    left: 5%;
    animation: floatIcon 8s ease-in-out infinite;
    transform: rotate(15deg);
}

.g-2 {
    bottom: 20%;
    right: 10%;
    animation: floatIcon 6s ease-in-out infinite reverse;
    font-size: 3rem;
}

.g-3 {
    top: 30%;
    right: 5%;
    animation: floatIcon 9s ease-in-out infinite 2s;
    transform: rotate(-25deg);
}

.g-4 {
    bottom: 10%;
    left: 15%;
    animation: floatIcon 7s ease-in-out infinite 1s;
}

/* Rich Gallery */
.photo-rich-gallery {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-grid {
    display: grid;
}

.gallery-img {
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(112, 79, 64, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    color: white;
    font-size: 3rem;
    backdrop-filter: blur(3px);
}

.gallery-img:hover .gallery-overlay {
    opacity: 1;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.lightbox.show .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 4rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover {
    color: var(--color-orange);
    transform: rotate(90deg);
}

/* Contact Layout & Background */
.bg-contact-shkodra {
    background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.bg-contact-shkodra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(228, 216, 199, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.layout-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    padding: 4.5rem;
}

.contact-list {
    list-style: none;
    margin: 2rem 0;
}

.hover-icon-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

.hover-icon-link:hover {
    transform: translateX(12px);
    color: var(--color-orange);
}

.hover-icon-link i {
    color: var(--color-orange);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.border-radius-lg {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

/* Floating Actions */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: var(--shadow-glow);
    z-index: 1000;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--color-orange);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.bounce-float {
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {

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

    50% {
        transform: translateY(-12px);
    }
}

/* Minimal Footer */
footer {
    background: var(--color-cream);
    padding: 4rem 0 6rem;
    text-align: center;
    border-top: 1px solid rgba(112, 79, 64, 0.1);
}

footer p {
    font-size: 1.1rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Dynamic Scroll Reveals Framework */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.rise-up {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.appear {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.stagger-1 {
    animation-delay: 0.4s;
}

.stagger-2 {
    animation-delay: 0.6s;
}

.stagger-3 {
    animation-delay: 0.8s;
}

.stagger-4 {
    animation-delay: 1.0s;
}

/* --- V8 REFINEMENTS: Merged Layouts & Premium Timeline --- */

/* Kafeteria Merged */
.merged-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.small-refined-img {
    height: 450px;
    max-width: 400px;
    margin: 0 auto;
    border: 6px solid #fff;
    box-shadow: 0 20px 50px rgba(106, 73, 61, 0.15);
}

.coffee-image {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.coffee-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: radial-gradient(circle, transparent 50%, rgba(255, 255, 255, 0.45) 100%);
    pointer-events: none;
}

.coffee-image img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 15px 30px rgba(106, 73, 61, 0.2)) drop-shadow(0 0 20px rgba(224, 137, 99, 0.15));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.coffee-image img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(106, 73, 61, 0.3)) drop-shadow(0 0 30px rgba(224, 137, 99, 0.25));
}

@media (max-width: 768px) {
    .coffee-image {
        max-width: 250px;
    }
}

/* Aperitivo & Cocktails Merged */
.cocktail-merged-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cocktail-content-wrapper {
    display: flex;
    flex-direction: column;
}

.happy-hour-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(224, 137, 99, 0.2);
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    backdrop-filter: blur(5px);
}

/* Premium Timeline */
.premium-border {
    border: 1px solid rgba(112, 79, 64, 0.1);
    border-top: 4px solid var(--color-orange);
}

.timeline-meta {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #8a7a6f;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.premium-timeline .timeline-node {
    border: 2px solid var(--color-orange);
    box-shadow: 0 0 20px rgba(224, 137, 99, 0.3);
}

/* Clickable Map */
.map-overlay-click {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: transparent;
}


/* ========================================================= */
/* --- 📱 PREMIUM MOBILE UI OVERHAUL (iOS & Android) --- */
/* ========================================================= */

@media (max-width: 900px) {
    /* Merged Layouts: Convert to elegant stacked blocks */
    .merged-layout,
    .cocktail-merged-layout,
    .borbone-feature,
    .menu-layout {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    /* Reverse order to prioritize images above menus for flow */
    .cocktail-merged-layout, .merged-layout {
        flex-direction: column-reverse;
    }
    
    .cocktail-content-wrapper, .menu-list-card {
        width: 100%;
    }

    .layout-contact {
        grid-template-columns: 1fr;
        padding: 3rem;
    }

    .aperitivo-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .aperitivo-image {
        height: 380px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .small-refined-img {
        height: 350px;
        max-width: 100%;
    }
    
    .borbone-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    /* 1. Global Flow & Elegance */
    .section-padding {
        padding: 4.5rem 0;
    }
    
    .container {
        width: 88%; /* Optimal breathing room for mobile */
    }

    /* Prevent mobile jank on fixed/parallax backgrounds */
    .section-bg-layer {
        background-attachment: scroll;
    }

    /* 2. Scaled Premium Typography */
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.15;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem !important;
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }

    h3, .food-content h4 {
        font-size: 1.6rem;
    }

    p, .timeline-card p, .food-content p {
        font-size: 1rem;
        line-height: 1.6;
        opacity: 0.85;
    }

    /* Force override inline pill styles for mobile screens */
    .section-header[style*="padding"] {
        padding: 1rem 1.5rem !important;
        border-radius: 40px !important;
    }

    /* 3. Luxury Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 251, 243, 0.98); 
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        
        /* Smooth transform reveals */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px) scale(0.98);
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s linear;
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .nav-links a.nav-item {
        color: var(--color-coffee-soft) !important;
        font-size: 2.2rem;
        font-family: var(--font-heading);
        font-weight: 600;
        margin-bottom: 0.5rem;
        text-shadow: none;
    }
    
    .btn-nav {
        margin-top: 1rem;
        font-size: 1.1rem;
        padding: 1rem 3rem;
    }

    /* Mobile Menu Toggle Button (Elegantly Styled) */
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        color: white;
        transition: all 0.3s ease;
    }
    
    .navbar.scrolled .mobile-toggle {
        background: rgba(112, 79, 64, 0.08);
        color: var(--color-coffee-soft);
    }
    
    .nav-right {
        display: flex;
        gap: 0.8rem;
        align-items: center;
    }
    
    .lang-pill {
        padding: 0.3rem 0.8rem;
        font-size: 0.85rem;
    }

    /* 4. Product Display Optimization */
    .menu-layout {
        margin-top: 1.5rem;
        gap: 2.5rem;
    }
    
    .menu-list-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .product-list li {
        font-size: 1.1rem;
        padding: 1rem 0;
    }

    .product-list li span:last-child {
        font-size: 1.15rem;
    }

    /* Controlled Mobile Image Scaling */
    .coffee-image, .aperitivo-image, .small-refined-img {
        max-width: 320px;
        height: 300px;
        width: 100%;
        margin: 0 auto;
        border-radius: 24px;
        border-width: 4px;
    }

    /* Card Layouts: Grid to Stack */
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .food-photo-card {
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(106, 73, 61, 0.08);
        border: 1px solid rgba(112, 79, 64, 0.05);
    }

    .food-img-wrapper {
        height: 260px; /* Keep proportional horizontal aspect */
    }
    
    .food-content {
        padding: 2rem 1.5rem;
        text-align: center; /* Center-align text softly for card harmony */
    }

    .food-photo-card .price {
        font-size: 1.25rem;
        padding: 0.4rem 1.4rem;
        top: -20px;
        right: 50%; /* Center the price bubble perfectly */
        transform: translateX(50%);
        box-shadow: 0 8px 25px rgba(106, 73, 61, 0.15);
    }

    /* 5. Fluid Section Flow */
    /* Timeline / Atmosfera fully stacked and aligned */
    .vertical-timeline {
        padding-left: 20px;
        margin-top: 2rem !important;
    }
    .timeline-line {
        left: 20px;
        transform: none;
    }
    .timeline-node {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        transform: translate(-50%, -50%);
    }

    .timeline-item.left,
    .timeline-item.right {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 45px;
        margin-bottom: 2.5rem;
    }

    .timeline-card {
        width: 100%;
        padding: 1.5rem;
        border-radius: 20px;
        text-align: left;
    }
    
    .timeline-meta {
        justify-content: flex-start;
    }

    /* Stacked Actions */
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .hero-cta .btn {
        width: 100%;
    }

    /* Contact Details */
    .layout-contact {
        padding: 2.5rem 1.5rem;
        background: rgba(255, 255, 255, 0.96);
        border-radius: 24px;
        gap: 2rem;
    }

    .contact-map {
        height: 260px;
        border-radius: 16px;
    }
    
    .gallery-img {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 90%;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .product-list li {
        font-size: 1rem;
    }
    .product-list li span:last-child {
        font-size: 1.1rem;
    }
    .btn {
        font-size: 0.95rem;
    }
}