@charset "UTF-8";
/* ===============================
   GOOGLE FONTS
================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@800;900&display=swap');

/* ===============================
   ROOT
================================ */
:root {
  --primary-red: #ff0000;
  --bg-page: #f4f4f4; 
  --text-main: #111111;
  --text-muted: #555555;
  --border-soft: #d0d0d0;
}

.custom-detail-page {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    padding: 0;
    margin-top: 2rem;
}

.custom-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 2rem;
    align-items: center;
}

@media (max-width: 992px) {
    .custom-detail-container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }
}

/* ===============================
   LEFT: IMAGE SECTION
================================ */
.custom-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
}

.custom-image-wrapper > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.custom-image-overlay-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: 700 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.custom-image-overlay-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: auto;
    z-index: 14;
}

/* ===============================
   RIGHT: CONTENT SECTION
================================ */
.custom-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tag-status {
    background: #fff;
    color: var(--text-main);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.tag-type {
    color: var(--primary-red);
    padding: 0.3rem 0;
}

.custom-event-title {
    font-family: 'Outfit', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    margin: 0 0 2rem 0;
    color: var(--text-main);
    letter-spacing: -2px;
}

@media (max-width: 1200px) {
    .custom-event-title {
        font-size: 4rem;
    }
}

.custom-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 90%;
}

.custom-divider {
    width: 100%;
    height: 1px;
    background: var(--border-soft);
    margin: 1rem 0;
}

/* ===============================
   INFO GRID
================================ */
.custom-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
    column-gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-label i {
    font-size: 1rem;
}

.info-value {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===============================
   BUTTON
================================ */
.custom-checkout-btn {
    background: #c4c4c4;
    color: #fff;
    border: none;
    padding: 1.2rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: not-allowed;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
}

.custom-checkout-btn.active-btn {
    background: var(--primary-red);
    cursor: pointer;
}

.custom-checkout-btn.active-btn:hover {
    background: #e60000;
}

/* Disable theme smooth scroll safely */
#smooth-wrapper {
  position: static !important;
  height: auto !important;
  overflow: visible !important;
}

#smooth-content {
  transform: translate3d(0, 0, 0) !important;
  will-change: auto !important;
}

/* ===============================
   MOBILE RESPONSIVENESS
================================ */
@media (max-width: 768px) {
    .custom-detail-page {
        margin-top: 4rem;
    }
    .custom-detail-container {
        padding: 1rem;
        gap: 1.5rem;
    }
    .custom-event-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    .custom-description {
        max-width: 100%;
        font-size: 1rem;
    }
    .custom-info-grid {
        grid-template-columns: 1fr;
        row-gap: 1.5rem;
    }
    .custom-checkout-btn {
        width: 100%;
        text-align: center;
    }
    .custom-image-overlay-text {
        font-size: 0.9rem;
        left: 1rem;
        bottom: 1rem;
    }
    .custom-image-overlay-logo {
        width: 50px;
        right: 1rem;
        bottom: 1rem;
    }
}