:root {
  --dark: #212227;
  --light: #CEDFD9;
  --accent1: #6D72C3;
  --accent2: #B68F40;
  --accent3: #E98A15;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--light);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

/* Hero section */
.hero {
  height: 100vh;
  background: url("/Users/zawwar/Documents/IMG_2229.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.hero-text h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin: 0;
  color: var(--light);
  transform: scale(0.95);
  animation: scaleIn 2s var(--ease) forwards;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--accent1);
  opacity: 0.9;
  margin-top: 0.5rem;
  animation: fadeUp 3s var(--ease) forwards;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  padding: 40px 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
  opacity: 0.85;
}

.gallery img:hover {
  transform: scale(1.02);
  opacity: 1;
}

/* Quote */
.quote {
  text-align: center;
  padding: 100px 20px;
  font-size: 1.5rem;
  color: var(--accent2);
  font-style: italic;
  opacity: 0.9;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
  color: var(--accent3);
}

/* Fade-in classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
