/* कॉमन स्टाइल जो सब पेजों पर रहेगा */
body {
    background: #0f172a;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* 1. DJ Page Theme (Pink) */
.theme-dj { border-top: 8px solid #db2777; }
.theme-dj h1 { color: #db2777; }
.theme-dj .btn { background: #db2777; }

/* 2. AC Page Theme (Blue) */
.theme-ac { border-top: 8px solid #2563eb; }
.theme-ac h1 { color: #2563eb; }
.theme-ac .btn { background: #2563eb; }

/* 3. CSC Page Theme (Green) */
.theme-csc { border-top: 8px solid #059669; }
.theme-csc h1 { color: #059669; }
.theme-csc .btn { background: #059669; }

/* बटन का स्टाइल */
.btn {
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border: none;
    cursor: pointer;
}

/* फोटो गैलरी का स्टाइल */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    border-radius: 15px;
    transition: 0.3s;
}