/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: "Inter", Arial, sans-serif;
  background: #F7F5F0;
  color: #2B2B2B;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 22px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-size: 14px;
  color: #2B2B2B;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #8A9A5B;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #E5E5E5;
}

.mobile-menu a {
  padding: 15px;
  border-bottom: 1px solid #E5E5E5;
}

/* Hero */
.hero {
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #C9A227;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #8A9A5B;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

/* Grid */
.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Card */
.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Image Placeholder */
.img-placeholder {
  width: 100%;
  height: 200px;
  background: #E5E5E5;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background: #2B2B2B;
  color: #fff;
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer h4 {
  margin-bottom: 15px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
  }
}
img {
max-width: 100%;
height: auto;
display: block;
}