*{
    font-family: sans-serif;
}

footer p{
    margin: 0;
    padding: 15px;
    color: #fff;
}
footer{
    background: linear-gradient(#d83c17, #9a2b11, #6f200e);
}

.wapper-home{
    /* background-image: url('/images/bg_video.mp4');
    background-repeat: no-repeat;
    background-position: center; */
    min-height: 95vh;
    position: relative;
    z-index: 1;
    /* background-size: cover; */
}

/* CSS cho background video */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Đẩy video ra sau nội dung */
}

/* Lớp phủ mờ để tạo hiệu ứng đẹp hơn */
.wapper-home .text-header{
    font-weight: bold;
    color: #915000;
    text-shadow: 3px -1px 0px yellow;
    text-transform: uppercase;
}

.wapper-home .lists-btn{
    text-align: center;
    padding: 0;
}

.wapper-home .lists-btn li{
    list-style: none;
    padding: 15px;
    border: 1px solid #fcff00;
    background: #925001;
    margin: 15px 0;
    display: flex;
    align-items: center;
    border-radius: 50px;
}

.wapper-home .lists-btn li a{
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
}

.wapper-home .lists-btn img{
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.wapper-home .lists-btn li:hover{
    background: #fef3cd;
    border: 1px solid #925001;
}
.wapper-home .lists-btn li:hover a{
    color: #925001;
}

.brow-text{
    color: #925001;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.logo-head img{
    animation: spin 3s linear infinite; 
}

.fixed-menu {
    z-index: 99;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.menu-item {
    width: 50px;
    height: 50px;
    list-style: none;
    padding: 15px;
    border: 1px solid #fcff00;
    background: #925001;
    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 24px;
    transition: background 0.3s ease;
}
.menu-item i{
    color: yellow
}
.menu-item:hover {
    background: #fef3cd;
    border: 1px solid #925001;
}
.menu-item:hover i{
    color: #925001;
}

/* Hiệu ứng gõ chữ lặp lại chậm + dừng 5s */
@keyframes typing {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    50% {
        clip-path: inset(0 0 0 0);
    }
    90% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 100% 0 0);
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.s-text-header {
    display: inline-block;
    white-space: nowrap;
    border-right: 2px solid black;
    font-size: 36px;
    font-weight: bold;
    animation: typing 8s steps(40, end) infinite, blink 1s step-end infinite;
    animation-delay: 0s, 0s;
    animation-duration: 8s, 1s;
    animation-iteration-count: infinite, infinite;
    margin: 10px 35%;
}

.search-home{
    min-height: 96vh;
    /* height: 95vh;
    text-align: center; */
}

/* Ô tìm kiếm */
.search-container {
    position: relative;
    width: 60%;
    margin: 0 auto;
}

/* Input */
.search-container input {
    box-shadow: 2px 3px 8px 0px #ccc;
    width: 100%;
    padding: 10px 50px 10px 15px;
    border: 2px solid #ccc;
    border-radius: 25px;
    outline: none;
    font-size: 16px;
}

.md-head-dark{
    background-color: #925001;
    color: yellow;
}

/* Button trong input */
.search-container button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
    color: #007bff;
}

/* tìm kiếm */
.card-body-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 15px;
}

.card-body-item:hover{
    box-shadow: 7px 5px 15px rgb(255 87 34 / 38%);
    cursor: pointer;
    background-color: #ffc10736;
}

.card-body-item img{
    width: 50px;
    height: 50px;
}

.card-body-item .c-left{
    display: flex;
    flex: 1;
    align-items: center;
    gap: 15px;
}

.card-body-item .c-right{
    flex: 10;
    display: flex;
    align-items: left;
    gap: 15px;
    flex-flow: column;
}

/* repository */
@media screen and (max-width: 484px) {
    .search-home {
        overflow: scroll;
    }
}

@media screen and (max-width: 767px) {
    .s-text-header{
        margin: 10px 0;
        font-size: 32px;
    }

    .card-body-item .c-right{
        gap: 5px;
    }

    .card-body-item{
        flex-flow: column;
    }

    .search-container{
        width: 100%;
    }

    .c-action a{
        margin-top: 15px;
    }
    .wapper-register .reg-content{
        max-width: 100%;
    }
}