:root {
    --bg-dark: #0A0A10;
    --bg-panel: rgba(22, 24, 38, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #8E94A8;
    
    /* n8n style neon gradients */
    --brand-gradient: linear-gradient(135deg, #FF456A 0%, #FA6B3A 50%, #FFB648 100%);
    --bg-gradient: linear-gradient(to bottom, #0A0A10, #14121B);
    
    --shadow-neon: 0 0 30px rgba(255, 69, 106, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-dark);
    background-image: var(--bg-gradient);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Botanical Background */
.botanical-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Animated Flowers */
.flower {
    position: absolute;
    border-radius: 50%;
    animation: sway 8s ease-in-out infinite;
}

.flower-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 69, 106, 0.3), rgba(250, 107, 58, 0.1));
    animation-delay: 0s;
}

.flower-2 {
    top: 60%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 40% 40%, rgba(142, 69, 255, 0.3), rgba(255, 69, 106, 0.1));
    animation-delay: -2s;
}

.flower-3 {
    bottom: 15%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 35% 35%, rgba(250, 107, 58, 0.3), rgba(142, 69, 255, 0.1));
    animation-delay: -4s;
}

.flower-4 {
    top: 30%;
    left: 80%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 45% 45%, rgba(255, 69, 106, 0.25), rgba(250, 107, 58, 0.08));
    animation-delay: -6s;
}

/* Flower Petals */
.flower::before,
.flower::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
}

.flower::before {
    top: -20%;
    left: 20%;
    width: 60%;
    height: 60%;
}

.flower::after {
    bottom: -20%;
    right: 20%;
    width: 60%;
    height: 60%;
}

/* Animated Leaves */
.leaf {
    position: absolute;
    width: 60px;
    height: 120px;
    background: linear-gradient(135deg, rgba(142, 69, 255, 0.15), rgba(250, 107, 58, 0.05));
    border-radius: 0 100% 0 100%;
    animation: float-leaf 12s ease-in-out infinite;
}

.leaf-1 {
    top: 20%;
    right: 5%;
    transform: rotate(45deg);
    animation-delay: -1s;
}

.leaf-2 {
    bottom: 30%;
    left: 8%;
    transform: rotate(-30deg);
    animation-delay: -3s;
}

.leaf-3 {
    top: 70%;
    right: 25%;
    transform: rotate(60deg);
    animation-delay: -5s;
}

/* Animated Grass Blades */
.grass {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 80px;
    background: linear-gradient(to top, rgba(142, 69, 255, 0.2), transparent);
    border-radius: 100% 0;
    animation: wave 6s ease-in-out infinite;
    transform-origin: bottom;
}

.grass-1 { left: 10%; height: 100px; animation-delay: 0s; }
.grass-2 { left: 15%; height: 80px; animation-delay: -0.5s; }
.grass-3 { left: 20%; height: 120px; animation-delay: -1s; }
.grass-4 { left: 85%; height: 90px; animation-delay: -1.5s; }
.grass-5 { left: 90%; height: 110px; animation-delay: -2s; }
.grass-6 { left: 95%; height: 85px; animation-delay: -2.5s; }

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(250, 107, 58, 0.3);
    border-radius: 50%;
    animation: float-particle 15s linear infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 40%; left: 80%; animation-delay: -3s; }
.particle-3 { top: 60%; left: 30%; animation-delay: -6s; }
.particle-4 { top: 80%; left: 60%; animation-delay: -9s; }
.particle-5 { top: 30%; left: 50%; animation-delay: -12s; }

/* Animations */
@keyframes sway {
    0%, 100% { transform: translateX(0) rotate(0deg) scale(1); }
    25% { transform: translateX(10px) rotate(2deg) scale(1.05); }
    50% { transform: translateX(-5px) rotate(-1deg) scale(0.95); }
    75% { transform: translateX(15px) rotate(3deg) scale(1.02); }
}

@keyframes float-leaf {
    0%, 100% { transform: translateY(0) rotate(45deg) scale(1); }
    33% { transform: translateY(-20px) rotate(50deg) scale(1.1); }
    66% { transform: translateY(10px) rotate(40deg) scale(0.9); }
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}

