/* govin.css - Styles for Govindaji Temple page */
body {
    background: linear-gradient(120deg, #f8fafc 0%, #e0eafc 100%);
    min-height: 100vh;
}
.govin-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 24px;
}
.govin-hero-img {
    max-width: 520px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.12);
    margin-bottom: 18px;
}
.govin-title {
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #8B0000;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 1px;
}
.govin-section {
    max-width: 900px;
    margin: 32px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.07);
    padding: 32px 24px;
}
.govin-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #0077b6;
    margin-bottom: 18px;
    font-weight: 700;
}
.govin-list {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 12px;
    padding-left: 22px;
}
.govin-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}
.govin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.govin-table th, .govin-table td {
    border: 1px solid #e0eafc;
    padding: 10px 14px;
    text-align: left;
}
.govin-table th {
    background: #0077b6;
    color: #fff;
    font-weight: 600;
}
.govin-table tr:nth-child(even) {
    background: #f1f7fa;
}

button {
    background: #0077b6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #005f8d;
}

@media (max-width: 700px) {
    .govin-section {
        padding: 16px 6px;
        margin: 32px 10px;
    }
    .govin-title {
        font-size: 1.3rem;
    }
    .govin-hero-img {
        max-width: 90vw;
    }
    .govin-table th, .govin-table td {
        padding: 7px 6px;
    }
}
