/* CCF SARNIA - PREMIUM EVENT PAGE STYLES */ :root { --ccf-primary: #38a1c7; --ccf-primary-light: #5dbde0; --ccf-primary-dark: #2a8bb0; --ccf-primary-glow: rgba(56, 161, 199, 0.5); --ccf-white: #ffffff; --ccf-black: #0a0a0a; --ccf-gray: #f8f9fa; } * { margin: 0; padding: 0; box-sizing: border-box; } .ccf-event-page { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--ccf-white); overflow-x: hidden; color: var(--ccf-black); } /* Full-width override */ .ast-separate-container .ast-article-single, .ast-separate-container .ast-article-post, .ast-separate-container #primary, #primary.content-area, .site-content .ast-container, .ast-container, .site-main, article.tribe_events { max-width: 100% !important; width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; margin-left: 0 !important; margin-right: 0 !important; } .ast-separate-container .ast-article-single, .ast-separate-container .ast-article-post { background: transparent !important; padding: 0 !important; } .ccf-event-page { width: 100vw; margin-left: calc(-50vw + 50%); position: relative; } /* Hero Section */ .ccf-hero { position: relative; min-height: auto; padding: 20px 0; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(135deg, #ffffff 0%, #f0f9fc 30%, #e1f3fa 60%, #c9ebf7 100%); } .ccf-hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 20% 80%, rgba(56, 161, 199, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(56, 161, 199, 0.1) 0%, transparent 50%); animation: gradientMove 15s ease-in-out infinite; pointer-events: none; } @keyframes gradientMove { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-1%, 3%) rotate(-5deg); } } /* Particles */ .ccf-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; } .ccf-particle { position: absolute; width: 10px; height: 10px; background: var(--ccf-primary); border-radius: 50%; opacity: 0.4; animation: float 20s infinite ease-in-out; } .ccf-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; } .ccf-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 20s; width: 15px; height: 15px; } .ccf-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 28s; } .ccf-particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 22s; width: 8px; height: 8px; } .ccf-particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 18s; } .ccf-particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 24s; width: 12px; height: 12px; } .ccf-particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 26s; } .ccf-particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 21s; width: 6px; height: 6px; } @keyframes float { 0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 0.3; } 90% { opacity: 0.3; } 100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; } } /* Hero Content */ .ccf-hero-content { position: relative; z-index: 10; text-align: center; padding: 60px 40px; max-width: 900px; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 30px; border: 1px solid rgba(56, 161, 199, 0.2); box-shadow: 0 25px 50px rgba(56, 161, 199, 0.15); animation: heroCardAppear 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(50px) scale(0.95); } @keyframes heroCardAppear { to { opacity: 1; transform: translateY(0) scale(1); } } /* Back Link */ .ccf-back-link { white-space: nowrap; position: absolute; top: 30px; left: 30px; z-index: 100; display: inline-flex; align-items: center; gap: 10px; color: var(--ccf-black); text-decoration: none; font-size: 12px; font-weight: 500; padding: 8px 16px; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border-radius: 50px; border: 1px solid rgba(56, 161, 199, 0.3); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); } .ccf-back-link:hover { background: var(--ccf-primary); color: var(--ccf-white); transform: translateX(-5px); } /* Category Badge */ .ccf-category-badge { display: inline-block; padding: 8px 24px; background: var(--ccf-primary); color: var(--ccf-white); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; border-radius: 50px; margin-bottom: 30px; } /* Hero Title */ .ccf-hero-title { font-size: clamp(1.75rem, 4.2vw, 3.15rem); font-weight: 800; color: var(--ccf-black); line-height: 1.1; margin-bottom: 17px; background: linear-gradient(135deg, var(--ccf-black) 0%, var(--ccf-primary) 50%, var(--ccf-black) 100%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 4s linear infinite; } @keyframes shimmer { 0% { background-position: 0% center; } 100% { background-position: 200% center; } } /* Date Items */ .ccf-hero-date { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 30px; } .ccf-date-item { display: flex; flex-direction: column; align-items: center; padding: 14px 21px; background: rgba(56, 161, 199, 0.2); border-radius: 16px; border: 1px solid rgba(56, 161, 199, 0.3); } .ccf-date-item span:first-child { font-size: 1.75rem; font-weight: 800; color: var(--ccf-primary-dark); } .ccf-date-item span:last-child { font-size: 0.85rem; color: rgba(0, 0, 0, 0.6); text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; } /* Scroll Indicator */ .ccf-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(0, 0, 0, 0.5); font-size: 12px; letter-spacing: 2px; animation: bounce 2s infinite; } .ccf-scroll-indicator .mouse { width: 24px; height: 40px; border: 2px solid rgba(56, 161, 199, 0.5); border-radius: 12px; position: relative; } .ccf-scroll-indicator .mouse::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--ccf-primary); border-radius: 2px; animation: scrollWheel 2s infinite; } @keyframes scrollWheel { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; } 50% { transform: translateX(-50%) translateY(10px); opacity: 0; } } @keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } } /* Countdown Section */ .ccf-countdown-section { padding: 14px 20px; background: linear-gradient(180deg, var(--ccf-black) 0%, #111 100%); position: relative; } .ccf-countdown-title { text-align: center; color: var(--ccf-white); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 5px; margin-bottom: 17px; } .ccf-countdown { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; } .ccf-countdown-item { display: flex; flex-direction: column; align-items: center; gap: 10px; } .ccf-flip-card { width: 42px; height: 49px; perspective: 1000px; } .ccf-flip-card-inner { width: 100%; height: 100%; background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; color: var(--ccf-white); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); border: 1px solid rgba(56, 161, 199, 0.3); } .ccf-countdown-label { font-size: 0.75rem; font-weight: 600; color: var(--ccf-primary); text-transform: uppercase; letter-spacing: 3px; } /* Image Section */ .ccf-image-section { padding: 14px 20px; background: var(--ccf-white); position: relative; overflow: hidden; } .ccf-image-container { max-width: 500px; margin: 0 auto; opacity: 0; transform: translateY(80px) scale(0.9); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); } .ccf-image-container.visible { opacity: 1; transform: translateY(0) scale(1); } .ccf-image-frame { position: relative; padding: 10px; background: linear-gradient(135deg, var(--ccf-primary) 0%, var(--ccf-primary-dark) 100%); border-radius: 12px; box-shadow: 0 50px 100px rgba(56, 161, 199, 0.3); } .ccf-event-image { width: 100%; height: auto; border-radius: 16px; display: block; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); } .ccf-image-frame:hover .ccf-event-image { transform: scale(1.02); } .ccf-shape { position: absolute; border-radius: 50%; background: var(--ccf-primary); opacity: 0.1; z-index: -1; } .ccf-shape-1 { width: 300px; height: 300px; top: -100px; right: -100px; } .ccf-shape-2 { width: 200px; height: 200px; bottom: -50px; left: -50px; } /* Info Cards Section */ .ccf-info-section { padding: 14px 20px; background: linear-gradient(180deg, var(--ccf-gray) 0%, var(--ccf-white) 100%); } .ccf-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; } .ccf-info-card { position: relative; padding: 40px; background: var(--ccf-white); border-radius: 12px; border: 1px solid rgba(0, 0, 0, 0.05); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); overflow: hidden; opacity: 0; transform: translateY(50px); } .ccf-info-card.visible { opacity: 1; transform: translateY(0); } .ccf-info-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--ccf-primary), var(--ccf-primary-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); } .ccf-info-card:hover::before { transform: scaleX(1); } .ccf-info-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(56, 161, 199, 0.15); } .ccf-info-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--ccf-primary) 0%, var(--ccf-primary-dark) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 17px; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); } .ccf-info-card:hover .ccf-info-icon { transform: scale(1.1) rotate(5deg); box-shadow: 0 15px 30px var(--ccf-primary-glow); } .ccf-info-icon svg { width: 32px; height: 32px; color: var(--ccf-white); } .ccf-info-label { font-size: 0.75rem; font-weight: 700; color: var(--ccf-primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; } .ccf-info-value { font-size: 1.3rem; font-weight: 700; color: var(--ccf-black); line-height: 1.4; } /* Description Section */ .ccf-description-section { padding: 14px 20px; background: var(--ccf-white); } .ccf-description-container { max-width: 800px; margin: 0 auto; opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); } .ccf-description-container.visible { opacity: 1; transform: translateY(0); } .ccf-section-title { font-size: 0.85rem; font-weight: 700; color: var(--ccf-primary); text-transform: uppercase; letter-spacing: 4px; margin-bottom: 30px; display: flex; align-items: center; gap: 10px; } .ccf-section-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--ccf-primary) 0%, transparent 100%); } .ccf-description-content { font-size: 1.2rem; line-height: 2; color: #444; } .ccf-description-content p { margin-bottom: 1.5rem; } .ccf-description-content h2, .ccf-description-content h3 { color: var(--ccf-black); margin: 2rem 0 1rem; } /* CTA Section */ .ccf-cta-section { padding: 14px 20px; background: linear-gradient(135deg, var(--ccf-black) 0%, #1a1a2e 100%); text-align: center; position: relative; overflow: hidden; } .ccf-cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 70%, var(--ccf-primary-glow) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(56, 161, 199, 0.2) 0%, transparent 50%); animation: ctaGlow 8s ease-in-out infinite; } @keyframes ctaGlow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } } .ccf-cta-content { position: relative; z-index: 1; } .ccf-cta-text { font-size: 1.75rem; font-weight: 800; color: var(--ccf-white); margin-bottom: 20px; } .ccf-cta-subtext { font-size: 1.1rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 40px; } .ccf-cta-button { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 20px 50px; font-size: 1.1rem; font-weight: 700; text-decoration: none; color: var(--ccf-white); background: linear-gradient(135deg, var(--ccf-primary) 0%, var(--ccf-primary-dark) 100%); border-radius: 60px; overflow: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 20px 40px var(--ccf-primary-glow); } .ccf-cta-button:hover { transform: scale(1.05); box-shadow: 0 30px 60px var(--ccf-primary-glow); color: var(--ccf-white); } .ccf-cta-button svg { width: 20px; height: 20px; transition: transform 0.3s ease; } .ccf-cta-button:hover svg { transform: translateX(5px); } .ccf-price-badge { display: inline-block; padding: 12px 30px; background: rgba(56, 161, 199, 0.2); border: 2px solid var(--ccf-primary); border-radius: 50px; color: var(--ccf-primary-light); font-size: 1.5rem; font-weight: 800; margin-bottom: 30px; } /* Venue Section */ .ccf-venue-section { padding: 14px 20px; background: var(--ccf-gray); } .ccf-venue-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .ccf-venue-info { opacity: 0; transform: translateX(-50px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); } .ccf-venue-info.visible { opacity: 1; transform: translateX(0); } .ccf-venue-name { font-size: 1.75rem; font-weight: 800; color: var(--ccf-black); margin-bottom: 20px; } .ccf-venue-address { font-size: 1.2rem; color: #666; line-height: 1.8; margin-bottom: 30px; } .ccf-map-link { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; background: var(--ccf-primary); color: var(--ccf-white); text-decoration: none; font-weight: 600; border-radius: 12px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); } .ccf-map-link:hover { background: var(--ccf-primary-dark); transform: translateY(-3px); color: var(--ccf-white); } .ccf-map-container { height: 400px; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1); opacity: 0; transform: translateX(50px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); } .ccf-map-container.visible { opacity: 1; transform: translateX(0); } .ccf-map-container iframe { width: 100%; height: 100%; border: none; } /* Related Events */ .ccf-related-section { padding: 14px 20px; background: var(--ccf-white); } .ccf-related-header { text-align: center; margin-bottom: 60px; } .ccf-related-title { font-size: 1.4rem; font-weight: 800; color: var(--ccf-black); } .ccf-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; } .ccf-related-card { background: var(--ccf-white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); text-decoration: none; display: block; } .ccf-related-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(56, 161, 199, 0.2); } .ccf-related-image { height: 200px; background-size: cover; background-position: center; } .ccf-related-content { padding: 25px; } .ccf-related-date { font-size: 0.85rem; color: var(--ccf-primary); font-weight: 600; margin-bottom: 10px; } .ccf-related-name { font-size: 1.2rem; font-weight: 700; color: var(--ccf-black); line-height: 1.4; } /* Responsive */ @media (max-width: 1024px) { .ccf-venue-container { grid-template-columns: 1fr; } .ccf-map-container { height: 300px; } } @media (max-width: 768px) { .ccf-hero-content { padding: 40px 25px; margin: 20px; } .ccf-flip-card { width: 80px; height: 100px; } .ccf-flip-card-inner { font-size: 1.75rem; } .ccf-info-card { padding: 30px; } .ccf-cta-text { font-size: 1.8rem; } .ccf-venue-name { font-size: 1.8rem; } } @media (max-width: 480px) { .ccf-back-link { white-space: nowrap; top: 15px; left: 15px; padding: 10px 16px; font-size: 12px; } .ccf-countdown { gap: 10px; } .ccf-flip-card { width: 65px; height: 80px; } .ccf-flip-card-inner { font-size: 1.4rem; } } .ccf-stagger-1 { transition-delay: 0.1s; } .ccf-stagger-2 { transition-delay: 0.2s; } .ccf-stagger-3 { transition-delay: 0.3s; } .ccf-stagger-4 { transition-delay: 0.4s; }