/* Font Definitions */
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* Base Styles */
html,
body {
  height: 100%;
  background: #fff;
  color: #222;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background: #fff;
  border-bottom: none;
  position: relative;
  z-index: 1000;
  padding-top: 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #222;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #888;
}

.nav-link.active {
  border-bottom: 2px solid #222;
  padding-bottom: 2px;
}

.logo {
  height: 64px;
  width: auto;
}

/* Footer */
footer {
  background: #fff;
  padding: 48px 0;
  border-top: 1px solid #eee;
}

.footer-content {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  color: #666;
}

/* Hamburger styles */
.hamburger {
  display: none;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.hamburger:hover {
  background-color: #f5f5f5;
}
.hamburger svg {
  width: 24px;
  height: 24px;
  display: block;
  transition: stroke 0.2s ease;
}
.hamburger:hover svg path {
  stroke: #666;
}

/* Responsive Design */
@media (max-width: 900px) {
  .container {
    padding: 0 15px;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-right {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    width: 120px;
    padding: 8px;
    display: none;
    z-index: 1001;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 4px;
  }
  .nav-right.open {
    display: block;
  }
  .nav-link {
    display: block;
    width: 100%;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    background: white;
  }
  .nav-link:last-child {
    border-bottom: none;
  }
  .nav-link:hover {
    background: #f5f5f5;
  }
  .nav-link.active {
    background: #e0e0e0;
  }
  .logo {
    height: 52px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .nav-right {
    gap: 1.5rem;
  }
  .logo {
    height: 52px;
  }
}
