/* assets/css/style.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: "Inter", Arial, sans-serif;
  color: #2B2B2B;
  background-color: #F7F6F3;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: #1F1F1F;
  font-weight: 500;
}

h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #555;
}

/* Container */
.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Header */
header {
  background: rgba(247,246,243,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #E5E3DF;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-size: 20px;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.5px;
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #2B2B2B;
  font-size: 14px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #C6A86B;
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #C6A86B;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Buttons */
.btn {
  padding: 10px 22px;
  border: 1px solid #2B2B2B;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #2B2B2B;
  color: #fff;
}

.btn-gold {
  border-color: #C6A86B;
  color: #C6A86B;
}

.btn-gold:hover {
  background: #C6A86B;
  color: #fff;
}

/* Hero */
.hero {
  padding: 140px 0 100px;
  text-align: left;
}

.hero p {
  max-width: 520px;
}

/* Section */
.section {
  padding: 90px 0;
}

/* Grid */
.grid {
  display: grid;
  gap: 40px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Cards */
.card {
  padding: 30px;
  border: 1px solid #E5E3DF;
  background: #FFFFFF;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #C6A86B;
}

/* Image style */
.img-soft {
  background: #EAE8E4;
  width: 100%;
  height: 320px;
}

/* Divider Section */
.section-dark {
  background: #2B2B2B;
  color: #fff;
}

.section-dark h2,
.section-dark p {
  color: #fff;
}

/* Footer */
footer {
  background: #1F1F1F;
  color: #D1D1D1;
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

footer h3 {
  color: #fff;
  margin-bottom: 12px;
}

footer a {
  color: #BFBFBF;
  text-decoration: none;
  font-size: 14px;
}

footer a:hover {
  color: #C6A86B;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #3A3A3A;
  text-align: center;
  font-size: 13px;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
}

/* Responsive */
@media (max-width: 992px) {

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #F7F6F3;
    flex-direction: column;
    display: none;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 100px 0 60px;
  }

  h1 {
    font-size: 36px;
  }

}
