@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500&family=Montserrat:wght@600&display=swap');

:root {
  --color-bg: #f5f3ef;
  --color-primary: #3e5c3a;
  --color-accent: #a67c52;
  --color-header: #fff;
  --color-text: #222;
  --color-link: #3e5c3a;
  --color-link-hover: #a67c52;
  --color-btn: #3e5c3a;
  --color-btn-hover: #a67c52;
  --color-divider: #e0d8ce;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-primary);
}

header {
  background: var(--color-header);
  box-shadow: 0 2px 8px rgba(60, 60, 60, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: 2.5rem;
}

nav a {
  text-decoration: none;
  color: var(--color-link);
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
}

nav a:hover, nav a:focus {
  color: var(--color-link-hover);
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-link-hover);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -2px;
}

nav a:hover::after, nav a:focus::after {
  width: 100%;
}

.logo {
  font-size: 2rem;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  user-select: none;
  font-family: 'Playfair Display', serif !important;
  text-decoration: none !important;
  font-weight: 700;
}

.btn {
  background: var(--color-btn);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.7em 1.5em;
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(60, 60, 60, 0.04);
}

.btn:hover, .btn:focus {
  background: var(--color-btn-hover);
  color: #fff;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--color-divider);
  margin: 1.5rem 0 1rem 0;
  border-radius: 1px;
}

.gallery-link {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
  background: none;
  border-radius: 0;
  box-shadow: none;
  display: inline;
}

.gallery-link:hover, .gallery-link:focus {
  color: var(--color-link-hover);
  background: none;
}

.gallery-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-link-hover);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.gallery-link:hover::after, .gallery-link:focus::after {
  width: 100%;
}

@media (max-width: 800px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  nav {
    gap: 1rem;
  }
  .logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  header {
    padding: 0.5rem;
  }
  .btn {
    padding: 0.5em 1em;
    font-size: 0.95rem;
  }
} 