/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #2e2e2e;
  background-color: #fafafa;
  line-height: 1.6;
  padding: 0 1rem;
}

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

/* Header */
header {
  background-color: #202020;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

.logo img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: inline-block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #d1a35a;
}

/* Contact Info Row (under nav) */
.header-contact {
  width: 100%;
  background-color: #f3ede4;
  color: #2c2c2c;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid #ddd;
}

.header-contact a {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
}

.header-contact a:hover {
  color: #a17438;
}

.header-contact i {
  margin-right: 0.4rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: #eee;
}

.hero h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}

/* Intro Section */
.intro {
  background-color: #f8f6f3;
  padding: 4rem 1.5rem;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  margin: 4rem 0;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: 1.1rem;
  color: #333;
}

.intro-heading h2 {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  color: #222;
}

.section-divider {
  border: none;
  border-top: 2px solid #d1a35a;
  width: 60px;
  margin: 1rem 0 2rem;
}

/* Gallery */
.gallery {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: #444;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

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

.grid img:hover {
  transform: scale(1.03);
}

/* Contact */
.contact {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fdfaf6;
  border-left: 5px solid #d1a35a;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact label {
  font-weight: bold;
}

.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact button {
  padding: 0.75rem;
  background-color: #333;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #d1a35a;
  color: #222;
}

/* Footer */
footer {
  background-color: #333;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

footer a {
  color: #ccc;
  text-decoration: underline;
}

footer a:hover {
  color: #d1a35a;
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    flex-direction: column;
    background-color: #202020;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem;
  }

  nav.open {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  nav a {
    font-size: 1.2rem;
  }

  .logo span {
    font-size: 1.3rem;
  }

  .header-contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 36px;
  }
}
