/* VibeKit.cz - Custom Styles */

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette - bude doplněna */

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */

    /* Animations */
}

body {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Custom Components === */

/* Navigation */

/* Hero Section */

/* Features */

/* Product Section */

/* Purchase Form */

/* Footer */

/* === Utilities === */

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out forwards;
}

/* Cookie Banner */
#cookie-banner {
    transform: translateY(100%);
}

#cookie-banner.animate-slide-up {
    transform: translateY(0);
}

/* Responsive Helpers */


/* Youtube Embed */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 poměr */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 2rem auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px; /* moderní zaoblené rohy */
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
