* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: 
        linear-gradient(135deg, #f8e7c9 0%, #e0c3fc 100%);
    background-image:url('images/shiva.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #2d2d2d;
    line-height: 1.6;
}
body::before,
body::after {
    content: "";
    position: fixed;
    top: 0;
    width: 48px; 
    height: 100vh;
    z-index: 1;
    background: 
        url('images/poles.jpg')center top repeat-y,
        linear-gradient(90deg, #7c4a02 0%, #ffe082 20%, #fffbe9 40%, #ffe082 60%, #b3880b 80%, #7c4a02 100%);
    background-size: contain, cover;
    background-blend-mode: multiply;
    box-shadow:
        0 0 32px 8px #b3880b88,
        4px 0 18px 0 #fffbe9cc inset,
        -4px 0 18px 0 #7c4a02cc inset,
        0 0 0 6px #b3880b55 inset;
    border-radius: 22px;
    border: 4px solid #7c4a02;
    opacity: 0.97;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px #b3880b88);
}
body::before {
    left: 0;
}
body::after {
    right: 0;
}

header {
    background: #4b2e05;
    color: #fff;
    padding: 24px 0 16px 0;
    text-align: center;
}

header h1, .spiritual-glow {
    font-size: 2.5rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-shadow: 0 0 18px #ffe082, 0 0 8px #b3880b;
    color: #ffe082;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 32px;
}

nav a {
    color: #ffe082;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #fff;
}

main {
    max-width: 1100px;
    margin: 32px auto;
    padding: 0 16px;
}

.temple-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
}

.temple-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(75, 46, 5, 0.13), 0 0 24px #ffe08288;
    width: 320px;
    padding: 24px 18px 18px 18px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #ffe082;
}

.temple-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px #7c4a0299, 0 0 32px #ffe082cc;
    border-color: #b3880b;
}

.temple-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px #4b2e0533;
    margin-bottom: 12px;
    border: 2px solid #ffe082;
}

.temple-name {
    font-size: 1.4rem;
    color: #7c4a02;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #ffe08288;
}

.show-info-btn {
    background: linear-gradient(90deg, #ffe082 60%, #b3880b 100%);
    color: #4b2e05;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px #ffe08255;
    transition: background 0.2s, color 0.2s;
}

.show-info-btn:hover {
    background: #7c4a02;
    color: #ffe082;
}

.temple-info {
    display: none;
    margin-top: 10px;
    text-align: left;
    background: #fffbe9;
    border-radius: 8px;
    padding: 14px 10px;
    box-shadow: 0 1px 6px #ffe08244;
    color: #4b2e05;
    font-size: 1rem;
    border: 1px solid #ffe082;
}

footer {
    background: #4b2e05;
    color: #ffe082;
    text-align: center;
    padding: 18px 0;
    font-size: 1rem;
    margin-top: 40px;
    letter-spacing: 0.5px;
    border-top: 4px solid #ffe082;
}

@media (max-width: 900px) {
    .temple-cards { flex-direction: column; align-items: center; }
    main { padding: 0 6px; }
    .temple-card { width: 95vw; max-width: 340px; }
    header h1, .spiritual-glow { font-size: 1.5rem; }
}