body {

margin:0;
font-family:Montserrat, sans-serif;
background:#faf7f4;
color:#2f2f2f;

}

header {

display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:white;

}

header nav a {

margin-left:25px;
text-decoration:none;
color:#2f2f2f;
font-weight:500;

}

header nav a:hover {

color:#7B1E2B;

}

.logo {

font-family:"Playfair Display", serif;
font-size:24px;
color:#7B1E2B;

}

.hero {

height:80vh;
background:url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb") center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;

}

.hero-content h1 {

font-family:"Playfair Display";
font-size:60px;

}

.hero-content p {

font-size:22px;
letter-spacing:2px;

}

.cta {

display:inline-block;
margin-top:20px;
padding:14px 30px;
background:#7B1E2B;
color:white;
border-radius:30px;
text-decoration:none;

}

.cta:hover {

background:#5f1822;

}

.featured {

padding:80px;

}

.featured h2 {

text-align:center;
font-family:"Playfair Display";
font-size:36px;
color:#7B1E2B;

}

.cards {

display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-top:40px;

}

.card {

background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,0.05);

}

.card img {

width:100%;
height:220px;
object-fit:cover;

}

.card h3 {

padding:20px;
font-family:"Playfair Display";

}

.card p {

padding:0 20px 20px;

}

.card a {

padding:0 20px 20px;
display:block;
color:#7B1E2B;
font-weight:600;

}

.regions {

padding:80px;
background:#f2e6dd;

}

.regions h2 {

text-align:center;
font-family:"Playfair Display";
color:#7B1E2B;

}

.region-grid {

display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-top:40px;

}

.region {

text-align:center;

}

.region img {

width:200px;
height:200px;
border-radius:50%;
object-fit:cover;

}

footer {

background:#7B1E2B;
color:white;
text-align:center;
padding:30px;

}

@media(max-width:900px){

.cards,
.region-grid{

grid-template-columns:1fr;

}

.hero-content h1{

font-size:42px;

}

header{

flex-direction:column;

}

}