:root {
  --bg: #f8f5f1;
  --light: #fff;
  --text: #2b2b2b;
  --accent: #bda67a;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  font-family: var(--sans);
  color: var(--text);
  scroll-behavior: smooth;
  line-height: 1.7;
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card {
  background: rgba(30, 30, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  background: rgba(50, 50, 70, 0.9);
}


/* NAVIGATION */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.nav-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  font-family: var(--serif);
  color: var(--text);
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 400;
}

.nav-links a:hover { color: var(--accent); }

/* HERO */
.hero {
  height: 100vh;
  background: url('download%20(4).jpeg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-text {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 3rem;
}

.hero p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  font-size: 2rem;
  opacity: 0.8;
  animation: float 2s ease-in-out infinite;
}

@keyframes float { 0%,100%{transform:translateY(0);}50%{transform:translateY(8px);} }

/* BUTTON */
.button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 1.6rem;
  background: var(--accent);
  color: #fff;
  border-radius: 2rem;
  text-decoration: none;
}

.button:hover { background: #a48e68; }

/* SECTIONS */
.section {
  padding: 6rem 1.5rem;
}

.section.light { background: var(--light); }

.container { max-width: 900px; margin: 0 auto; text-align: center; }

h2 { font-family: var(--serif); color: var(--accent); margin-bottom: 2rem; font-size: 2rem; }

p { margin-bottom: 1rem; }

/* CARDS */
.grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 2rem; }

.card {
  background: var(--light);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2rem;
}

.card h3 { font-family: var(--serif); color: var(--accent); margin-bottom: 1rem; }

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; margin-top: 2rem; }

.gallery img { width: 100%; border-radius: 1rem; object-fit: cover; transition: 0.3s; }

.gallery img:hover { transform: scale(1.03); }

/* CONTACT */
form { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

input, textarea { padding: 1rem; border: 1px solid #ddd; border-radius: 0.5rem; font-family: var(--sans); width: 100%; }

button { background: var(--accent); border: none; color: white; border-radius: 2rem; padding: 1rem; cursor: pointer; }

button:hover { background: #a48e68; }

/* FOOTER */
footer { text-align: center; padding: 2rem; font-size: 0.9rem; color: #555; background: var(--light); }

/* MOBILE */
@media (max-width:700px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .section { padding: 4rem 1rem; }
}
