/* Jawahar Bal Manch - Shared Styles */

*{box-sizing:border-box}

body{
    margin:0;
    background:#e6f7ff;
    font-family:Arial,sans-serif;
    color:#333;
}

.container{
    max-width:1100px;
    margin:auto;
}

.menu{
    background:#003366;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    padding:15px;
    position:sticky;
    top:0;
    z-index:1000;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    font-size:18px;
    padding:8px 12px;
}

.menu a:hover{
    color:#ffcc00;
}

.hero,.about,.gallery,.mission{
    max-width:1000px;
    margin:20px auto;
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

h1{
    color:#003366;
    font-size:42px;
    text-align:center;
}

h2{
    color:#005bbb;
}

h3{
    color:#ff6600;
}

p{
    font-size:18px;
    line-height:1.8;
}

.logo{
    width:180px;
    display:block;
    margin:20px auto;
}

.hero img{
    max-width:100%;
    border-radius:18px;
}

button,.btn{
    display:inline-block;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    border:none;
    border-radius:10px;
    padding:14px 30px;
    font-size:18px;
    cursor:pointer;
}

button:hover,.btn:hover{
    background:#cc5500;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
}

.gallery-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
}

footer{
    background:#003366;
    color:#fff;
    text-align:center;
    padding:20px;
    margin-top:30px;
}

@media(max-width:600px){
    h1{font-size:32px}
    h2{font-size:24px}
    .menu a{font-size:16px}
}
