/* ========================================
   EVENT MAKEUP SERVICES
======================================== */

.event-services-section {
  padding: 95px 0;
  overflow: hidden;
  background: #fbf7f2;
}

.event-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(50px, 7vw, 95px);
}


/* IMAGE */

.event-services-image {
  min-height: 650px;
  overflow: hidden;
  border-radius: 20px;
}

.event-services-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
}


/* INTRODUCTION */

.event-services-content {
  max-width: 720px;
}

.event-section-title {
  margin-bottom: 35px;
}

.event-section-title h2 {
  margin: 12px 0 20px;
  color: #30211b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.event-section-title p {
  max-width: 650px;
  margin: 0;
  color: #715f56;
  font-size: 16px;
  line-height: 1.8;
}


/* PRICE CARDS */

.event-price-card {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  min-height: 315px;
  padding: 28px 25px;
  border: 1px solid #dfc7b5;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.62);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.event-price-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(68, 44, 34, 0.09);
}

.event-price-card.featured {
  background:
    linear-gradient(
      135deg,
      #f6e9de 0%,
      #fffaf6 100%
    );
}

.event-popular-badge {
  position: absolute;
  top: 16px;
  right: -37px;
  width: 145px;
  padding: 7px 0;
  background: #b67d55;
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(42deg);
}

.event-price-icon {
  display: flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0e4d9;
  color: #ac744e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.event-service-label {
  display: block;
  margin-bottom: 8px;
  color: #a66f4b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.event-price-card h3 {
  margin: 0 0 15px;
  color: #30211b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
}

.event-price-card p {
  margin: 0 0 24px;
  color: #715f56;
  font-size: 14px;
  line-height: 1.7;
}

.event-price {
  margin-top: auto;
}

.event-price span {
  display: block;
  margin-bottom: 4px;
  color: #9f6946;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.event-price strong {
  color: #a36943;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
}


/* INCLUDES */

.event-includes {
  margin-top: 20px;
  padding: 27px 28px;
  border: 1px solid #e2cdbd;
  border-radius: 14px;
  background: #f7eee7;
}

.event-includes h3 {
  margin: 0 0 18px;
  color: #3a2922;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.event-includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-includes li {
  position: relative;
  padding-left: 23px;
  color: #66554d;
  font-size: 14px;
  line-height: 1.5;
}

.event-includes li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #a66f4b;
  content: "✓";
  font-weight: 700;
}


/* BUTTONS */

.event-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.event-actions .btn {
  min-height: 54px;
}

.event-whatsapp-button {
  border: 1px solid #b67d55;
  background: transparent;
  color: #9c6746;
}

.event-whatsapp-button:hover {
  background: #b67d55;
  color: #ffffff;
}


/* NOTE */

.event-service-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 24px;
  padding: 16px 23px;
  border: 1px solid #e5d3c6;
  border-radius: 12px;
  background: #f8efe8;
}

.event-service-note span {
  flex-shrink: 0;
  color: #a66f4b;
  font-size: 21px;
}

.event-service-note p {
  margin: 0;
  color: #6a584f;
  font-size: 14px;
  line-height: 1.6;
}


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

@media (max-width: 1000px) {
  .event-services-layout {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 38px;
  }

  .event-services-image,
  .event-services-image img {
    min-height: 600px;
  }

  .event-price-grid {
    grid-template-columns: 1fr;
  }

  .event-price-card {
    min-height: auto; 
  }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {
  .event-services-section {
    padding: 65px 0;
  }

  .event-services-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .event-services-image,
  .event-services-image img {
    min-height: 490px;
  }

  .event-services-image {
    border-radius: 14px;
  }

  .event-section-title h2 {
    font-size: 42px;
  }

  .event-price-grid {
    grid-template-columns: 1fr;
  }

  .event-price-card {
    grid-template-columns: 60px 1fr;
    min-height: auto;
    padding: 23px 21px;
  }

  .event-price-icon {
    width: 60px;
    height: 60px;
  }

  .event-price-card h3 {
    font-size: 23px;
  }

  .event-includes ul {
    grid-template-columns: 1fr;
  }

  .event-actions {
    grid-template-columns: 1fr;
  }

  .event-service-note {
    align-items: flex-start;
  }
}

/* ==================================================
   FINAL EVENT MAKEUP RESPONSIVE FIX
   Keep this at the END of event-makeup.css
================================================== */

/* Desktop structure */
.event-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 20px;
}

