﻿@font-face {
    font-family: 'khodkar';
    src: url('khodkar.ttf') format('truetype');
}

@font-face {
    font-family: 'farhang';
    src: url('farhang.ttf') format('truetype');
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
}

.video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ddd;
}



.text-content {
    margin-bottom: 20px;
}




.buy-ticket {
    border: 2px solid red;
    color: white !important;
}

/* استایل برای حالت موبایل */
@media (max-width: 768px) {
    .text-content h1 {
        font-size: 1.5rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem; /* تنظیم padding برای خوانایی بهتر */
    }

    .buy-ticket {
        padding: 0.5rem 1rem; /* تنظیم padding دکمه */
    }
}