/* ========================================
   EMMA'S TEA & TRIUMPH
   ======================================== */


/* HERO */

.event-hero {
  position: relative;

  background:
    linear-gradient(
      rgba(38, 27, 32, 0.55),
      rgba(38, 27, 32, 0.72)
    ),
    url("photos/tea-hero.jpg");

  background-size: cover;
  background-position: center;

  color: white;
}

.event-hero h1 {
  color: white;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.4);
}

.event-hero__content p {
  color: rgba(255, 255, 255, 0.9);
}


/* DETAILS */

.details-section {
  background: #eee8dc;
}


/* MENU */

.menu-section {
  background: #faf7f0;
}

/* ========================================
   HUMMINGBIRD/FLOWER BORDERS
   ======================================== */

.tea-menu-section {
  position: relative;
  overflow: hidden;
}

.tea-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* Left hummingbird */
.tea-decor-left {
  width: 260px;
  left: -50px;
  top: 140px;
}

/* Right hummingbird */
.tea-decor-right {
  width: 260px;
  right: -50px;
  top: 1000px;

    transform: scaleX(-1);
}
/* Right hummingbird */
.detail-decor-right {
  width: 260px;
  right: 10px;
  top: 5px;

    transform: scaleX(-1);
}

/* Left flowers */
.tea-floral-left {
  width: 280px;
  left: -10px;
  top: 350px;
}

/* Right flowers */
.tea-floral-right {
  width: 280px;
  right: -10px;
  top: 1050px;

  transform: scaleX(-1);
}

/* Keep the actual menu above decorations */
.tea-menu-section .shell {
  position: relative;
  z-index: 2;
}


/* ========================================
   HORIZONTAL FOOD MENU
   ======================================== */

.tea-food-section {
  padding: 80px 0;
  background: #efe8d9;
}

.tea-food-section .center-heading {
  margin-bottom: 38px;
}

.tea-food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;

  border-top: 1px solid rgba(52, 66, 56, .25);
  border-bottom: 1px solid rgba(52, 66, 56, .25);
}

.tea-food-card {
  padding: 28px 24px;
  text-align: center;
}

.tea-food-card + .tea-food-card {
  border-left: 1px solid rgba(52, 66, 56, .25);
}

.tea-food-label {
  display: block;
  margin-bottom: 10px;

  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;

  color: #74806f;
}

.tea-food-card h3 {
  margin: 0 0 16px;

  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;

  color: #344238;
}

.tea-food-card p {
  margin: 6px 0;
  color: #66685f;
  line-height: 1.45;
}

/* PHOTOS */

.photos-section {
  background: #39483c;
}


/* BUTTONS */

.button-light {
  background: #f5f0e5;
  color: #344238;
}

/* ========================================
   TABLET
   ======================================== */

@media (max-width: 800px) {

  .tea-food-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tea-food-card + .tea-food-card {
    border-left: none;
  }

  .tea-food-card:nth-child(even) {
    border-left: 1px solid rgba(52, 66, 56, .25);
  }

  .tea-food-card:nth-child(n+3) {
    border-top: 1px solid rgba(52, 66, 56, .25);
  }

  /* Smaller decorative birds / florals */
  .tea-decor {
    width: 120px;
    opacity: .7;
  }

  .tea-decor-left {
    left: -45px;
  }

  .tea-decor-right {
    right: -45px;
  }

}


/* ========================================
   PHONE
   ======================================== */

@media (max-width: 520px) {

  .tea-food-grid {
    grid-template-columns: 1fr;
  }

  .tea-food-card,
  .tea-food-card:nth-child(even) {
    border-left: none;
  }

  .tea-food-card:nth-child(n+2) {
    border-top: 1px solid rgba(52, 66, 56, .25);
  }

  .tea-decor {
    width: 90px;
    opacity: .5;
  }

}

/* ========================================
   SINGLE COLUMN STACK ON PHONE FOR PARTY DETAILS
   ======================================== */

@media (max-width: 700px) {

  .details-section {
    padding: 50px 0 60px;
  }

  .details-section .shell {
    width: min(100% - 36px, 700px);
  }

  .details-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: none;
  }

  .detail-card {
    padding: 28px 16px;
    text-align: center;

    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(52, 66, 56, .18) !important;
  }

  .detail-card:last-child {
    border-bottom: none !important;
  }

  .detail-card strong {
    font-size: 1.45rem;
  }

  .detail-label {
    margin-bottom: 10px;
  }

}