/* :root {
  --mcd-red: #DA291C;
  --mcd-dark-red: #A81308;
  --mcd-yellow: #FFBC0D;
  --mcd-charcoal: #27251F;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family);
  background: #111113;
  color: #27251F;
  min-height: 100vh;
  min-width: 400px;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  -webkit-font-smoothing: antialiased;
} */
.app-container {
    --mcd-red: #DA291C;
    --mcd-dark-red: #A81308;
    --mcd-yellow: #FFBC0D;
    --mcd-charcoal: #27251F;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-pill: 9999px;

    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;

    font-family: var(--font-family);
    background: #111113;
    color: #27251F;
    min-height: 100vh;
    /* min-width: 400px; */
    display: flex;
    justify-content: center;
    overflow-x: auto;
    -webkit-font-smoothing: antialiased;

}

.app-container {
    width: 100%;
    /* min-width: 400px; */
    max-width: 1160px;
    background: var(--mcd-dark-red);
    min-height: 100vh;
    position: relative;
    /* box-shadow: 0 0 60px rgba(0, 0, 0, 0.9); */
    display: flex;
    flex-direction: column;
}

.section {
    width: 100%;
    position: relative;
    line-height: 0;
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.text-red {
    color: var(--mcd-red);
}
.text-dark-red {
    color: var(--mcd-dark-red);
}

.text-gold {
    color: var(--mcd-yellow);
}

.text-charcoal {
    color: var(--mcd-charcoal);
}

.hero-section {
    width: 100%;
}

.perks-section {
    width: 100%;
    position: relative;
}

.perks-wrapper {
    position: relative;
    width: 100%;
    margin: -2px 0 0 0;
}

.perks-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: clamp(24px, 5.2vw, 64px) clamp(20px, 4.2vw, 56px) 0 clamp(20px, 4.2vw, 56px);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.perks-title {
    font-size: clamp(28px, 4.4vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--mcd-charcoal);
    letter-spacing: -0.6px;
    margin-bottom: clamp(12px, 2.1vw, 24px);
}

.perks-desc {
    font-size: clamp(16px, 1.8vw, 22px);
    line-height: 1.55;
    color: #27251F;
    max-width: 680px;
    margin: 0 auto clamp(14px, 2.4vw, 28px) auto;
    font-weight: 500;
}

.perks-cta-text {
    font-size: clamp(18px, 2.4vw, 28px);
    font-weight: 900;
    color: var(--mcd-charcoal);
    letter-spacing: -0.3px;
    margin-top: 20px;
}

.deals-section {
    background: #A81308 url('/sites/default/files/2026-09/deals_bg.jpg') top center / 100% auto round;
    padding: 56px 24px 72px 24px;
    line-height: normal;
    margin: -2px 0 -2px 0;
}

.deals-header {
    text-align: center;
    margin-bottom: 32px;
}

.deals-title {
    color: #FFFFFF;
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.deals-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 44px;
}

.deals-carousel-track-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-radius: var(--radius-md);
}

.deals-list {
    display: flex;
    flex-direction: row;
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.deal-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: transparent;
    transition: transform 0.25s ease;
}

.deal-card:hover {
    transform: scale(1.015);
}

.deal-card-img {
    width: 100%;
    max-width: 820px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.carousel-arrow:hover {
    background: var(--mcd-yellow);
    color: #000000;
    border-color: var(--mcd-yellow);
    transform: translateY(-50%) scale(1.12);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.96);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.carousel-dot.active {
    background: var(--mcd-yellow);
    width: 28px;
    border-radius: var(--radius-pill);
}

.deals-cta-box {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.btn-redeem-pill {
    text-align: center;
    width: 100%;
    max-width: 360px;
    background: var(--mcd-yellow);
    color: #000000;
    font-size: clamp(22px, 2.4vw, 26px);
    font-weight: 900;
    border: none;
    border-radius: var(--radius-pill);
    padding: 16px 36px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, background 0.15s ease;
}

.btn-redeem-pill:hover {
    background: #FFCA36;
    transform: translateY(-2px);
    color: #000000;
}

.vault-section {
    background: #EAE3D2 url('/sites/default/files/2026-09/vault_pinboard_bg.jpg') top center / 100% auto round;
    padding: 160px 16px 60px 16px;
    line-height: normal;
}

.vault-header {
    text-align: center;
    margin-bottom: 32px;
}

.vault-title {
    font-size: clamp(32px, 3.8vw, 46px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.6px;
}

.vault-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.vault-meal-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.vault-meal-card:hover {
    transform: scale(1.02);
    z-index: 10;
}

.meal-card-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

.gallery-section {
    background: #731113 url('/sites/default/files/2026-09/gallery_bg.jpg') top center / 100% auto round;
    padding: 140px 16px 40px 16px;
    line-height: normal;
    margin: -2px 0 -2px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 28px;
}

.gallery-title {
    color: #FFFFFF;
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 900;
    letter-spacing: -0.4px;
}

.event-section {
    width: 100%;
    position: relative;
}

.event-wrapper {
    position: relative;
    width: 100%;
}

.event-content {
    position: absolute;
    top: 65%;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.event-title {
    font-size: clamp(28px, 4.4vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--mcd-charcoal);
    letter-spacing: -0.4px;
    margin-bottom: clamp(10px, 1.6vw, 18px);
}

.event-subtitle {
    font-size: clamp(28px, 4.4vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--mcd-dark-red);
    letter-spacing: -0.4px;
}



@media (max-width: 768px) {
    .app-container {
        width: calc(100% + 52px);
        /* min-width: 400px; */
        max-width: calc(100% + 40px);
        box-shadow: none;
        transform: translateX(-20px);
        margin-top: -29px;
    }

    .deals-section {
        padding: 40px 16px 56px 16px;
    }

    .deals-carousel-wrapper {
        padding: 0;
        display: block;
    }

    .deals-carousel-track-container {
        overflow: visible;
    }

    .deals-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        transform: none !important;
    }

    .deal-card {
        flex: none;
        width: 100%;
    }

    .deal-card-img {
        max-width: 100%;
    }

    .carousel-arrow,
    .carousel-dots {
        display: none !important;
    }

    .deals-title {
        font-size: 28px;
    }

    .btn-redeem-pill {
        font-size: 22px;
        padding: 14px 28px;
        max-width: 210px;
    }

    .vault-section {
        padding: 96px 16px 48px 16px;
    }

    .vault-title {
        font-size: 32px;
    }

    .gallery-section {
        padding: 84px 0px 30px 0px;
    }

    .gallery-title {
        font-size: 30px;
    }

    .event-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .event-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .vault-header {
        margin-top: -20px;
    }
}