*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Tahoma,sans-serif;
}

body{
background:#f7f5f0;
color:#222;
line-height:2;
}

header{
background:linear-gradient(135deg,#123524,#1f5e3b);
color:#fff;
padding:35px 20px;
text-align:center;

position:sticky;
top:0;
z-index:9999;

box-shadow:0 2px 12px rgba(0,0,0,.15);
}
header h1{
font-size:42px;
letter-spacing:3px;
margin-bottom:8px;
}

header h2{
font-size:20px;
font-weight:normal;
opacity:.95;
margin-bottom:6px;
}

.datetime{
margin-top:10px;
font-size:14px;
opacity:.9;
}

nav{
background:#fff;
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:12px;
padding:15px;
box-shadow:0 2px 12px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:999;
}

nav a{
text-decoration:none;
color:#1f5e3b;
font-weight:bold;
padding:10px 14px;
border-radius:10px;
transition:.3s;
}

nav a:hover{
background:#edf7f0;
}

.slider{
position:relative;
height:550px;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.container{
max-width:1200px;
margin:auto;
padding:30px 15px;
}

.card{
background:#fff;
padding:28px;
border-radius:18px;
margin-bottom:25px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.card h2{
color:#1f5e3b;
margin-bottom:18px;
border-bottom:2px solid #edf2ee;
padding-bottom:10px;
}

.card p{
color:#222;
line-height:2.4;
}
.accordion{
background:#123524;
color:#fff;
padding:16px;
margin-bottom:10px;
cursor:pointer;
border-radius:12px;
font-weight:bold;
font-size:18px;
transition:.3s;
}

.accordion:hover{
background:#1b4b33;
}

.panel{
display:none;
padding:18px;
background:#fff;
color:#222;
border:1px solid #eee;
border-radius:12px;
margin-bottom:12px;
line-height:2.2;
}
.album-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
}

.album{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 3px 12px rgba(0,0,0,.08);
transition:.3s;
cursor:pointer;
}

.album:hover{
transform:translateY(-6px);
}

.album img{
width:100%;
height:230px;
object-fit:cover;
}

.album h3{
padding:15px;
text-align:center;
}

.buttons{
display:flex;
justify-content:center;
margin-top:25px;
}

.btn{
background:#1f5e3b;
color:#fff;
padding:14px 24px;
border-radius:12px;
text-decoration:none;
font-weight:bold;
}

.btn:hover{
opacity:.9;
}

footer{
background:#123524;
color:#fff;
padding:40px 20px;
text-align:center;
margin-top:40px;
}

footer h3{
margin-bottom:15px;
font-size:28px;
}

footer p{
margin:8px 0;
}

.footer-links{
margin-top:20px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.footer-links a{
color:#fff;
text-decoration:none;
}

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

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

@media(max-width:768px){

header h1{
font-size:30px;
}

header h2{
font-size:16px;
}

.slider{
height:320px;
}

.card{
padding:18px;
}

nav{
gap:6px;
}

nav a{
font-size:14px;
padding:8px 10px;
}

}
.intro-short{
display:-webkit-box;
-webkit-line-clamp:5;
-webkit-box-orient:vertical;
overflow:hidden;
position:relative;
}

.intro-short::after{
content:"";
position:absolute;
left:0;
right:0;
bottom:0;
height:50px;
background:linear-gradient(to bottom,
rgba(255,255,255,0),
rgba(255,255,255,1));
pointer-events:none;
}

.intro-full{
display:block;
}
/* ===== HERO 2.0 ===== */

.hero{
position:relative;
height:85vh;
overflow:hidden;
}

.slider{
height:100%;
}

.slide img{
width:100%;
height:85vh;
object-fit:cover;
transform:scale(1.08);
filter:brightness(.65);
transition:8s ease;
}

.slide.active img{
transform:scale(1);
}

.hero-overlay{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:90%;
max-width:900px;
text-align:center;
background:rgba(15,25,18,.35);
backdrop-filter:blur(10px);
border-radius:22px;
padding:45px;
color:#fff;
}

.hero-overlay h1{
font-size:62px;
letter-spacing:8px;
margin-bottom:10px;
font-weight:700;
}

.hero-overlay h2{
font-size:34px;
margin-bottom:20px;
font-weight:300;
}

.hero-overlay p{
font-size:20px;
line-height:2;
margin-bottom:35px;
opacity:.95;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}

.hero-btn{
padding:15px 36px;
border-radius:50px;
background:#b9913f;
color:white;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.hero-btn:hover{
background:#d4af37;
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(0,0,0,.35);
}
