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

:root {
  --bg: #fdf8f5;
  --text: #3d2c2e;
  --accent: #c97b84;
  --accent-dark: #a85d66;
  --light: #f5e6e0;
  --white: #fff;
  --serif: 'Playfair Display', serif;
  --sans: 'Montserrat', sans-serif;
  --tr: 0.4s ease;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: color var(--tr); }
img { max-width: 100%; height: auto; display: block; }

.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(253,248,245,0.95); backdrop-filter: blur(8px);
  z-index: 100; padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 28px; }
.nav-links a { font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

.hero {
  height: 100vh; min-height: 560px;
  background: linear-gradient(135deg, #f5e6e0, #fdf8f5 50%, #f0d9d5);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero h1 { font-family: var(--serif); font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 12px; }
.hero p { font-size: 1.1rem; font-weight: 300; margin-bottom: 30px; opacity: 0.85; }

.btn {
  display: inline-block; padding: 13px 32px;
  background: var(--accent); color: white; border-radius: 50px;
  font-weight: 500; border: 2px solid var(--accent); transition: all var(--tr);
}
.btn:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,123,132,0.3); }
.btn-outline { background: transparent; color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: white; }

.section { padding: 80px 0; }
.section h2 { font-family: var(--serif); font-size: 2.1rem; text-align: center; margin-bottom: 15px; }

.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px; margin-top: 40px;
}
.card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: transform var(--tr), box-shadow var(--tr);
}
.card:hover { transform: translateY(-7px); box-shadow: 0 14px 30px rgba(0,0,0,0.1); }
.card-img { height: 280px; overflow: hidden; background: var(--light); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card h3 { padding: 16px; text-align: center; font-size: 1.05rem; font-weight: 500; }

.text-center { text-align: center; }

.footer {
  background: var(--text); color: #f5e6e0; padding: 35px 0; text-align: center; font-size: 0.9rem;
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px; margin-top: 35px;
}
.gallery-item {
  border-radius: 12px; overflow: hidden; box-shadow: 0 5px 18px rgba(0,0,0,0.07);
  aspect-ratio: 1; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.07); }

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--bg); flex-direction: column; padding: 18px; gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .section { padding: 55px 0; }
}
