/* CSS Document */
@import "https://fonts.googleapis.com/icon?family=Material+Icons";
@import "https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Plus+Jakarta+Sans:wght@300;400;600&display=swap";
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}
.gold-text {
  background: linear-gradient(to right, var(--fox-brand), var(--fox-brand-light), var(--fox-brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.site {
  font-size: clamp(1.1rem, 5vw, 1.4rem);
  font-weight: 800;
}
.nav-links {
  display: inline-flex;
  text-decoration: none;
}
.nav-links > i {
  font-size: 1.2rem;
}
.nav-links > img {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: cover;
  border-radius: 1.1rem;
}
.nav-links > span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.navigation {
  display: flex;
  align-items: center;
}
.header {
  display: flex;
  align-items: center;
}
.section-title {
  font-size: 2.5rem;
  margin: 2rem auto;
}
/* HERO CONTAINER */
/* --- Base Styles (Mobile First) --- */
.hero {
  position: relative;
  min-height: calc( 100vh - 8rem); /* Full screen di mobile agar lebih dramatis */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
}
/* Gelap transparan agar teks terbaca */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-section {
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc( 100% - 2rem);
	z-index: 2;
	padding: 1rem 0;

}
.hero-section h1 {
  font-size: 2rem; /* Ukuran pas untuk layar HP */
  color: var(--fox-brand-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-section p {
  font-size: 1rem;
  color: var(--fox-white);
  margin-bottom: 2rem;
  line-height: 1.5;
  opacity: 0.9;
}
/* Grouping tombol agar rapi di mobile */
.hero-btn {
  display: block; /* Tombol menumpuk vertikal di HP */
  width: 100%;
  padding: 12px 0;
  margin-bottom: 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--fox-brand);
  color: var(--fox-white);
  border: 2px solid var(--fox-brand);
}
.hero-btn-outlined {
  background-color: transparent;
  border-color: var(--fox-white);
  margin-bottom: 0;
}
/* --- Services Section --- */
.services {
  padding: 60px 20px;
  text-align: center;
}
/* Grid Layout */
.grid-2 ,
.grid-2-1 ,
.grid-1-3 ,
.grid-4 ,
.grid-6 ,
.grid-8 ,
.grid {
  display: grid;
  grid-template-columns: 1fr; /* Satu kolom di mobile */
}
/* Card Styling */
.card {
  padding: 40px 30px;
  border: 1px solid var(--fox-border);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--fox-brand-light);
}
/* Icon Styling (Material Icons) */
.card .material-icons {
  font-size: 3rem;
  color: var(--fox-brand);
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.4rem;
  color: var(--fox-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}
.card p {
  font-size: 1rem;
  color: var(--fox-text-muted);
  line-height: 1.6;
}
/* --- Footer / Credit Section --- */
/* CREDIT SECTION */
.credit {
  background: #0c0a09;
  padding: 40px 16px;
  text-align: center;
  color: var(--fox-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/* CONTAINER */
.credit-container {
  max-width: 100%;
  margin: 0 auto;
}
/* TITLE */
.gold-text {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--fox-brand-light), var(--fox-brand), var(--fox-brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* TAGLINE */
.credit p {
  font-size: 0.85rem;
  color: #a8a29e;
  margin-bottom: 20px;
}
/* SOCIAL */
.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1c1917;
  color: var(--fox-brand-light);
  transition: all 0.25s ease;
}
.social-links i {
  font-size: 16px;
}
/* COPYRIGHT */
.copyright small {
  font-size: .9rem;
  color: #78716c;
}
.copyright span {
  color: var(--fox-brand);
}
.box{
	background: var(--fox-surface);
	color: var(--fox-text-main);
	box-shadow: var(--fox-shadow);
	border:1px solid  var(--fox-border);
}


