/* assets/css/style.css */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Inter', sans-serif;
  color: #333333;
  background-color: #F5F1E8;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

header.scrolled {
  background: #F5F1E8;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #1F3A34;
}

/* NAV */
.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #1F3A34;
  font-size: 14px;
  position: relative;
}

.nav-menu li a.active {
  color: #C49A6C;
}

.nav-menu li a:hover {
  color: #C49A6C;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* BUTTON */
.btn-primary {
  background: #C49A6C;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #A67C52;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  background: #ddd;
  margin-top: 80px;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 20px;
}

/* SECTION */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

/* GRID */
.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
}

/* IMAGE PLACEHOLDER */
.img-placeholder {
  width: 100%;
  height: 200px;
  background: #ccc;
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  background: #1F3A34;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer h4 {
  margin-bottom: 15px;
}

.footer a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  color: #C49A6C;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #F5F1E8;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
img {
max-width: 100%;
height: auto;
display: block;
}