/* ROOT COLORS */
:root {
  --teal: #3C787E;
  --orange: #D56F3E;
  --light-gray: #CECDCD;

  --essential: #E9FDFF;
  --premium: #FADDD0;
  --signature: #B7E6EB;
}

/* BODY */
body {
  font-family: 'Josefin Slab', serif;
  background: #f5f5f5;
  color: #222;
  max-width: 420px;
  margin: 0 auto;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-weight: 700;
}

.subtitle {
  font-weight: 500;
}

p {
  font-weight: 300;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 10px;
}

.logo {
  width: 50px;
  filter: drop-shadow(0 6px 10px rgba(60,120,126,0.4));
}

.title {
  font-size: 18px;
}

/* NAV */
nav {
  background: linear-gradient(90deg, #3C787E, #6DD9E4);
  display: flex;
  justify-content: space-around;
  padding: 12px;
  color: white;
}

nav a {
  transition: 0.3s;
}

nav a:hover {
  transform: scale(1.05);
  opacity: 0.85;
}

/* HERO */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* DARK OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

/* HERO TEXT */
.hero-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 2;
}

/* CARDS */
.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: 0.3s;
}

/* IMAGE */
.card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(60,120,126,0.4);
}

/* BUTTON */
.button {
  background: var(--orange);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  margin-top: 6px;
  display: inline-block;
  transition: 0.3s;
}

.button:hover {
  background: var(--teal);
}

/* PRICING */
.pricing {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--light-gray);
  text-align: center;
  transition: 0.3s;
}

.price-card:hover {
  box-shadow: 0 8px 20px rgba(60,120,126,0.4);
}

/* COLORS */
.essential { background: var(--essential); }
.premium { background: var(--premium); }
.signature { background: var(--signature); }

/* FOOTER */
footer {
  background: var(--orange);
  color: white;
  text-align: right;
  padding: 10px;
}

/* ARTIST SECTION */
.artist {
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.artist img {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--light-gray);
  transition: 0.3s;
}

.artist img:hover {
  box-shadow: 0 6px 15px rgba(60,120,126,0.4);
}

/* RESPONSIVE */
@media (min-width: 768px) {

  body {
    max-width: 1000px;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
    flex-direction: column;
    text-align: center;
  }

  .pricing {
    flex-direction: row;
  }

  .artist img {
    width: 180px;
    height: 200px;
  }
}