*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f5f5;
    color:#333;
}

header{
    height:100vh;
    background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url("../images/header.jpg") center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

header h1{
    font-size:4rem;
    margin-bottom:20px;
}

header p{
    font-size:1.3rem;
}

nav{
    position:sticky;
    top:0;
    z-index:999;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
}

nav li{
    margin:0 15px;
}

nav a{
    display:block;
    padding:20px 0;
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#2c7a4b;
}

section{
    padding:80px 10%;
}

h2{
    text-align:center;
    margin-bottom:40px;
    color:#2c7a4b;
    font-size:2.5rem;
}

.apartments{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.apartment{
    background:white;
	padding:25px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.apartment h3{
    padding:20px;
    text-align:center;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:5px;
    padding:10px;
}

.gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
}

.attractions{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.card h3{
    margin-bottom:15px;
    color:#2c7a4b;
}

.map{
    width:100%;
    height:450px;
    border:none;
    border-radius:15px;
}

.history,
.contact-box{
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    line-height:1.8;
}

.contact-info{
    text-align:center;
    font-size:1.1rem;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:30px;
}

@media(max-width:900px){
    .apartments{
        grid-template-columns:1fr;
    }

    header h1{
        font-size:2.8rem;
    }
}
	
.btn-book{
    display:block;
    width:220px;
    margin:20px auto 30px;
    padding:14px 25px;
    background:#2c7a4b;
    color:white;
    text-decoration:none;
    text-align:center;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn-book:hover{
    background:#225f3a;
    transform:translateY(-2px);
}

.attraction-img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:15px;
}

.transport-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:40px;
}

.transport-card{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.transport-card h3{
    color:#2c7a4b;
    margin-bottom:15px;
}
	
	
	