@keyframes float-particle {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 16, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-accent {
    color: #FA6B3A;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:not(.btn-primary):hover {
    color: var(--text-main);
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    transition: var(--transition);
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--brand-gradient);
    color: white !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: var(--shadow-neon);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 69, 106, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Layout */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.glass-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(250, 107, 58, 0.1);
    color: #FA6B3A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(250, 107, 58, 0.2);
    width: fit-content;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 56px;
    letter-spacing: -1px;
}

.about-section {
    margin-top: 24px;
}

.section-subtitle {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    color: var(--text-muted);
}

.feature-icon {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.features-list strong {
    color: var(--text-main);
}

.feature-text {
    padding-top: 8px;
}

/* Video Player Styles */
.video-player-container {
    margin: 32px 0;
    display: flex;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(255, 69, 106, 0.1), rgba(250, 107, 58, 0.1));
    border: 2px solid rgba(250, 107, 58, 0.3);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: 0 0 40px rgba(255, 69, 106, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.video-wrapper:hover {
    border-color: rgba(250, 107, 58, 0.5);
    box-shadow: 0 0 60px rgba(255, 69, 106, 0.3), 0 12px 40px rgba(0, 0, 0, 0.5);
    transform: scale(1.02);
}

.main-video {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    background: #000;
}

/* Custom Video Controls */
.video-controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(10, 10, 16, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transition: var(--transition);
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 10px;
    font-weight: bold;
}

.control-btn:hover {
    background: rgba(250, 107, 58, 0.2);
    border-color: rgba(250, 107, 58, 0.4);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

#muteBtn {
    width: 50px;
    font-size: 9px;
}

/* Hide default controls for custom styling */
.main-video::-webkit-media-controls {
    display: none !important;
}

.main-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-highlight {
    margin-top: 32px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: linear-gradient(to right, rgba(255, 69, 106, 0.1), rgba(250, 107, 58, 0.1));
    border-left: 3px solid #FA6B3A;
    font-weight: 500;
    font-size: 18px;
    color: var(--text-main);
}

/* Shops Section */
.shops-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.shop-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop-card:hover {
    transform: translateY(-8px);
    border-color: rgba(250, 107, 58, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(250, 107, 58, 0.15);
}

.shop-media {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #111;
}

.shop-media img,
.shop-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shop-card:hover .shop-media img,
.shop-card:hover .shop-media video {
    transform: scale(1.05);
}

.shop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 16, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.shop-card:hover .shop-overlay {
    opacity: 1;
}

.visit-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(4px);
    transform: translateY(10px);
    transition: var(--transition);
}

.shop-card:hover .visit-btn {
    transform: translateY(0);
}

.shop-info {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(255,255,255,0.02), transparent);
}

.shop-info h3 {
    font-size: 20px;
    letter-spacing: 0.5px;
}

/* Footer Section */
.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(22, 24, 38, 0.6) 0%, rgba(30, 20, 35, 0.6) 100%);
}

.footer-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.footer-block p {
    font-size: 18px;
    color: var(--text-muted);
}

.footer-block strong {
    color: var(--text-main);
}

.contact-box {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.contact-box h3 {
    font-size: 22px;
    font-weight: 600;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-main);
    color: var(--bg-dark);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background: var(--brand-gradient);
    color: white;
}

.site-footer {
    text-align: center;
    padding: 24px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

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

.shops-grid > a:nth-child(1) { animation-delay: 0.1s; }
.shops-grid > a:nth-child(2) { animation-delay: 0.2s; }
.shops-grid > a:nth-child(3) { animation-delay: 0.3s; }
.shops-grid > a:nth-child(4) { animation-delay: 0.4s; }
.shops-grid > a:nth-child(5) { animation-delay: 0.5s; }
.shops-grid > a:nth-child(6) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(15, 15, 25, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        z-index: 99;
        align-items: stretch;
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .nav-link {
        text-align: center;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        transition: var(--transition);
        border: 1px solid transparent;
    }

    .nav-links .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(250, 107, 58, 0.3);
    }

    .nav-links .btn-primary {
        margin-top: 8px;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 40px;
    }
    
    .glass-panel {
        padding: 32px 24px;
    }

    .video-player-container {
        margin: 24px 0;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .main-content {
        padding-top: 100px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .shops-grid {
        grid-template-columns: 1fr;
    }
}
