
body{
margin:0;
font-family:Arial, sans-serif;
background:#f4f1ea;
color:#333;
}

header{
background:white;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
position:sticky;
top:0;
}

nav{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px;
}

nav a{
margin-left:15px;
text-decoration:none;
color:#444;
font-weight:bold;
}

.hero{
height:100vh;
background:url('assets/trail-herd.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero-content{
background:rgba(0,0,0,0.5);
padding:40px;
border-radius:10px;
}

.btn{
background:#3c5c42;
color:white;
padding:12px 24px;
border-radius:25px;
text-decoration:none;
display:inline-block;
margin-top:10px;
}

.section{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:30px;
}

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.warning{
background:#fff3e0;
border-left:6px solid #e0902d;
padding:20px;
margin-top:30px;
border-radius:6px;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.gallery img{
width:100%;
height:220px;
object-fit:cover;
border-radius:8px;
}

footer{
background:#1f2b22;
color:white;
text-align:center;
padding:30px;
margin-top:50px;
}
