/* Global */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fdfdfd;
  color: #222;
  line-height: 1.6;
}
h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
section {
  padding: 4rem 8%;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}
.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #d4af37;
}
.navbar nav a {
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar nav a:hover,
.navbar nav .active {
  color: #d4af37;
}
.navbar nav .btn {
  background: #d4af37;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.navbar nav .btn:hover {
  background: #b9962b;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('https://source.unsplash.com/1600x900/?home,interior,decor') no-repeat center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3rem;
  animation: fadeIn 2s ease;
}
.hero-content p {
  margin-top: 1rem;
  font-size: 1.3rem;
  animation: slideUp 2s ease;
}

/* Story Section */
.story h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
}
.story-text {
  max-width: 800px;
  margin: auto;
}
.story-text p {
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 1.2s ease forwards;
}
.story-text p:nth-child(2) {
  animation-delay: 0.5s;
}

/* Team Section */
.team {
  background: #f9f9f9;
  text-align: center;
}
.team h2 {
  margin-bottom: 2rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.member {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.member h3 {
  margin: 0.5rem 0;
}
.member p {
  color: #777;
}
.quote {
  margin-top: 1rem;
  font-style: italic;
  font-size: 0.95rem;
  color: #d4af37;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.member:hover .quote {
  opacity: 1;
  transform: translateY(0);
}


/* ====== Footer ====== */
footer {
  background: #111;
  color: #eee;
  padding: 2rem 8%;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-links a {
  display: block;
  margin: 0.3rem 0;
  color: #eee;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #d4af37;
  text-shadow: 0 0 8px #d4af37;
}
.socials a {
  margin-right: 10px;
  font-size: 1.2rem;
  transition: 0.3s;
}
.socials a:hover {
  color: #d4af37;
}


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
}


