/* ========== BASE STYLES ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
  font-family: 'Bebas Neue', sans-serif;
  background-color: #f9f9f9;
  color: #000;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== CENTERED HEADER WITH LOGO ========== */
.centered-header {
    text-align: center;
    padding: 5px;
    background-color: #fff;
    color: #243f1c;
}

.centered-header .site-logo {
    width: 70px;
    height: auto;
}

.centered-header h1 {
    font-size: 3rem;
    margin: 0 0 20px 0;
}

.centered-header nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.centered-header nav a {
    font-size: 1.1rem;
    color: #243f1c;
    text-decoration: none;
    padding: 10px 5px;
    transition: color 0.3s;
}

.centered-header nav a:hover {
    color: #243f1c;
    text-decoration: underline;
}

/* ========== MAIN CONTENT ========== */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Optional: vertically centers section */
}

.hero {
    flex: 1;
    background: url('source/uploads/_DSC4259.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
    color: white;
    width: 100%;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

main section h2 {
    font-size: 2.8rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

main section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* ========== IMAGE GRID (GALLERY) ========== */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.image-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========== FORMS & AUTH ========== */
form,
.auth-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="file"],
button {
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid #3a5624;
  background-color: #f3f3f3;
}

input:focus {
  background-color: #fff;
  outline: none;
  border-color: #2f471d;
}

button {
  background-color: #3a5624;
  color: white;
  cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #2f471d;
}

/* ========== FOOTER ========== */
footer {
  text-align: center;
  padding: 20px;
  background-color: #243f1c;
  color: white;
}

footer .social-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1rem;
}

footer .social-links a:hover {
  text-decoration: underline;
}