/* ===== Global styling ===== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    text-align: center;
}
.main-title {
    color: red;
    font-weight: bold;
    font-size: 32px;
}

.tagline {
    color: red;
    font-weight: bold;
    font-size: 18px;
}
/* ===== Header Logo ===== */
.logo {
    width: 130px;          /* reduced size */
    margin: 20px auto 10px;
    display: block;
}

/* ===== Odisha Map Banner ===== */
/* Banner (Odisha Map) */
.banner img {
    width: 60%;        /* Reduce size */
    max-width: 350px;  /* Prevent too big */
    border-radius: 20px;
    display: block;
    margin: 20px auto;
}

/* ===== Title & Quote ===== */
h1 {
    font-size: 26px;
    margin: 10px 0;
    color: #333;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* ===== Hall Image Grid ===== */
.hall-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0 10px;
}

/* ===== Hall Box ===== */
.hall-card {
    width: 140px;        /* small & neat */
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hall-card img {
    width: 100%;
    height: 95px;
    object-fit: cover;
    border-radius: 10px;
}

/* ===== Contact Section ===== */
.contact {
    margin-top: 25px;
    padding: 10px;
    background: #fff;
}

.contact a {
    margin: 0 10px;
    text-decoration: none;
    font-size: 16px;
    color: #d32f2f;
    font-weight: bold;
}



/* ===== Footer ===== */
footer {
    margin-top: 20px;
    padding: 10px;
    font-size: 12px;
    color: #888;
}