/* assets/css/style.css */

/* =========================
   Reset & Base Styles
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  background-color: #F7F5F2;
  color: #2B2B2B;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   Container
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   Typography
========================= */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 12px;
  color: #444;
}

/* =========================
   Header & Navigation
========================= */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #2B2B2B;
  font-size: 14px;
}

.nav-menu a.active {
  border-bottom: 2px solid #6B7D6D;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* =========================
   Buttons
========================= */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #2B2B2B;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #2B2B2B;
  color: #fff;
}

.btn-accent {
  border-color: #B8A38F;
}

/* =========================
   Sections
========================= */
.section {
  padding: 80px 0;
}

.section.light {
  background: #fff;
}

/* =========================
   Grid & Cards
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
}

.card img {
  margin-bottom: 15px;
}

/* =========================
   Hero
========================= */
.hero {
  padding: 120px 0;
  text-align: center;
}

/* =========================
   Process
========================= */
.process {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.process-step {
  width: 18%;
  text-align: center;
  margin-bottom: 20px;
}

/* =========================
   Footer
========================= */
footer {
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 40px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

footer a {
  text-decoration: none;
  color: #2B2B2B;
  display: block;
  margin-bottom: 6px;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
}

/* =========================
   Forms
========================= */
input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-step {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border: 1px solid #ddd;
  }

  .nav-menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}