/* Le Artesi – Main Stylesheet */

:root {
  --bg-dark: #26352c;
  --bg-dark-alt: #1f2d26;
  --accent: #c79a6d;
  --text-light: #f4f1ec;
  --text-muted: #d7d2c9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: relative;
  z-index: 10;
  background-color: var(--bg-dark);
}

.logo img {
  height: 40px;
}

.socials {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 16px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.socials svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a:hover svg {
  stroke: var(--accent);
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 96px 24px 72px;
}

.hero-logo {
  width: 520px;
  max-width: 90vw;
}

.gallery img {
  width: 100%;
  display: block;
}

.section-alt {
  background-color: var(--bg-dark-alt);
}

.section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--accent);
  margin: 0 auto 40px;
}

.about,
.location {
  text-align: center;
  padding: 72px 24px;
}

.about h2,
.location h2 {
  font-family: 'Jeremy Moore', serif;
  color: var(--accent);
  letter-spacing: 2px;
}

.about p,
.location p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: var(--text-muted);
}

footer {
  text-align: center;
  padding: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  header {
    padding: 24px;
  }
}

@font-face {
  font-family: 'Jeremy Moore';
  src: url('Jeremy-Moore.otf') format('opentype');
  font-display: swap;
}
