/* Base reset */
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --header-height: 70px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "Lato", sans-serif;
  color: #333333;
  background-color: #FAF7F5;
  overflow-x: hidden;
}

body.dark-page {
  background-color: #423333;
  color: #FFFFFF;
}

main {
  flex: 1;
}

/* Header */
header {
  background-color: #423333;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 20px;
}

.logo {
  height: 70px;
  width: auto;
  margin-left: 0;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0 15px;
}

nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #D4AF37;
}

/* Sections */
section {
  padding: 20px;
  margin-top: var(--header-height);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  color: #523E3F;
  text-align: center;
  margin-bottom: 20px;
}

p,
ul {
  line-height: 1.6;
}

/* Services + Info lists */
#services ul,
#info ul {
  list-style: none;
  padding: 0;
}

#services li,
#info li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

#services li::before,
#info li::before {
  content: "•";
  color: #DFB262;
  position: absolute;
  left: 0;
}

#services h2,
#services h3,
#info h2,
#info h3 {
  color: #DFB262;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #423333;
  color: #FFFFFF;
  text-align: center;
  padding: 15px;
  width: 100%;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  color: #FFFFFF;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #D4AF37;
}

/* Helpers */
.center {
  text-align: center;
}

.center-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.map-embed {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    height: 70px;
  }

  .logo {
    position: absolute;
    left: 20px;
    top: 0;
    cursor: auto;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #423333;
    align-items: center;
    padding: 15px 0;
    z-index: 1001;
  }

  nav.menu-open ul {
    display: flex;
  }

  nav li {
    margin: 10px 0;
  }

  section {
    padding: 20px 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: flex;
  }
}
