
    #vakacio-container {
        position: relative;
        width: 1000px;        /* fix szélesség → a háttérkép kitölti, nincs vékony csík */
        max-width: 100%;      /* kisebb képernyőn ne lógjon ki */
        margin: 0 auto;       /* vízszintesen középre */
        height: 60vh;
        min-height: 400px;
        background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?q=80&w=1200&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    #chalkboard {
        position: relative;
        z-index: 2;
        background-color: #2c4c3b;
        border: 12px solid #8b5a2b;
        border-radius: 8px;
        padding: 40px 80px;
        box-shadow:
            inset 0 0 20px rgba(0,0,0,0.6),
            10px 10px 25px rgba(0,0,0,0.4);
        transform: rotate(-3deg);
        animation: floatBoard 4s ease-in-out infinite;
    }
    #vakacio-text {
        font-family: 'Permanent Marker', cursive;
        font-size: 6rem;
        color: #f4f4f4;
        margin: 0;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        opacity: 0.95;
        white-space: nowrap; /* a hosszú szó ne törjön több sorba */
    }
    #vakacio-confetti {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 4;
        pointer-events: none;
    }
    @keyframes floatBoard {
        0% { transform: rotate(-3deg) translateY(0px); }
        50% { transform: rotate(-2deg) translateY(-8px); }
        100% { transform: rotate(-3deg) translateY(0px); }
    }
    @media (max-width: 768px) {
        #chalkboard { padding: 20px 40px; }
        #vakacio-text { font-size: 3.5rem; }
        #vakacio-container { height: 350px; min-height: 350px; }
    }
