/* ===========================
   ASTRAYUDH THEME — ELEGANT + PROFESSIONAL
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Poppins:wght@300;400;500&display=swap');

:root {
  --background: #f9f7f6;
  --card-bg: #ffffff;
  --accent: #7c1029; /* Wine Red */
  --accent-hover: #5e0d1f;
  --text: #1f1f1f;
  --muted-text: #6b6b6b;
  --shadow: rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.7;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px var(--shadow);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--accent);
  letter-spacing: 1px;
}

.nav a {
  color: var(--text);
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
}

/* Hero */
#hero {
  background: linear-gradient(
      rgba(124, 16, 41, 0.45),
      rgba(124, 16, 41, 0.45)
    ),
    url('https://images.unsplash.com/photo-1581090700227-1e37b190418e?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

#hero p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.95;
}

.cta {
  display: inline-block;
  margin-top: 25px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.cta:hover {
  background: var(--accent-hover);
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Card */
.card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow);
  margin-bottom: 30px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  margin-bottom: 10px;
}

.card p {
  color: var(--muted-text);
}

/* Footer */
.site-footer {
  background: #fff;
  text-align: center;
  padding: 25px;
  color: var(--muted-text);
  font-size: 0.95rem;
  box-shadow: 0 -1px 6px var(--shadow);
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
  }
  .nav a {
    margin: 10px;
  }
  #hero {
    padding: 90px 15px;
  }
  #hero h2 {
    font-size: 1.9rem;
  }
}
