/*---------------------
  Hotel Mutlu - Custom CSS
  Template'e ek özelleştirmeler
-----------------------*/

/* Header logo boyut sınırı */
.header-section .logo a img {
    max-height: 70px;
    width: auto;
}

/* Footer logo boyut sınırı */
.footer-section .logo a img {
    max-height: 100px;
    width: auto;
}

/* Dil seçici bayrak stili */
.language-option .flag-dropdown ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 14px;
    color: #fff;
    transition: color 0.3s;
}

.language-option .flag-dropdown ul li a:hover {
    color: #dfa974;
}

.language-option > span {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hero Video Background */
.hero-video-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-video-poster {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-video.playing {
    opacity: 1;
}

/* Karartma overlay — metin okunabilirliği */
.hero-video-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* Container'ın video üstünde kalması */
.hero-section .container {
    z-index: 5;
}
