@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&family=Source+Sans+3:wght@400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    overflow-x: hidden;
    background: #fff;
    color: #000;
}

/* FULL-WIDTH PINK HERO - CFP STYLE */
.hero-full-pink {
    background: #dd4298;
    padding: 4rem 6rem;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-full-pink::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.4;
}

.hero-full-pink::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/_3000-600-SPLATTER.png') center/cover;
    opacity: 0.2;
    mix-blend-mode: multiply;
}

.hero-content-pink {
    flex: 1;
    max-width: 700px;
}

.logo-pink {
    max-width: 550px;
    margin-bottom: 3rem;
    animation: popIn 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.logo-pink img {
    width: 100%;
    height: auto;
    filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.15));
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.hero-title-pink {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 2.5rem;
    text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: slideInPop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
}

@keyframes slideInPop {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle-pink {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: slideInPop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.7s forwards;
}

.hero-date-pink {
    display: inline-block;
    background: #bed745;
    color: #000;
    padding: 1.3rem 3rem;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    opacity: 0;
    animation: slideInPop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.9s forwards;
}

.hero-lightbulb-container-pink {
    max-width: 380px;
    flex-shrink: 0;
}

.hero-lightbulb-pink {
    width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 0px rgba(0, 0, 0, 0.2));
    animation: spinIn 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes spinIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* CONSISTENT CONTAINER WIDTH */
.content-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* BOXED COPY SECTION - CFP STYLE - REDUCED SPACING */
.message-box-section {
    padding: 4rem 4rem 2rem;
    background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.message-box-card {
    background: #fff;
    border: 5px solid #000;
    padding: 4rem;
    position: relative;
}

.message-box-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: #dd4298;
    z-index: -1;
}

/* OUTLINED NUMBER STYLE - MATCHING 02 & 03 */
.message-box-number {
    font-family: 'Nunito', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 4px #dd4298;
    line-height: 1;
    margin-bottom: 2rem;
}

.message-box-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.message-box-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.message-box-text strong {
    color: #dd4298;
    font-weight: 700;
}

/* CONVENTION INFORMATION SECTION - CFP STYLE - REDUCED SPACING */
.convention-info-section {
    padding: 4rem 4rem;
    background: #fff;
}

.convention-info-header {
    text-align: center;
    margin-bottom: 4rem;
}

.convention-info-eyebrow {
    display: inline-block;
    background: #bed745;
    color: #000;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
}

.convention-info-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #dd4298;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.convention-info-theme {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.4;
    color: #000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.convention-info-theme strong {
    color: #dd4298;
    font-weight: 900;
}

.convention-info-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    max-width: 1100px;
    margin: 0 auto;
}

.convention-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.convention-info-card {
    background: #fff;
    border: 5px solid #000;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.convention-info-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    background: #f19235;
    z-index: -1;
    transition: all 0.3s ease;
}

.convention-info-card:nth-child(2)::before {
    background: #bed745;
}

.convention-info-card:nth-child(3)::before {
    background: #dd4298;
}

/* Background hover instead of shadow pop */
.convention-info-card:hover {
    background: rgba(241, 146, 53, 0.1);
}

.convention-info-card:nth-child(2):hover {
    background: rgba(190, 215, 69, 0.1);
}

.convention-info-card:nth-child(3):hover {
    background: rgba(221, 66, 152, 0.1);
}

.convention-info-card-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.convention-info-card-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

.convention-info-card-text strong {
    color: #dd4298;
    font-weight: 700;
}

.convention-info-cta {
    text-align: center;
    padding: 3rem;
    background: #000;
    border: 5px solid #000;
    position: relative;
}

.convention-info-cta::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: #dd4298;
    z-index: -1;
}

.convention-info-cta-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #bed745;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.convention-info-cta-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #fff;
    font-weight: 600;
}

/* SPLIT VIDEO SECTION - CFP CTA STYLE */
.video-split-section {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 70vh;
}

.video-split-left {
    background: #000;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-split-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 2px, transparent 2px);
    background-size: 20px 20px;
}

.video-split-number {
    font-family: 'Nunito', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 4px #f19235;
    line-height: 1;
    margin-bottom: 2rem;
}

.video-split-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 2rem;
}

.video-split-title span {
    color: #bed745;
}

.video-split-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.video-split-location {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: #f19235;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2rem;
}

.video-split-right {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-split-right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CAROUSEL SECTION - CFP STYLE */
.carousel-section {
    padding: 6rem 0;
    background: #fff;
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    padding: 0 4rem 4rem;
}

.carousel-number {
    font-family: 'Nunito', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 4px #dd4298;
    line-height: 1;
    margin-bottom: 1rem;
}

.carousel-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #000;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 1rem;
}

.carousel-title span {
    color: #bed745;
}

.carousel-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
}

/* CAROUSEL CONTAINER - MIXED ASPECT RATIOS, FLUSH BORDERS */
.carousel-track-container {
    position: relative;
    padding: 2rem 0;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    padding: 0 4rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 auto;
    height: 450px;
    scroll-snap-align: center;
    position: relative;
    cursor: pointer;
    border: 5px solid #000;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: #fff;
    overflow: hidden;
}

.carousel-item:hover {
    transform: translateY(-8px);
    box-shadow: 12px 16px 0px #dd4298;
}