.event-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-services-image,
.event-services-image img {
  min-height: 560px;
}

.event-services-image img {
  width: 100%;
  height: 25%;
  object-fit: cover;
  object-position: center;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {
  .event-services-section {
    padding: 50px 0 65px;
    overflow: hidden;
  }

  /* Intro card */

  

  .event-intro-strip h2 {
    margin: 9px 0 16px !important;
    font-size: 39px !important;
    line-height: 1.02 !important;
    letter-spacing: -1px;
  }

  .event-intro-strip > p {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .event-intro-divider {
    display: none !important;
  }

  /* Image first, cards underneath */

  .event-main-layout {
    display: block !important;
    width: 100% !important;
  }

  .event-services-image {
    width: 100% !important;
    min-height: 470px !important;
    margin-bottom: 16px;
    border-radius: 12px;
  }

  .event-services-image img {
    display: block;
    width: 100% !important;
    height: 470px !important;
    min-height: 470px !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  /* One pricing card per row */

  .event-price-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    width: 100% !important;
  }

  .event-price-card {
    display: grid !important;
    grid-template-columns: 62px minmax(0, 1fr) !important;
    align-items: start !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 24px 20px !important;
    text-align: left !important;
  }

  .event-price-icon {
    grid-row: 1 / 6;
    width: 56px !important;
    height: 56px !important;
    margin: 0 !important;
    font-size: 22px !important;
  }

  .event-service-label {
    margin: 1px 0 7px !important;
    font-size: 9px !important;
    line-height: 1.3;
  }

  .event-price-card h3 {
    margin: 0 !important;
    font-size: 27px !important;
    line-height: 1.08 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .event-price-card h3 br {
    display: none;
  }

  .event-card-divider {
    width: 40px;
    margin: 16px 0 !important;
  }

  .event-price-card p {
    max-width: none !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    text-align: left !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .event-price {
    margin-top: 20px !important;
    padding-top: 0 !important;
    text-align: left;
  }

  .event-price span {
    font-size: 9px !important;
  }

  .event-price strong {
    font-size: 40px !important;
  }

  .event-popular-badge {
    top: 15px;
    right: -42px;
  }

  /* Service May Include */

  .event-includes-strip {
    display: block !important;
    width: 100% !important;
    margin-top: 16px !important;
    padding: 24px 20px !important;
  }

  .event-includes-heading {
    display: flex !important;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding: 0 0 18px !important;
    border-right: 0 !important;
    border-bottom: 1px solid #dfcbbd;
  }

  .event-includes-heading h3 {
    font-size: 25px !important;
  }

  .event-includes-strip ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .event-includes-strip li {
    font-size: 14px !important;
  }

  /* Buttons */

  .event-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 18px !important;
  }

  .event-actions .btn {
    width: 100% !important;
    min-height: 50px;
  }

  /* Notice */

  .event-service-note {
    align-items: flex-start;
    margin-top: 16px;
    padding: 16px 18px;
  }

  .event-service-note p {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* ==================================================
   EVENT MAKEUP — FINAL RESPONSIVE CORRECTION
   This must be the LAST code in event-makeup.css
================================================== */

@media (max-width: 1100px) {
  /* Heading becomes a clean horizontal/stacked panel */

  .event-intro-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    padding: 28px !important;
  }

  .event-intro-divider {
    display: none !important;
  }

  .event-intro-strip h2 {
    max-width: 600px;
    font-size: clamp(38px, 7vw, 56px) !important;
  }

  .event-intro-strip > p {
    max-width: 700px;
    font-size: 15px !important;
  }

  /* Image becomes full width */

  .event-main-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
  }

  .event-services-image {
    width: 100% !important;
    min-height: 520px !important;
  }

  .event-services-image img {
    width: 100% !important;
    height: 520px !important;
    min-height: 520px !important;
    object-fit: cover !important;
    object-position: center 25% !important;
  }

  /* Two cards below image, still side-by-side on tablet */

  .event-price-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .event-price-card {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 440px !important;
    align-items: center !important;
    flex-direction: column !important;
    padding: 30px 25px !important;
    text-align: center !important;
  }

  .event-price-card h3 {
    width: 100% !important;
    font-size: 28px !important;
    line-height: 1.12 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .event-price-card h3 br {
    display: none;
  }

  .event-price-card p {
    width: 100% !important;
    max-width: 310px !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .event-price {
    margin-top: auto !important;
  }

  /* Includes section becomes a proper horizontal panel */

  .event-includes-strip {
    display: grid !important;
    grid-template-columns: 230px 1fr !important;
    gap: 30px !important;
    padding: 27px !important;
  }

  .event-includes-strip ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 13px 25px !important;
  }
}


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

@media (max-width: 650px) {
  .event-services-section {
    padding: 48px 0 60px !important;
  }

  .event-intro-strip {
    padding: 23px 20px !important;
  }

  .event-intro-strip h2 {
    font-size: 38px !important;
  }

  .event-services-image {
    min-height: 440px !important;
    border-radius: 12px;
  }

  .event-services-image img {
    height: 440px !important;
    min-height: 440px !important;
  }

  /* One card per row on phones */

  .event-price-grid {
    grid-template-columns: 1fr !important;
  }

  .event-price-card {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
    min-height: 0 !important;
    align-items: start !important;
    padding: 23px 20px !important;
    text-align: left !important;
  }

  .event-price-icon {
    grid-row: 1 / 6;
    width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
  }

  .event-service-label {
    margin: 2px 0 7px !important;
  }

  .event-price-card h3 {
    font-size: 26px !important;
    text-align: left !important;
  }

  .event-card-divider {
    margin: 16px 0 !important;
  }

  .event-price-card p {
    max-width: none !important;
    text-align: left !important;
  }

  .event-price {
    margin-top: 20px !important;
    padding-top: 0 !important;
    text-align: left !important;
  }

  /* Includes becomes stacked */

  .event-includes-strip {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 23px 20px !important;
  }

  .event-includes-heading {
    padding: 0 0 18px !important;
    border-right: 0 !important;
    border-bottom: 1px solid #dfcbbd !important;
  }

  .event-includes-strip ul {
    grid-template-columns: 1fr !important;
  }

  .event-actions {
    grid-template-columns: 1fr !important;
  }
}

/* ========================================
   EVENT IMAGE + STACKED PRICE CARDS
======================================== */

.event-main-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
  align-items: stretch !important;
  gap: 22px !important;
}

.event-services-image {
  min-height: 610px !important;
  overflow: hidden;
  border-radius: 16px;
}

.event-services-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 610px !important;
  object-fit: cover !important;
  object-position: center top !important;
}


/* Two cards stacked vertically */

.event-price-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px !important;
  min-width: 0;
}


/* Horizontal card */

.event-price-card {
  position: relative;
  display: grid !important;
  grid-template-columns:
    70px
    minmax(0, 1fr)
    minmax(115px, auto) !important;
  align-items: center !important;
  gap: 22px !important;

  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;

  padding: 28px 30px !important;

  overflow: hidden;
  border: 1px solid #dfc7b5;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.62);
  text-align: left !important;
}

.event-price-card.featured {
  background:
    linear-gradient(
      135deg,
      #f8ede4 0%,
      #fffaf6 100%
    );
}


/* Icon */

.event-price-icon {
  display: flex !important;
  width: 66px !important;
  height: 66px !important;
  align-items: center;
  justify-content: center;

  margin: 0 !important;

  border-radius: 50%;
  background: #f0e4da;
  color: #a96f48;
  font-size: 25px;
}


/* Text content */

.event-card-content {
  min-width: 0;
}

.event-service-label {
  display: block;
  margin: 0 0 8px !important;
  color: #a06a47;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.event-price-card h3 {
  margin: 0 0 13px !important;
  color: #30211b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px !important;
  font-weight: 400;
  line-height: 1.08 !important;

  word-break: normal !important;
  overflow-wrap: normal !important;
}

.event-price-card h3 br {
  display: none;
}

.event-price-card p {
  max-width: 430px !important;
  margin: 0 !important;
  color: #6f5d54;
  font-size: 14px !important;
  line-height: 1.65 !important;
  text-align: left !important;

  word-break: normal !important;
  overflow-wrap: normal !important;
}


/* Price on right */

.event-price {
  margin: 0 !important;
  padding: 0 0 0 24px !important;
  border-left: 1px solid #dfc8b7;
  text-align: center !important;
}

.event-price span {
  display: block;
  margin-bottom: 7px;
  color: #9d6744;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.event-price strong {
  color: #a86c45;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px !important;
  font-weight: 400;
}


/* Badge */

.event-popular-badge {
  position: absolute;
  top: 16px;
  right: -42px;
  z-index: 2;

  width: 150px;
  padding: 7px 0;

  background: #b77c53;
  color: #ffffff;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;

  transform: rotate(42deg);
}

@media (max-width: 950px) {
  .event-main-layout {
    grid-template-columns: 1fr !important;
  }

  .event-services-image,
  .event-services-image img {
    min-height: 520px !important;
  }

  .event-price-card {
    grid-template-columns:
      65px
      minmax(0, 1fr)
      minmax(110px, auto) !important;
  }
}

@media (max-width: 650px) {
  .event-services-image,
  .event-services-image img {
    min-height: 450px !important;
  }

  .event-price-card {
    grid-template-columns: 56px minmax(0, 1fr) !important;
    gap: 16px !important;
    padding: 22px 19px !important;
  }

  .event-price-icon {
    width: 54px !important;
    height: 54px !important;
  }

  .event-price-card h3 {
    font-size: 25px !important;
  }

  .event-price-card p {
    font-size: 13px !important;
  }

  .event-price {
    grid-column: 2;
    padding: 16px 0 0 !important;
    border-top: 1px solid #dfc8b7;
    border-left: 0;
    text-align: left !important;
  }

  .event-price strong {
    font-size: 38px !important;
  }
}

.event-includes-panel {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  width: 100%;
  margin-top: 22px;
  padding: 28px 32px;
  border: 1px solid #e0cbbb;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    #f8eee6 0%,
    #fffaf6 100%
  );
}

