
@font-face {
    font-family: "yekan";
    src: url(../Font/IRYekan.ttf);
}

body {
    background-color: black;
    font-family: "yekan", sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    width: 100%;
    background-image: radial-gradient(circle, rgb(1, 1, 88), #1f1e1e, black);
    border-radius: 0 0 10px 10px;
    padding: 10px 20px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.menu .u1 {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.l1 {
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.l1:hover {
    color: #03A9F4;
    text-shadow: 0 0 5px white;
}

.login-buttons button {
    margin-left: 10px;
    padding: 6px 12px;
    font-size: 12px;
    border: none;
    background: none;
    color: #03A9F4;
    cursor: pointer;
    transition: 0.3s;
}

.login-buttons button:hover {
    background: white;
    color: black;
    border-radius: 5px;
}

/* Reservation and Games Sections */
.rez-container, .games-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
}

.rez-item, .game-item {
    flex: 1 1 300px;
    color: white;
    text-align: center;
}

.rez-item img, .game-item img, .game-item video {
    width: 100%;
    border-radius: 10px;
}

/* Info Section */
.info-section {
    background: linear-gradient(to right, #1a1a1a, #2e2e2e);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.info-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.info-section p {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
}

.info-section button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.info-section button:first-of-type {
    background: #03A9F4;
    color: white;
}

.info-section button:last-of-type {
    background: #00e676;
    color: black;
}

/* Footer */
#foot2 {
    background-image: linear-gradient(to bottom, black, #0a557e);
    padding: 20px;
    color: white;
}

.col2 {
    display: inline-block;
    width: 45%;
    margin: 10px;
}

.col2 h5 {
    font-size: 16px;
}

.col2 ul {
    list-style: none;
    padding: 0;
}

.col2 li {
    margin: 5px 0;
}

iframe {
    width: 100%;
    height: 220px;
    border: none;
    margin-top: 20px;
}

.social-icons {
    text-align: center;
    margin-top: 20px;
}

.social-icons i {
    font-size: 30px;
    margin: 0 10px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .col2 {
        width: 100%;
    }
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu .u1 {
        flex-direction: column;
        align-items: flex-start;
    }
}
