/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #EAE3D9;
  color: #1F1F1F;
  line-height: 1.6;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(234,227,217,0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #1F1F1F;
  font-size: 14px;
  position: relative;
}

nav ul li a.active {
  color: #7A8A7B;
}

nav ul li a:hover {
  color: #C6A96B;
}

/* Mobile */
.menu-toggle {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #EAE3D9;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 20px;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Sections */
section {
  padding: 120px 20px 80px;
  max-width: 1200px;
  margin: auto;
}

/* Hero */
.hero {
  height: 100vh;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero .overlay {
  position: absolute;
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero button {
  background: #7A8A7B;
  border: none;
  padding: 12px 25px;
  color: #fff;
  cursor: pointer;
}

.hero button:hover {
  background: #C6A96B;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .grid, .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Image */
.image-box {
  width: 100%;
  height: 300px;
  background: #ccc;
}

/* Footer */
footer {
  background: #1F1F1F;
  color: #fff;
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

footer a {
  color: #C6A96B;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
}
img {
max-width: 100%;
height: auto;
display: block;
}