/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  font-family: Arial, sans-serif;
  background-color: #F5F2EB;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
header {
  background: #6B1F2A;
  color: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

/* NAV */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  padding: 8px;
  border-radius: 4px;
}

nav ul li a.active,
nav ul li a:hover {
  background: #D6B98C;
  color: #000;
}

/* MOBILE NAV */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #6B1F2A;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* HERO */
.hero {
  background: #1F3A34;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #D6B98C;
  color: #000;
  border-radius: 4px;
}

/* SECTIONS */
.section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

/* IMAGE PLACEHOLDER */
.img-placeholder {
  background: #ccc;
  height: 200px;
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  background: #1F3A34;
  color: #fff;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}
img {
max-width: 100%;
height: auto;
display: block;
}