/* Michael Smerconish Page Styles */

/* Base Styles Override */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
}

.subtitle {
    color: #a0aec0;
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
}

.navigation {
    margin-top: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.smerconish-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3182ce 100%);
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.quote-overlay {
    position: absolute;
    top: 15%;
    right: 5%;
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.2;
    transform: rotate(-12deg);
    max-width: 300px;
}

.floating-quote {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #63b3ed;
    backdrop-filter: blur(10px);
    font-weight: 300;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.champion-badge {
    display: inline-block;
    background: linear-gradient(45deg, #63b3ed, #4299e1);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(99, 179, 237, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(45deg, #ffffff, #e2e8f0, #cbd5e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #cbd5e0;
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #63b3ed;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #cbd5e0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Video Showcase */
.video-showcase {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.video-showcase h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.video-intro {
    text-align: center;
    color: #cbd5e0;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1rem;
}

/* Video Wrapper - Fixed Size with Mobile Responsiveness */
.video-wrapper-fixed {
    width: 500px;
    height: 280px; /* Keep the fixed height that works! */
    position: relative;
    margin: 0 auto 1.5rem auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.smerconish-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.smerconish-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile responsiveness - scale down the fixed dimensions */
@media (max-width: 768px) {
    .video-wrapper-fixed {
        width: 90vw; /* 90% of viewport width */
        height: calc(90vw * 0.56); /* Maintain 16:9 ratio */
        max-width: 400px;
        max-height: 225px;
    }
}

.video-description {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.7;
    text-align: center;
}

/* Evolution Timeline */
.evolution-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #f7fafc, #edf2f7);
    position: relative;
}

.evolution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #718096;
    font-size: 1.3rem;
    margin-bottom: 5rem;
    font-style: italic;
    position: relative;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #63b3ed, #4299e1, #3182ce);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 24px;
    background: #4299e1;
    border: 6px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 45%;
    border-left: 5px solid #63b3ed;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.timeline-period {
    color: #4299e1;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
}

/* Why Michael Section */
.why-michael-section {
    padding: 8rem 0;
    background: white;
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.insight-card {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #63b3ed, #4299e1);
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff, #f7fafc);
}

.insight-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: block;
}

.insight-card h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.insight-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Testament Section */
.testament-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #edf2f7, #e2e8f0);
    position: relative;
}

.testament-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.testament-header {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.testament-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #3182ce;
}

.testament-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.testament-icon {
    font-size: 3.5rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.testament-body {
    padding: 4rem;
}

.testament-body p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 2rem;
}

.testament-signature {
    text-align: center;
    margin-top: 3rem;
    color: #718096;
    font-size: 1.1rem;
    font-style: italic;
}

/* Message Section */
.message-section {
    padding: 8rem 0;
    background: white;
}

.message-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.message-point {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 3rem;
    border-radius: 20px;
    border-left: 6px solid #4299e1;
    transition: all 0.3s ease;
}

.message-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.message-point h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.message-point p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

.message-cta {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.message-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.message-cta h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.message-cta p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
}

/* Platforms Section */
.platforms-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.platform-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-top: 4px solid #4299e1;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.platform-logo {
    flex-shrink: 0;
}

.platform-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.platform-icon {
    font-size: 3.5rem;
    color: #4299e1;
}

.platform-info h3 {
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.platform-info p {
    color: #718096;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.platform-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem !important;
}

.platform-link {
    color: #4299e1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.platform-link:hover {
    color: #3182ce;
    background: rgba(66, 153, 225, 0.2);
    transform: translateX(5px);
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.final-cta > p {
    font-size: 1.3rem;
    color: #cbd5e0;
    margin-bottom: 4rem;
    position: relative;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.cta-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #63b3ed;
    font-family: 'Playfair Display', serif;
}

.cta-option p {
    margin-bottom: 2rem;
    color: #e2e8f0;
    line-height: 1.7;
}

.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #4299e1, #3182ce);
    color: white;
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(66, 153, 225, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #63b3ed;
    border: 2px solid #63b3ed;
}

.btn-secondary:hover {
    background: #63b3ed;
    color: white;
    transform: translateY(-3px);
}

.btn-tertiary {
    background: linear-gradient(45deg, #38b2ac, #319795);
    color: white;
    box-shadow: 0 8px 20px rgba(56, 178, 172, 0.3);
}

.btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(56, 178, 172, 0.4);
}

/* Footer */
.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    line-height: 1.6;
    color: #a0aec0;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #63b3ed;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem !important;
        margin-right: 0 !important;
        text-align: left !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    
    .timeline-marker {
        left: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .message-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .video-showcase {
        padding: 1.5rem;
    }
}
