:root {
  --bg: #faf9f7;
  --primary: #111;
  --accent: #7a1f2b;
  --logo: #0097db;
  --muted: #6b6b6b;
  --card: #ffffff;
}

/*Custom CSS for daimon-landing-page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f7f7f7;
  color: #1c1c1c;
}

/* LAYOUT */
.container-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* LOGO */
.logo-home {
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.logo-home img {
  height: 148px;
}

/* GRID */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  max-width: 900px;
}

/* CARD */
.choice-card {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  height: 108px;
  cursor: pointer;

  /* base shadow */
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);

  /* opacity: 0; */
  /* animation: fadeUp 1s ease forwards; */

  /* animasi hover */
  /* transition:
    transform 0.35s cubic-bezier(.4,0,.2,1),
    box-shadow 0.35s cubic-bezier(.4,0,.2,1); */
}

.choice-card:nth-child(2) {
  animation-delay: .2s;
}

.choice-overlay2 {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #8b8b8b 1px solid;
}

.choice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( to right,
    #0097db,
    #005f8a
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border: #005f8a 1px solid;
}

.choice-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #f7f7f7;
  letter-spacing: .4px;
}

.choice-overlay2 h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #7a7a7a;
  letter-spacing: .4px;
}


/* HOVER */
.choice-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 30px rgba(0,0,0,0.30);
}

.choice-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  opacity: 0;
  transition: opacity .3s ease;
}

.choice-card:hover::after {
  opacity: 1;
}

/* CLICK EFFECT */
.choice-card {
  transition:
    transform .12s ease,
    box-shadow .12s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.choice-card:active {
  transform: translateY(0) scale(0.94);
  filter: brightness(0.65) saturate(0.1);
}

.choice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity .12s ease;
  pointer-events: none;
}

.choice-card:active::before {
  opacity: 1;
}


/* RESPONSIVE */
@media (min-width: 768px) {
  .choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .choice-card h2 {
    font-size: 30px;
  }
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CUSTOM FOR HORIZONTAL BOTTOM CARD */
.card--highlight {
  background: var(--card);
  text-align: center;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,.10);
  align-items: center;
}

svg {
  margin-bottom: 20px;
  color: var(--logo);
}

.card--highlight h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.card--highlight p {
  max-width: 760px;
  margin: auto;
  line-height: 1.7;
}

.contact-info p {
  margin-bottom: 16px;
  font-weight: 500;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-links a {
  letter-spacing: .4px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: .9;
  transition:
      color .4s cubic-bezier(.22,1,.36,1),
      opacity .4s cubic-bezier(.22,1,.36,1),
      transform .4s cubic-bezier(.22,1,.36,1);
}

.contact-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--logo);
}

a {
  transition:
    color .4s cubic-bezier(.22,1,.36,1),
    opacity .4s cubic-bezier(.22,1,.36,1),
    transform .4s cubic-bezier(.22,1,.36,1);
}

a:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--logo);
}

/* BUTTONS HOVER ADJUSTMENTS */
.hero a:hover,
.recruitment-cta a:hover {
  color: var(--bg);
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-3px);
  }
}

.btn:active {
  transform: scale(0.96);
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1024px) {
  .flex {
    margin-top: 24px;
  }
}

/* HOW WE WORK SECTION */
.how-we-work {
  margin-top: 100px;
  text-align: center;
}

.how-we-work .section-desc {
  max-width: 680px;
  margin: 0 auto 40px;
  color: var(--muted);
}

.work-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.work-card {
  background: var(--card);
  padding: 32px;
  border-radius: 18px;
  box-shadow:
    0 6px 15px rgba(0,0,0,0.05),
    0 16px 40px rgba(0,0,0,0.08);
  transition:
    transform .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s cubic-bezier(.22,1,.36,1);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 25px rgba(0,0,0,0.10),
    0 22px 48px rgba(0,0,0,0.12);
}

.recruitment-cta {
  padding: 0 20px;
  text-align: center;
}

.recruitment-cta p {
  margin: 20px auto 40px;
  max-width: 600px;
}

/* MATERIAL SYMBOLS */
.material-symbols-outlined {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--logo);
}