/* Global */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fdfdfd;
  color: #333;
}

a {
  text-decoration: none;
}

/* Header */
header {
  background: #a9855e; /* warm-brown */
  padding: 10px 30px;
  position: relative;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #fff7f0;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  font-size: 2em;
  cursor: pointer;
  color: white;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  background: #a9855e;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 10px 0;
  gap: 10px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: url('../images/logo.jpg') no-repeat center center/cover;
  color: white;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44,44,44,0.6);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Buttons */
.btn {
  background: #c7a17a;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #a9855e;
}

/* Home page buttons section */
.home-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Content */
.content {
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 20px;
}

/* Owner section */
.owner-img {
  max-width: 300px;
  width: 100%;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 10px;
}

/* Gallery grid */
.gallery-grid, .services-grid {
  display: grid;
  gap: 15px;
}

.gallery-grid img, .services-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Symmetric grids */
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Footer */
footer {
  background: #a9855e;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 50px;
}

footer .socials {
  margin-top: 5px;
}

footer .socials a {
  color: white;
  margin: 0 5px;
  transition: color 0.3s;
}

footer .socials a:hover {
  color: #fff7f0;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .home-buttons {
    flex-direction: column;
    align-items: center;
  }
}
