
body{
    margin:0;
    font-family:Arial,sans-serif;
    color:#222;
    background:#f5f5f5;
}
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:rgba(0,0,0,0.5);
}
nav h1{
    color:white;
}
nav ul{
    list-style:none;
    display:flex;
    gap:20px;
}
nav a{
    color:white;
    text-decoration:none;
}
.hero{
    height:100vh;
    background:url('castle.jpg') center/cover no-repeat;
    color:white;
}
.hero-text{
    text-align:center;
    margin-top:20%;
    background:rgba(0,0,0,0.4);
    padding:30px;
}
.hero-text h2{
    font-size:3rem;
}
.btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 24px;
    background:#2f6f3e;
    color:white;
    text-decoration:none;
    border-radius:6px;
}
.section{
    padding:60px 10%;
}
.green{
    background:#e7f1e8;
}
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}
.about-grid img{
    width:100%;
    border-radius:12px;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}
.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}
.card h3, .card p{
    padding:0 15px;
}
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
}
.gallery img{
    width:100%;
    border-radius:10px;
}
.contact form{
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width:500px;
}
input, textarea{
    padding:12px;
    border:1px solid #ccc;
    border-radius:5px;
}
button{
    background:#2f6f3e;
    color:white;
    border:none;
    padding:14px;
    border-radius:5px;
}
footer{
    text-align:center;
    padding:20px;
    background:#111;
    color:white;
}
@media(max-width:768px){
    .about-grid{
        grid-template-columns:1fr;
    }
    .hero-text h2{
        font-size:2rem;
    }
}
