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

body{
    font-family: 'Open Sans', sans-serif;
    background:#F5E6D3;
    color:#4A2C2A;
    line-height:1.6;
}

header{
    background:#D8A7B1;
    padding:15px;
    position:sticky;
    top:0;
}

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

.logo{
    font-family:'Playfair Display', serif;
    font-size:24px;
    font-weight:bold;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    text-decoration:none;
    color:#4A2C2A;
    font-weight:bold;
}

nav ul li a:hover{
    text-decoration:underline;
}

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

.hero{
    text-align:center;
    padding:60px 20px;
    background:url("../images/hero.jpg") center/cover no-repeat;
    color:white;
}

.hero h1{
    font-size:40px;
    margin-bottom:10px;
}

.button{
    display:inline-block;
    background:#C76B98;
    color:white;
    padding:10px 20px;
    border-radius:20px;
    text-decoration:none;
    margin-top:10px;
}

.button:hover{
    background:#a8547c;
}

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:30px;
}

.card{
    background:white;
    padding:20px;
    border-radius:8px;
    box-shadow:0 0 8px rgba(0,0,0,0.1);
    text-align:center;
}

.card img{
    width:100%;
    border-radius:5px;
}

img{
    max-width:100%;
}

table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

table, th, td{
    border:1px solid #ccc;
}

th, td{
    padding:10px;
    text-align:left;
}

.pattern{
    background:white;
    padding:20px;
    margin:20px 0;
    border-radius:8px;
    box-shadow:0 0 8px rgba(0,0,0,0.1);
}

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

.gallery img{
    border-radius:8px;
}

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

/* Responsive */

@media (max-width:768px){

nav ul{
    flex-direction:column;
}

.features{
    grid-template-columns:1fr 1fr;
}

.gallery{
    grid-template-columns:1fr 1fr;
}

}

@media (max-width:500px){

.features{
    grid-template-columns:1fr;
}

.gallery{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:28px;
}

}