.carousel-item img {
    width: auto;
    height: 100%;
    max-width: none;
    display: block;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.carousel-item:hover .carousel-overlay {
    transform: translateY(0);
}

.carousel-caption {
    font-size: 1rem;
    font-weight: 700;
    color: #bed745;
    margin-bottom: 0.3rem;
}

.carousel-category {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CAROUSEL CONTROLS */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 4rem;
}

.carousel-btn {
    background: #fff;
    color: #000;
    border: 4px solid #000;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 6px 6px 0px #000;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Source Sans 3', sans-serif;
}

.carousel-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #000;
    background: #bed745;
}

/* LIGHTBOX - CFP STYLE */
.lightbox-pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 2rem;
}

.lightbox-pop.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content-pop {
    position: relative;
    max-width: 95%;
    max-height: 95%;
}

.lightbox-image-pop {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 8px solid #fff;
    box-shadow: 12px 12px 0px #dd4298;
}

.lightbox-caption-pop {
    background: #fff;
    color: #000;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px #dd4298;
}

.lightbox-caption-text-pop {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lightbox-category-badge-pop {
    display: inline-block;
    background: #bed745;
    color: #000;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-close-pop {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #dd4298;
    color: #fff;
    width: 60px;
    height: 60px;
    border: 4px solid #fff;
    font-size: 2rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 6px 6px 0px #000;
    z-index: 10000;
}

.lightbox-close-pop:hover {
    background: #bed745;
    color: #000;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #000;
}

.lightbox-nav-pop {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: #dd4298;
    color: #fff;
    width: 60px;
    height: 60px;
    border: 4px solid #fff;
    font-size: 2rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 6px 6px 0px #000;
    z-index: 10000;
}

.lightbox-nav-pop:hover {
    background: #bed745;
    color: #000;
    transform: translateY(-50%) translate(-2px, -2px);
    box-shadow: 8px 8px 0px #000;
}

.lightbox-prev-pop {
    left: 2rem;
}

.lightbox-next-pop {
    right: 2rem;
}

/* NEWSLETTER SIGNUP SECTION */
.newsletter-signup-section {
    background: #bed745;
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
}

.newsletter-signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.08) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.6;
}

.newsletter-signup-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.newsletter-signup-content {
    flex: 1;
}

.newsletter-signup-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.5);
}

.newsletter-signup-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #000;
    font-weight: 600;
}

.newsletter-signup-form-wrapper {
    flex-shrink: 0;
    max-width: 500px;
}

.newsletter-signup-form {
    display: flex;
    gap: 1rem;
}

.newsletter-email-input {
    flex: 1;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    border: 5px solid #000;
    background: #fff;
    color: #000;
    box-shadow: 6px 6px 0px #000;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.newsletter-email-input:focus {
    outline: none;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #000;
}

.newsletter-email-input::placeholder {
    color: #666;
}

.newsletter-submit-button {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 900;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #dd4298;
    color: #fff;
    border: 5px solid #000;
    box-shadow: 6px 6px 0px #000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    white-space: nowrap;
}

.newsletter-submit-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #000;
    background: #f19235;
}

/* PRE-FOOTER */
.pre-footer {
    background: #000;
    padding: 4rem 2rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.pre-footer-content {
    flex: 1;
}

.pre-footer-eyebrow {
    color: #bed745;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.pre-footer-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pre-footer-details {
    font-size: 1.3rem;
    color: #bed745;
    font-weight: 600;
}

.pre-footer-logo {
    max-width: 200px;
}

.pre-footer-logo img {
    width: 100%;
    height: auto;
}

.utility-footer-minimal {
    background: #000;
    border-top: 2px solid #333;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
}

.utility-footer-minimal-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.utility-footer-minimal-links {
    display: flex;
    gap: 1.5rem;
}

.utility-footer-minimal-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.utility-footer-minimal-links a:hover {
    color: #bed745;
}

.utility-footer-minimal-social {
    display: flex;
    gap: 1rem;
}

.utility-footer-minimal-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
}

.utility-footer-minimal-social a:hover {
    transform: translateY(-3px);
}

.utility-footer-minimal-social svg {
    width: 20px;
    height: 20px;
    fill: #999;
    transition: fill 0.3s;
}

.utility-footer-minimal-social a:hover svg {
    fill: #bed745;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-full-pink {
        padding: 4rem 2rem;
        min-height: auto;
    }

    .hero-inner-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-content-pink {
        max-width: 100%;
    }

    .logo-pink {
        margin: 0 auto 2.5rem;
    }

    .hero-lightbulb-container-pink {
        max-width: 300px;
        margin: 0 auto;
    }

    .video-split-section {
        grid-template-columns: 1fr;
    }

    .video-split-left {
        padding: 4rem 2rem;
    }

    .carousel-track {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .message-box-section {
        padding: 3rem 2rem 1.5rem;
    }

    .message-box-card {
        padding: 2.5rem;
    }

    .convention-info-section {
        padding: 3rem 2rem;
    }

    .convention-info-grid {
        grid-template-columns: 1fr;
    }

    .convention-info-card {
        padding: 2rem;
    }

    .carousel-controls {
        padding: 0 2rem;
    }

    .newsletter-signup-section {
        padding: 4rem 2rem;
    }

    .newsletter-signup-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .newsletter-signup-form-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .newsletter-signup-form {
        flex-direction: column;
    }

    .newsletter-email-input {
        width: 100%;
    }

    .lightbox-close-pop,
    .lightbox-nav-pop {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev-pop {
        left: 1rem;
    }

    .lightbox-next-pop {
        right: 1rem;
    }

    .pre-footer {
        flex-direction: column;
        text-align: center;
    }

    .utility-footer-minimal {
        flex-direction: column;
        text-align: center;
    }

    .utility-footer-minimal-group {
        flex-direction: column;
        gap: 1.5rem;
    }
}
