/* ========================================
   Függöny konténer
   ======================================== */
#curtain {
    position: fixed;
    inset: 0;
    z-index: 100001;
    overflow: hidden;
}

/* ========================================
   FIX OVERLAY KÉP (függöny helyett)
   ======================================== */
.curtain-image {
    position: absolute;
    inset: 0;
    background-image: url('fuggony.jpg');
    background-size: contain;
    background-position: center;
    z-index: 100000;
    opacity: 1;
    transition: opacity 3s linear 0.2s; /* lassú, késleltetett egyenletes fade */
	background-repeat: no-repeat;
    background-color: black;
}

#curtain.open .curtain-image {
    opacity: 0;
}

/* ========================================
   Air blockok
   ======================================== */
.air-block {
    position: absolute;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 100010;
    opacity: 1;
    transition: opacity 3s linear 0.2s, transform 3s linear 0.2s;
}

.air-block.fade-out {
    opacity: 0;
    transform: scale(0.6);
}

#block2 {
    position: absolute;
    top: 8%;
    left: 5%;
}

#block2 img {
    width: 170px;
    height: auto;
    max-width: 100%;
	opacity: 0.9;
}
#block1 {
    position: absolute;
    bottom: 5%;
    left: 50%;
	transform: translateX(-50%);
	width: 100%;
}

#block1 img {
    width: 328px;
    height: 112px;
    max-width: 100%;
	opacity: 0.5;
}

/* ========================================
   Középső tartalom
   ======================================== */
.curtain-center {
    position: absolute;
    z-index: 1000020;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    background: transparent;
	bottom: 4%;
    left: 50%;
	transform: translateX(-50%);
	width: 100%;
}

.curtain-center.fade-out {
    opacity: 0;
    transform: scale(0.8);
}

/* Címek */
.curtain-center h1 {
    font-size: 22px;
    margin-bottom: -7px;
}
.curtain-center h2 {
    font-size: 13px;
    margin-bottom: 0;
}
.curtain-center h3 {
    font-size: 12px;
    margin: 5px 0 10px;
}

/* Gombok */
.curtain-center button {
    padding: 10px 10px;
    font-size: 13px;
    cursor: pointer;
    background: #b31217;
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-weight: bold;
}

.curtain-center button:hover {
    background: #d71920;
}

#openCurtain2 {
    background: #555;
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    font-size: 10px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}

#openCurtain2:hover {
    background: #777;
}

/* ========================================
   MOBIL
   ======================================== */
@media (max-width: 1280px) {
#block2 img { width: 150px; }
}
@media (max-width: 1024px) {
#block2 img { width: 140px; }
}
@media (max-width: 900px) {
#block2 img { width: 130px; }
}
@media (max-width: 800px) {
#block2 img { width: 110px; }
}
@media (max-width: 450px) {
#block2 img { 
width: 80px;
opacity: 0.5;
}
#block2 {
    top: 2%;
    left: 37%;
}
}
