/* styles.css */

/* Reset default margin and padding */
body, h1, h2, p, ul, li, form, input, textarea, button {
    margin: 0;
    padding: 0;
}

/* Set default font family and color */
body {
    font-family: Arial, sans-serif;
    color: #333; /* Default text color */
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 20px;
}

header img {
    max-width: 200px;
    height: auto;
}

header h1 {
    margin-top: 10px;
}

/* Navigation */
nav {
    text-align: center;
    margin-bottom: 20px;
}

.nav-menu {
    list-style-type: none;
}

.nav-menu li {
    display: inline;
    margin-right: 10px;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 10px;
}

.image-gallery img {
    max-width: 100%;
    height: auto;
}

/* Contact Form */
.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 100px; /* Adjust the height as needed */
}

.contact-form button {
    background-color: #007bff; /* Blue button color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Address and Email Sections */
section#contact h3 {
    margin-top: 20px;
}

section#contact p {
    margin-bottom: 10px;
}
/* Temple Timings Section */
#temple-timings {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

#temple-timings h2 {
    margin-bottom: 10px;
}

#temple-timings h3 {
    margin-top: 15px;
}

#temple-timings ul {
    margin-bottom: 10px;
}

#temple-timings ul li {
    margin-left: 20px;
}

.section {
    text-align: center;
    padding: 50px;
  }
  .section img {
    float: right;
    width: 300px;
    margin-left: 20px;
  }
  .section p {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
  }