body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(to right, #FF8C00, #FFA500);
    color: white;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 15px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-family: "Allura", cursive;
    color: #434343;
    display: flex;
    justify-content: center;
}

h2 {
    font-family: "Allura", cursive;
    font-size: 3rem;
    color: #434343;
    display: flex;
    justify-content: center;
}

.allura-regular {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
}
.titillium-web-extralight {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.titillium-web-light {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.titillium-web-regular {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.titillium-web-semibold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.titillium-web-bold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.titillium-web-black {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.titillium-web-extralight-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.titillium-web-light-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.titillium-web-regular-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.titillium-web-semibold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.titillium-web-bold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: italic;
}


.button {
    display: inline-block;
    background-color: #FF6347;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #FF8C00;
}

#hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.post {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.post-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-images img {
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

footer {
    position: relative;
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
}

#new-post form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#new-post input[type="text"],
#new-post textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#new-post textarea {
    height: 150px;
}

#image-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-preview {
    width: 150px;
    text-align: center;
}

.image-preview img {
    max-width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.image-preview input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
/* Add these to your existing styles.css */
.login-container {
    max-width: 300px;
    margin: 100px auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-container form {
    display: flex;
    flex-direction: column;
}

.login-container form div {
    margin-bottom: 15px;
}

.login-container label {
    display: block;
    margin-bottom: 5px;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.login-container .button {
    width: 100%;
    padding: 10px;
    background-color: #FF6347;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-container .button:hover {
    background-color: #FF8C00;
}

.error {
    color: red;
    margin-bottom: 15px;
}


#admin-login {
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 0.8em;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

#admin-login:hover {
    color: #333;
}
/* Add these styles to your existing styles.css file */

.post {
    position: relative;
    margin-bottom: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.post-timestamp {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8em;
    color: #777;
}

.post h3 {
    color: #FF6347;
    margin-top: 0;
}

.post-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.post-images figure {
    margin: 0;
}

.post-images img {
    max-width: 200px;
    height: auto;
    border-radius: 5px;
}

.post-images figcaption {
    font-size: 0.8em;
    text-align: center;
    margin-top: 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-grid figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-grid img {
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gallery-grid figcaption {
    margin-top: 10px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}