/* Container için display: table */
.container-vertical-align {
    display: table;
    width: 100%;
    height: 100vh; /* Yüksekliği tam ekran yapar */
}

/* İçeriği dikey olarak ortalamak için display: table-cell ve vertical-align: middle */
.centered-content {
    display: table-cell;
    vertical-align: middle;
    align-content:center;
}
/* Popup Form CSS */
.popup-form {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.popup-form-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.bg-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-subtitle-box {
    background: #fdd736;
    padding: 12px 18px;
    border-radius: 6px;
    margin-top: 15px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: inline-block;
    max-width: 85%;
}

.hero-subtitle {
    color: #000 !important;
    margin: 0 !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    font-size: 0.85rem !important;
}

