/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('silky-background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
}

.container {
    padding: 20px;
}

header h1 {
    font-size: 2.5em;
    margin-top: 50px;
}

.temple-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 30px 0;
}

.temple-info img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.temple-description p {
    font-size: 1.2em;
    max-width: 800px;
    margin-top: 20px;
}

.login-section {
    margin-top: 30px;
}

input[type="text"] {
    padding: 10px;
    margin: 10px;
    width: 300px;
    font-size: 1.1em;
}

button {
    padding: 10px 20px;
    background-color: #ff7f50;
    border: none;
    color: white;
    font-size: 1.1em;
    cursor: pointer;
}

button:hover {
    background-color: #ff6347;
}

.pooja-booking {
    margin-top: 40px;
}

.pooja-booking label {
    display: block;
    margin: 10px 0;
    font-size: 1.2em;
}

.pooja-booking button {
    font-size: 1.1em;
    margin-top: 20px;
}
