/* ===== KURNOOL BAZAR - Shared Styles ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	padding: 3px 10px;
	margin: 0;
	scroll-behavior: smooth;
	font-style: italic;
	font-family: Helvetica,sans-serif;
	font-weight: 700;
}

/* Header / Logo */
.logo {
    text-align: center;
    background: #fc9;
    padding: 0 10px;
    display: block;
    color: #fff8f8 !important;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-weight: 700;
    border: 3px solid #ff0016;
    border-radius: .75em;
    transform-style: preserve-3d;
    transition: transform 150ms cubic-bezier(0, 0, .58, 1), background 150ms cubic-bezier(0, 0, .58, 1);
}

.logo img {
    max-width: 292px;
    height: auto;
}


.logo img {
    height: 73px;
    margin: 5px 5px;
}


@media screen and (max-width:400px) {
    .logo img {
        height: 60px;
        width: auto;
        max-width: 100%;
    }
}

@media screen and (max-width:300px) {
    .logo img {
        height: 40px;
        width: auto;
        max-width: 100%;
    }
}

/* Top welcome bar */
.para1 {
    background: #fff3cd;
    text-align: center;
    padding: 8px;
    border-bottom: 2px solid #b80000;
}

.para1 img {
    vertical-align: middle;
    margin-right: 8px;
}

/* Nav bar */
.site-nav {
    background: #b80000;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: center;
    padding: 6px;
}

.site-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 10px;
    background: #8a000c;
    border-radius: 4px;
    transition: background 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
    background: #000;
}

/* Page content wrapper */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ccc;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
}

/* Section headings */
.page-content h1 {
    background: #b80000;
    color: #fff;
    padding: 10px 14px;
    font-size: 18px;
    margin-bottom: 16px;
    border-radius: 4px;
}

.page-content h2 {
    color: #b80000;
    font-size: 15px;
    margin-top: 18px;
    margin-bottom: 6px;
    border-left: 4px solid #b80000;
    padding-left: 8px;
}

.page-content p {
    margin-bottom: 10px;
    color: #333;
}

.page-content ul {
    margin: 8px 0 12px 18px;
    color: #333;
}

.page-content ul li {
    margin-bottom: 4px;
}

.page-content a {
    color: #b80000;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Contact form */
.contact-form {
    margin-top: 16px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 13px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #b80000;
    color: #fff;
    border: none;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #8a000c;
}

/* Info cards (contact page) */
.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
}

.info-card {
    flex: 1 1 200px;
    background: #fff8f8;
    border: 1px solid #f0c0c0;
    border-top: 3px solid #b80000;
    padding: 14px;
    border-radius: 4px;
    text-align: center;
}

.info-card .icon {
    font-size: 28px;
    margin-bottom: 6px;
}

.info-card strong {
    display: block;
    color: #b80000;
    margin-bottom: 4px;
}

/* Sitemap */
.sitemap-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}

.sitemap-section {
    flex: 1 1 200px;
    background: #fff8f8;
    border: 1px solid #f0c0c0;
    border-top: 3px solid #b80000;
    padding: 12px;
    border-radius: 4px;
}

.sitemap-section h3 {
    color: #b80000;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sitemap-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap-section ul li {
    padding: 3px 0;
    border-bottom: 1px dotted #eee;
}

.sitemap-section ul li a {
    color: #333;
    font-size: 13px;
}

.sitemap-section ul li a:hover {
    color: #b80000;
}

/* Footer */
.footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 16px;
    margin-top: 10px;
    font-size: 12px;
}

.footer a {
    color: #ff6b6b;
    text-decoration: none;
    margin: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .footer-links {
    margin-bottom: 8px;
}

/* Disclaimer box */
.disclaimer-box {
    background: #fff8f0;
    border: 1px solid #e0c090;
    border-left: 4px solid #b80000;
    padding: 12px;
    font-size: 12px;
    color: #555;
    margin-top: 16px;
    border-radius: 0 4px 4px 0;
}

/* Ticker */
.ticker {
    background: #000;
    color: #ff0;
    font-size: 13px;
    font-weight: bold;
    padding: 5px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 600px) {
    .page-content {
        margin: 6px;
        padding: 12px;
    }

    .info-cards,
    .sitemap-grid {
        flex-direction: column;
    }
}