:root {
    --primary: #b5121b;
    --primary-dark: #8a0e15;
    --accent: #e08a1e;
    --bg: #f7f3ee;
    --border: #e3dcd3;
    --text: #2c2418;
    --text-light: #7a6f5f;
    --success: #1b8a3d;
}
* { box-sizing: border-box; }
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}
a { color: inherit; }

/* ===== NAVBAR ===== */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.nav-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem 1.25rem;
    flex-wrap: wrap;
    gap: .6rem;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; border: 2px solid var(--primary); }
.brand span { font-weight: 700; color: var(--primary); font-size: 1.05rem; }
.nav-links { display: flex; gap: .3rem; flex-wrap: wrap; }
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: .88rem;
    font-weight: 600;
    padding: .5rem .8rem;
    border-radius: 20px;
}
.nav-links a:hover, .nav-links a.active { background: var(--primary); color: #fff; }
.nav-links a.btn-register { background: var(--accent); color: #fff; }

/* ===== HERO / PAGE HEADER ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&display=swap');

.page-hero {
    position: relative;
    background-image: url('hero-pages.jpg');
    background-size: cover;/* Krishna ji ko center me rakhne ke liye */
    background-position: center 30%;
     min-height: 400px; /* Photo ko aur bada dikhane ke liye */
    width: 100%;
}
.page-hero h1 {
    margin: 0 0 .5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: .5px;
}
.page-hero h1::before { content: '❖ '; color: var(--accent); }
.page-hero h1::after { content: ' ❖'; color: var(--accent); }
.page-hero p {
    margin: 0;
    opacity: .95;
    font-size: 1rem;
    font-style: italic;
}

/* ===== CONTAINERS ===== */
.container { max-width: 1000px; margin: 0 auto; padding: 2rem 1.25rem; }
.card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.card h2 { color: var(--primary); font-size: 1.15rem; margin-top: 0; }
.card h3 { color: var(--primary); font-size: 1rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: .8rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: .95rem;
    text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-whatsapp { background: var(--success); color: #fff; }
.btn-outline { background: #fff; border: 1px solid var(--border); color: var(--text); }

/* ===== GRID / STEPS ===== */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li {
    counter-increment: step;
    display: flex;
    gap: .9rem;
    padding: .7rem 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
    content: counter(step);
    background: var(--primary);
    color: #fff;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.gallery-grid .gitem {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light);
    font-size: .8rem;
    text-align: center;
    padding: 1rem;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }

.badge-note {
    background: #fdf1de;
    border: 1px solid #f0d9a8;
    border-radius: 10px;
    padding: 1rem;
    font-size: .85rem;
    margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    font-size: .82rem;
    margin-top: 2rem;
}
.site-footer a { color: #ffe3c9; }
