
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2e3d49;
}
a {
  color: #8d6748;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

.hero {
  background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), 
              url('flowers.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  max-width: 600px;
  border-radius: 8px;
}
.hero h1 { font-size: 2.2rem; margin: 0 0 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; }
.btn-primary {
  background: #8d6748; color: white; padding: 12px 28px;
  border-radius: 5px; font-weight: bold; transition: all 0.3s ease;
}
.btn-primary:hover { background: #735539; transform: scale(1.05); }

.menu {
  display: flex; justify-content: flex-end; align-items: center;
  background: #f8f7f5; padding: 12px 20px; box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  position: sticky; top: 0; z-index: 1000;
}
.menu-links {
  display: flex; gap: 20px;
}
.menu a { font-weight: 600; }

.hamburger {
  display: none; flex-direction: column; cursor: pointer;
}
.hamburger .bar {
  width: 25px; height: 3px; background: #333;
  margin: 4px 0; transition: 0.4s;
}

@media (max-width: 768px) {
  .menu-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #f8f7f5;
    padding: 50px;
    border-radius: 5px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .menu-links a {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .menu-links.show {
    display: flex;
    opacity: 1;
    transform: translateX(0);
  }
  .hamburger { display: flex; }
}

.section { padding: 60px 20px; background: white; }
.section.alternate { background: #f9f7f4; }
.container { max-width: 900px; margin: auto; }
ul { padding-left: 20px; }
.portrait {
  float: left; width: 180px; border-radius: 50%;
  margin: 0 20px 20px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
footer {
  text-align: center; background: #2e3d49; color: #f9f7f4;
  padding: 20px; font-size: 0.9rem;
}

.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
  opacity: 1; transform: translateY(0);
}

.hero.short { height: 55vh; }

.columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.columns ul {
  list-style: none;
  padding: 0;
}
.columns li {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .columns { flex-direction: column; }
  .columns ul { margin-bottom: 20px; }
}

.portrait {
  width: 250px;
}
.columns li {
  list-style-type: none;
  position: relative;
}
.columns li::before {
  content: '◦';
  color: #8d6748;
  font-size: 1.2rem;
  margin-right: 8px;
}
#contact .btn-primary {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
}
