/* --- Global Styles --- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: #f9f8f4;
	color: #2b2b2b;
	line-height: 1.6;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

li {
	list-style: none;
}

/* --- Header --- */
.header{
	background-color: #1f3b2d;
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 0.75rem 0;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 160px;
  height: auto;
}

/*header {
	background-color: #4b6043;
	color: #fff;
	padding: 1em 0;
	text-align: center;
}*/

/* --- Navigation --- */
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: #d6c7a1;
}

/*nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
*/
nav ul li {
	margin: 0.5em;
}

nav ul li a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	padding: 0.5em 1em;
	border-radius: 5px;
}

nav ul li a.active, nav ul li a:hover {
	background-color: #7a8c65:
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(rgba(31,59,45,0.75), rgba(31,59,45,0.75)),
              url('../images/trees-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 10rem 2rem;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #f3f3f3;
}

/*section.hero {
	background-color: #d9c7a0;
	text-align: center;
	padding: 3em 1em;
}
*/
/*section.content, */
section.gallery {
	max-width: 800px;
	margin: auto;
	padding: 2em 1em;
}

/* --- Footer --- */
footer {
  background-color: #1f3b2d;
  color: #d6c7a1;
  text-align: center;
  padding: 1rem 0;
  margin-top: 4rem;
  font-size: 0.9rem;
}

/*footer {
	text-align: center;
	background-color: #4b6043;
	color: #fff;
	padding: 1em 0;
	margin-top: 2em;
}*/

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

.gallery-grid img {
	width: 100%;
	max-height: 50px;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.3s;
}

.gallery-grid img:hover {
	transform: scale(1.05);
}

.video-container {
	width: 560px;
	height: 315px;
	overflow: hidden;
	border: 1px solid #ccc;
	border-radius: 8px;
	position: relative;
}

.hover-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/*.gallery-grid video {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 10px;
}

.gallery-grid video {
	width: 100%;
	max-height: 50px;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.3s;
}

.gallery-grid video:hover {
	transform: scale(1.05);
}*/

.lightbox {
	display: none;
	position: fixed;
	z-index: 10;
	top: 0; left: 0;
	width:100%; height:100%;
	background: rbga(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
}

.lightbox img {
	max-width: 90%;
	border-radius: 10px;
}

/* Form */
form {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

input, textarea, button {
	padding: 0.5em;
	border: 1px solid #ccc;
	border-radius: 5px;
}

/* --- Button --- */
.btn-primary {
  display: inline-block;
  background-color: #d6c7a1;
  color: #1f3b2d;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #c4b285;
  transform: translateY(-2px);
}

button {
	background-color: #4b6043;
	color: white;
	font-weight: bold;
	cursor: pointer;
}

button:hover {
	background-color: #7a8c65;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
    gap: 1rem;
    background-color: #1f3b2d;
    padding: 1rem 0;
  }

  .hero {
    padding: 6rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .logo {
    width: 130px;
  }
}

/*/* Responsive * /
@media (max-width: 600px) {
	nav ul {
		flex-direction: column;
	}
}*/