{
box-sizing: border-box;
margin: 0;
padding: 0;
}


body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans Devanagari", "Segoe UI", sans-serif;
background: linear-gradient(135deg, #ff9933 0%, #ffd699 50%, #fff5e6 100%);
color: #2b2b2b;
line-height: 1.6;
}

/* हेडर और नेविगेशन */
.top-header {
position: sticky;
top: 0;
z-index: 999;
background: linear-gradient(90deg, #b34700, #ff9933);
color: #fff;
padding: 1rem 1.5rem;
border-bottom: 4px solid #ffd699;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.logo-block {
display: flex;
align-items: center;
gap: 1rem;
flex-wrap: wrap;
}

.logo-circle {
width: 52px;
height: 52px;
border-radius: 50%;
border: 2px solid #ffe6b3;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
background: rgba(255, 255, 255, 0.25);
}

.logo-text h1 {
font-size: 1.4rem;
margin-bottom: 0.2rem;
}

.logo-text p {
font-size: 0.9rem;
opacity: 0.9;
}

.main-nav {
margin-top: 0.8rem;
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
}

/* Navigation को button जैसा look */
.main-nav a {
text-decoration: none;
font-size: 0.95rem;
padding: 0.55rem 1.2rem;
border-radius: 50px;
font-weight: 600;
background: rgba(255, 255, 255, 0.28);
border: 1px solid rgba(255, 255, 255, 0.55);
backdrop-filter: blur(12px);
color: #4b1f00;
transition: background 0.25s ease, transform 0.15s ease;
}

.main-nav a:hover {
background: #fff;
color: #b34700;
transform: translateY(-2px);
}

.main-nav a.active {
background: #b34700;
color: #fff;
border-color: #ffcc80;
}

/* हीरो सेक्शन (sub-pages के लिए) */
.hero {
padding: 2rem 1.5rem 1.5rem;
background: radial-gradient(circle at top, #fff0d6 0, #ffe7bf 55%);
}

.hero-content {
max-width: 860px;
margin: 0 auto;
text-align: left;
}

.hero-content h2 {
font-size: 1.6rem;
margin-bottom: 0.8rem;
color: #4b1f00;
}

.hero-content p {
font-size: 1rem;
margin-bottom: 1.2rem;
color: #5b2800;
}

/* बटन */
.primary-btn,
.secondary-btn {
display: inline-block;
padding: 0.7rem 1.4rem;
border-radius: 50px;
border: none;
cursor: pointer;
text-decoration: none;
font-size: 1rem;
font-weight: 700;
}

.primary-btn {
background: #b34700;
color: #fff;
margin-right: 0.5rem;
box-shadow: 0px 4px 12px rgba(179, 71, 0, 0.35);
}

.secondary-btn {
background: #ffcc80;
color: #4b1f00;
box-shadow: 0px 4px 10px rgba(255, 200, 120, 0.4);
}

.primary-btn:hover,
.secondary-btn:hover {
transform: translateY(-2px);
opacity: 0.92;
}

.full-width {
width: 100%;
}

/* कॉमन सेक्शन */
.content-section {
padding: 1.8rem 1.5rem;
max-width: 1000px;
margin: 0 auto;
}

.content-section.alt {
background: #fff8ed;
border-top: 1px solid #f4d9b4;
border-bottom: 1px solid #f4d9b4;
}

.content-section h3 {
font-size: 1.35rem;
margin-bottom: 0.8rem;
color: #4b1f00;
}

.content-section p {
margin-bottom: 0.8rem;
color: #4b2a08;
}

/* पेज हेडर (sub pages शीर्षक) */
.page-header {
padding: 1.5rem 1.5rem 0.5rem;
max-width: 1000px;
margin: 0 auto;
}

.page-header h2 {
font-size: 1.5rem;
margin-bottom: 0.3rem;
color: #4b1f00;
}

.page-header p {
font-size: 0.95rem;
color: #4a5568;
}

/* ग्रिड कार्ड लेआउट */
.info-grid {
display: grid;
gap: 1rem;
margin-top: 1rem;
}

.info-card {
background: #fff;
border-radius: 0.9rem;
padding: 1rem;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
border: 1px solid #f1e4c8;
}

.info-card h4 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
color: #2d3748;
}

.info-card ul {
padding-left: 1rem;
}

.info-card li {
margin-bottom: 0.3rem;
}

/* गैलरी ग्रिड */
.gallery-grid {
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery-item {
background: #fff;
border-radius: 0.9rem;
overflow: hidden;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
border: 1px solid #f1e4c8;
}

.gallery-item img {
width: 100%;
height: 150px;
object-fit: cover;
display: block;
}

.gallery-item p {
padding: 0.6rem 0.7rem;
font-size: 0.9rem;
text-align: center;
}

/* फ़ॉर्म स्टाइल */
.form-card {
background: #fff;
border-radius: 0.9rem;
padding: 1rem;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
border: 1px solid #f1e4c8;
}

.form-row {
margin-bottom: 0.8rem;
}

.form-row label {
display: block;
font-size: 0.9rem;
margin-bottom: 0.25rem;
color: #4a5568;
}

.form-row input,
.form-row textarea,
.form-row select {
width: 100%;
padding: 0.5rem 0.6rem;
border-radius: 0.6rem;
border: 1px solid #d4b88c;
font-size: 0.95rem;
outline: none;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
border-color: #b7791f;
box-shadow: 0 0 0 1px rgba(183, 121, 31, 0.25);
}

.form-row textarea {
min-height: 70px;
resize: vertical;
}

.checkbox-row {
display: flex;
gap: 0.6rem;
align-items: flex-start;
}

.checkbox-row input[type="checkbox"] {
margin-top: 0.2rem;
width: 18px;
height: 18px;
}

.form-note {
font-size: 0.8rem;
color: #744210;
margin-top: 0.4rem;
}

/* संपर्क लेआउट */
.contact-layout {
display: grid;
gap: 1rem;
}

.contact-card {
background: #fff;
border-radius: 0.9rem;
padding: 1rem;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
border: 1px solid #f1e4c8;
}

/* मैप */
.map-wrapper {
border-radius: 0.9rem;
overflow: hidden;
border: 1px solid #e2e8f0;
height: 280px;
}

.map-wrapper iframe {
width: 100%;
height: 100%;
border: 0;
}

/* फुटर */
.site-footer {
text-align: center;
padding: 1rem 0.5rem 1.2rem;
font-size: 0.8rem;
color: #4a5568;
}

/* सदस्य सूची टेबल UI (members.html) */
.filter-panel {
display: grid;
gap: 0.8rem;
margin-bottom: 1rem;
}

.table-wrapper {
width: 100%;
overflow-x: auto;
background: #fff;
border-radius: 0.9rem;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
border: 1px solid #f1e4c8;
}

.members-table {
width: 100%;
border-collapse: collapse;
min-width: 720px;
font-size: 0.9rem;
}

.members-table thead {
background: #ffe0b3;
}

.members-table th,
.members-table td {
padding: 0.55rem 0.6rem;
border-bottom: 1px solid #f1e4c8;
text-align: left;
vertical-align: top;
}

.members-table th {
font-weight: 700;
color: #4b1f00;
}

.members-table tbody tr:nth-child(even) {
background: #fffaf2;
}

.members-table tbody tr:hover {
background: #fff1da;
}

/* Responsive Tweaks */
@media (min-width: 700px) {
.content-section {
padding: 2rem 1.5rem;
}

.info-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-layout {
grid-template-columns: 1.1fr 1.2fr;
}
}

/* ---------- Landing page special effects (index.html) ---------- */

/* Landing logo glow (अगर logo-circle में image लगाएँ) */
.landing-logo img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
border: 4px solid #ffdd99;
box-shadow: 0 0 18px rgba(255, 204, 120, 0.55),
0 0 32px rgba(255, 140, 0, 0.45);
animation: divineGlow 2.6s ease-in-out infinite alternate;
}

@keyframes divineGlow {
from { box-shadow: 0 0 12px rgba(255,180,80,0.45); }
to   { box-shadow: 0 0 28px rgba(255,120,40,0.75); }
}

/* Jelly style Shivling (index landing side image) */
.jelly-shivling {
position: absolute;
top: 20px;
right: 20px;
z-index: 30;
}

.jelly-shivling img {
width: 220px;
height: 220px;
border-radius: 50%;
object-fit: cover;
border: 5px solid #ffdd99;
box-shadow: 0 0 30px rgba(255,160,60,0.70);
animation: jelly 2.8s ease-in-out infinite;
}

@keyframes jelly {
0%, 100% { transform: scale(1) translateY(0); }
50%      { transform: scale(1.08) translateY(-6px); }
}

/* Mobile optimization – Shivling नीचे और थोड़ा छोटा */
@media (max-width: 600px) {
.jelly-shivling {
position: static;
margin-top: 1rem;
}
.jelly-shivling img {
width: 180px;
height: 180px;
}
}