.event-includes-title {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 30px;
  border-right: 1px solid #dfc9b9;
}

.event-includes-icon {
  display: flex;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #efe2d7;
  color: #a86d47;
  font-size: 20px;
}

.event-includes-title h3 {
  margin: 0;
  color: #35251e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.event-includes-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 16px 28px;
}

.event-includes-list span {
  position: relative;
  min-width: 0;
  padding-left: 23px;
  color: #65544c;
  font-size: 14px;
  line-height: 1.45;
}

.event-includes-list span::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #a86d47;
  content: "✓";
  font-weight: 700;
}

@media (max-width: 900px) {
  .event-includes-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .event-includes-title {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid #dfc9b9;
  }

  .event-includes-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
}
@media (max-width: 600px) {
  .event-includes-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CENTERED EVENT INTRO
======================================== */

.event-centered-intro {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 34px;
  padding: 15px 24px 0;
  text-align: center;
}

.event-centered-intro .eyebrow {
  display: block;
  margin-bottom: 14px;
  text-align: center;
}

.event-centered-intro h2 {
  margin: 0;
  color: #30211b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -1.5px;
  text-align: center;
}

.event-centered-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 180px;
  margin: 22px auto;
  color: #b77c53;
}

.event-centered-divider span {
  width: 62px;
  height: 1px;
  background: #ddc4b2;
}

.event-centered-divider i {
  font-size: 16px;
  font-style: normal;
}

.event-centered-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: #705e55;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

@media (max-width: 650px) {
  .event-centered-intro {
    margin-bottom: 26px;
    padding: 0 18px;
  }

  .event-centered-intro h2 {
    font-size: 42px;
  }

  .event-centered-intro p {
    font-size: 14px;
  }
} 

/* Event Makeup Hero */

.event-banner { 
    background:
        linear-gradient(rgba(24,20,18,.52), rgba(24,20,18,.52)),
        image-set(url("../assets/images/hero/event-hero-1080.webp") type("image/webp"), url("../assets/images/hero/event-hero.jpeg") type("image/jpeg"))
        center 35% / cover no-repeat;
}