/* SEO Hidden Page Styles */

/* Hide the page completely from users when loaded via iframe */
body.seo-hidden {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -9999 !important;
}

/* Show content when opened directly */
body:not(.seo-hidden) {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: auto !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Main Title Styling */
body:not(.seo-hidden) .main-title {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    color: #222222;
    margin: 60px 0 80px 0;
    line-height: 1.2;
}

/* Content Section Styling */
body:not(.seo-hidden) .content-section {
    margin-bottom: 80px;
}

body:not(.seo-hidden) .section-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

body:not(.seo-hidden) .text-content {
    flex: 1;
}

body:not(.seo-hidden) .image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section Headings */
body:not(.seo-hidden) h2 {
    font-size: 32px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Section Text */
body:not(.seo-hidden) p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Lists Styling */
body:not(.seo-hidden) .benefits-list,
body:not(.seo-hidden) .target-audience-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

body:not(.seo-hidden) .benefits-list li,
body:not(.seo-hidden) .target-audience-list li {
    font-size: 18px;
    color: #555555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

body:not(.seo-hidden) .benefits-list li:before,
body:not(.seo-hidden) .target-audience-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #A2D2FF;
    font-weight: bold;
    font-size: 20px;
}

body:not(.seo-hidden) strong {
    color: #222222;
    font-weight: 600;
}

/* Section Images */
body:not(.seo-hidden) .section-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Filter Grid */
body:not(.seo-hidden) .filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 400px;
}

body:not(.seo-hidden) .filter-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

body:not(.seo-hidden) .filter-image:hover {
    transform: scale(1.05);
}

/* Container */
body:not(.seo-hidden) .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body:not(.seo-hidden) .main-title {
        font-size: 36px;
        margin: 40px 0 60px 0;
    }
    
    body:not(.seo-hidden) .section-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    body:not(.seo-hidden) h2 {
        font-size: 28px;
    }
    
    body:not(.seo-hidden) p {
        font-size: 16px;
    }
    
    body:not(.seo-hidden) .filter-grid {
        max-width: 300px;
    }
}

/* Ensure iframe is completely hidden */
iframe[src*="selfie-booth.html"] {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    border: none !important;
    z-index: -9999 !important;
}
