.hero {
  width: 100vw;
  height: auto;
  align-items: center;
  background: var(--primary-light);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: right;
}

.cake-main {
  width: 80vw; /* Relative to viewport width */
  height: auto;
  max-width: 600px; /* Prevent getting too large */
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.cake-main img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.cake-main:hover img {
  transform: scale(1.02);
}
.content-wrapper {
  padding: 40px;
}
.hero-title {
  flex: 1;
  font-weight: 400;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-title :first-child {
  font-size: clamp(1rem, 3vw, 3rem);
}
.hero-title :last-child {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--accent);
  font-weight: 700;
}

.title-line {
  display: block;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 400px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.home-btn {
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
}
.home-btn-scroll {
  background-color: var(--light);
  color: var(--accent);
}
.home-btn-scroll:hover,
.home-btn-scroll:active {
  box-shadow: inset 0 0 0 3px var(--accent);
  background-color: var(--light);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
}
