/* Variable */
:root {
  --color-primary-red: #e21e26;
}

/* Keyframe */
@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(0.9);
  }
}

/* Base */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

img {
  display: block;
  width: 100%;
  object-fit: contain;
}

button {
  cursor: pointer;
}

/* Layout */
.container {
  width: 90%;
  margin: 0 auto;
}

/* Component */
.card {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary-red);
}

.button-primary {
  background-color: var(--color-primary-red);
  color: white;
  padding: 1rem 2rem;
  display: inline-block;
}

.button-primary:hover {
  background-color: #c11a21;
}

.nav-link {
  color: black;
}

.nav-link:hover {
  color: var(--color-primary-red);
}

.hero-left,
.hero-right {
  flex: 1 1 43.75rem;
}

.hero-title {
  font-size: 3rem;
}

.hero-span {
  color: var(--color-primary-red);
}

.hero-image {
  max-width: 37.5rem;
}

.offer-card {
  width: 300px;
  transition: 0.3s ease;
  cursor: pointer;
}

.offer-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.offer-button {
  border: none;
}

.offer-button:hover {
  background-color: black;
}

.status-pulse {
  width: 12px;
  height: 12px;
  background-color: #28a745;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Utility */
.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.p-2 {
  padding: 2rem;
}

.py-2 {
  padding: 2rem 0;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 2rem;
}
