/* General layout */
body {
    font-family: Arial, sans-serif;
    direction: rtl;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

main {
    max-width: 1100px;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Header + logo + nav */
header {
    background-color: #111827;
    color: #ffffff;
    padding: 10px 20px;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.site-text h1 {
    font-size: 1.1rem;
    margin: 0;
}

.site-subtitle {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: #d1d5db;
}

/* Navigation */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

nav a {
    color: #f9fafb;
    text-decoration: none;
    font-size: 0.95rem;
}

nav a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    max-width: 1100px;
    margin: 10px auto 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Forms */
form {
    max-width: 500px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
    width: 100%;
    padding: 7px 8px;
    margin-top: 3px;
    box-sizing: border-box;
}

button {
    padding: 8px 16px;
    border: none;
    background-color: #2563eb;
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #1d4ed8;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table th,
table td {
    border: 1px solid #e5e7eb;
    padding: 8px;
    text-align: center;
}

table th {
    background-color: #f3f4f6;
    font-weight: bold;
}

/* Messages */
p {
    margin: 8px 0;
}
.stadium-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
}

/* 3 images per row with spacing using margin instead of gap */
.stadium-gallery img {
    width: 32%;
    margin-left: 2%;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Remove extra margin on the first item in each row if you want (optional) */
/* .stadium-gallery img:nth-child(3n+1) {
    margin-left: 0;
} */

/* Booking Map Image */
.stadium-map img {
    width: 50%;
    margin: 15px 0;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}



