/* --- CSS Variables --- */
:root {
  --primary-color: #2c2c2c;
  --bg-color: #f5f5f5;
  --accent-color: #e1d8d0;
  --white: #ffffff;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Base Styles موردنیاز برای هدر --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-color);
  color: var(--primary-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Header & Nav --- */
header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 60px;
  background-color: rgba(245, 238, 230, 0.85);
  backdrop-filter: blur(10px);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  letter-spacing: 6px;
  font-weight: 700;
}

nav ul {
  display: flex;
  gap: 40px;
}

nav ul li a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.6;
  transition: var(--transition);
}

nav ul li a:hover {
  opacity: 1;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-cta {
  font-size: 11px;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--primary-color);
  cursor: pointer;
  padding-bottom: 2px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--primary-color);
  z-index: 1001;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

/* --- Responsive برای هدر --- */

/* --- Footer --- */
footer {
  padding: 50px 0;
  border-top: 1px solid #e0dbd5;
  text-align: center;
}

.container {
  /* Wrapper for footer content */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 5px;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.copyright {
  font-size: 9px;
  color: #aaa;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  header {
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 30px;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions {
    display: none;
  }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  nav.active {
    display: block;
  }
  nav ul {
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 20px;
  }
  nav ul li {
    text-align: center;
  }
}
