@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800&family=Playfair+Display:ital,wght@1,500;1,700&family=Poppins:wght@500;600;700;800&family=Roboto:wght@500;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-gray: #475569;
  --bg-white: #ffffff;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --border-light: #e2e8f0;
  --bg-light-gray: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  background: linear-gradient(to bottom, #1e3a8a, #0f172a); /* Biru tua gradient */
  position: relative;
  padding: 24px 0 100px;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 60%);
  z-index: 1;
}

/* Floating Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.05);
  animation: float 6s infinite ease-in-out;
  z-index: 1;
}

.shape-1 {
  width: 150px; height: 150px;
  top: -20px; left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px; height: 80px;
  top: 40%; right: 15%;
  animation-duration: 8s;
  animation-delay: 2s;
}

.shape-3 {
  width: 120px; height: 120px;
  bottom: 10%; left: 20%;
  animation-duration: 7s;
  animation-delay: 4s;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.btn-white {
  background-color: white;
  color: var(--text-dark);
}

.btn-white:hover {
  background-color: #f1f5f9;
}

/* Main Branding */
.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.logo-wrapper {
  width: 90px;
  height: 90px;
  background-color: transparent;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.logo-wrapper i {
  font-size: 40px;
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title {
  font-size: 72px;
  font-weight: 800;
  font-style: italic; /* Miring */
  color: #ffd700; /* Emas */
  letter-spacing: 12px;
  margin-left: 12px; /* compensate for letter spacing */
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.subtitle-1 {
  font-size: 16px;
  font-weight: 700;
  font-style: italic; /* Miring */
  color: #ffd700; /* Emas */
  letter-spacing: 2px;
  margin-top: 0px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.subtitle-2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: #fde047; /* Emas lebih muda */
  margin-top: 4px;
}

/* =========================================
   MENU CEPAT SECTION
   ========================================= */
.quick-menu {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.section-header i {
  color: #0ea5e9;
  font-size: 24px;
}

.section-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Grid Layout for Cards */
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Individual Card */
.menu-card {
  width: calc((100% - 100px) / 6); /* Approx 16.6% minus gap */
  min-width: 150px;
  max-width: 200px; /* Tambahkan max-width agar tidak melar berlebihan */
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  border-color: transparent;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-box i {
  color: white;
  font-size: 24px;
}

.menu-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Icon Colors */
.color-teal { background-color: #14b8a6; }
.color-green { background-color: #10b981; }
.color-blue { background-color: #3b82f6; }
.color-indigo { background-color: #6366f1; }
.color-purple { background-color: #8b5cf6; }
.color-rose { background-color: #f43f5e; }
.color-orange { background-color: #f97316; }
.color-amber { background-color: #f59e0b; }
.color-red { background-color: #ef4444; }
.color-cyan { background-color: #06b6d4; }
.color-pink { background-color: #ec4899; }
.color-slate { background-color: #64748b; }
.color-dark { background-color: #1e293b; }

/* =========================================
   SISTEM TERINTEGRASI SECTION
   ========================================= */
.integrated-system {
  padding: 60px 0 100px;
  text-align: center;
  background-color: var(--bg-white);
}

.pill-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--bg-light-gray);
  color: var(--text-gray);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}

.integrated-system h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.integrated-system p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1200px) {
  /* No manual width needed, CSS grid handles it */
}

@media (max-width: 992px) {
  .title { font-size: 56px; letter-spacing: 8px; margin-left: 8px;}
  .subtitle-1 { font-size: 14px; }
}

@media (max-width: 768px) {
  .title { font-size: 48px; letter-spacing: 6px; margin-left: 6px; }
  .subtitle-1 { font-size: 12px; }
  .subtitle-2 { font-size: 16px; }
}

@media (max-width: 480px) {
  .menu-card {
    padding: 16px 12px;
  }
  .menu-card h3 {
    font-size: 13px; /* Slightly larger text */
  }
  .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .icon-box i {
    font-size: 18px;
  }
  .title { font-size: 36px; letter-spacing: 4px; margin-left: 4px;}
  .auth-buttons { justify-content: center; }
}
