:root{
  --primary:#2f5d50;
  --secondary:#a67c52;
  --bg:#f4efe6;
  --text:#2b2b2b;
  --card:#ffffff;
}

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

body{
  background:var(--bg);
  color:var(--text);
}

/* NAVBAR */
nav{
  background:var(--primary);
  display:flex;
  justify-content:center;
  gap:25px;
  padding:15px;
  position:sticky;
  top:0;
  z-index:1000;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:bold;
}

/* HERO */
.hero{
  height:90vh;
  background:url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  color:white;
  text-align:center;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero-content{
  position:relative;
  z-index:1;
}

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

/* SECTIONS */
.container{
  padding:60px 20px;
  max-width:1100px;
  margin:auto;
  text-align:center;
}

h2{
  margin-bottom:20px;
  color:var(--primary);
}

/* CARDS */
.cards{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
}

.card{
  background:var(--card);
  width:280px;
  padding:20px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.1);
}

.card img{
  width:100%;
  border-radius:10px;
  margin-bottom:10px;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 15px;
  background:var(--secondary);
  color:white;
  text-decoration:none;
  border-radius:8px;
}

/* FOOTER */
footer{
  background:var(--primary);
  color:white;
  text-align:center;
  padding:20px;
  margin-top:40px;
}
