/*
Theme Name: Disney+ Login Begin Guide
Theme URI: https://disneyplus-login-begin.local
Description: A complete user-help portal with guides, FAQs, device tutorials, and troubleshooting for Disney+ activation using Disneyplus.com Login/Begin
Version: 1.0
Author: Disney+ Help Team
Text Domain: disneyplus-theme
Tags: seo-optimized, faq, troubleshooting, device-guides, schema-markup

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 80px; /* Add padding to account for fixed header */
}

.container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.site-branding {
    text-align: left;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #000;
    text-decoration: none;
}

.site-description {
    font-size: 0.875rem;
    color: #666;
    margin: 5px 0 0;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    display: inline-block;
    margin-left: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s ease;
    display: block;
}

.main-navigation a:hover {
    color: #0063e1;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none;
}

.menu-toggle:focus {
    outline: none;
}

/* Mobile Menu Overlay */
#mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
}

/* Mobile Menu Panel */
#mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 280px;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 50;
    overflow-y: auto;
    padding-top: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

#mobile-menu .site-branding {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

#mobile-menu .site-title {
    font-size: 1.25rem;
}

#mobile-menu .site-description {
    font-size: 0.75rem;
}

#mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mobile-menu li {
    border-bottom: 1px solid #eee;
}

#mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

#mobile-menu a:hover {
    background-color: #f8f9fa;
    color: #0063e1;
}

/* Footer Menu Styles */
#footer-menu {
    list-style: none;
}

#footer-menu li {
    margin: 0 15px 10px;
}

#footer-menu a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer-menu a:hover {
    color: #fff;
}

/* Main Content Styles */
.site-main {
    padding: 30px 0;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
}

.entry-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #000;
}

.entry-content h3 {
    font-size: 1.25rem;
    margin: 20px 0 10px;
    color: #333;
}

.entry-content p {
    margin-bottom: 15px;
}

.entry-content ul,
.entry-content ol {
    margin: 15px 0 15px 30px;
}

.entry-content li {
    margin-bottom: 8px;
}

/* Front Page Specific Styles */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.meta-description {
    font-size: 1.1rem;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

.what-is-section,
.how-to-section,
.troubleshooting-section,
.devices-section,
.login-problems-section,
.faq-section,
.tips-section,
.disclaimer-section {
    background-color: #fff;
    padding: 40px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.what-is-section .container,
.how-to-section .container,
.troubleshooting-section .container,
.devices-section .container,
.login-problems-section .container,
.faq-section .container,
.tips-section .container,
.disclaimer-section .container {
    max-width: 950px;
}

.placeholder-image {
    background-color: #f0f0f0;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    border: 2px dashed #ccc;
    color: #999;
}

.troubleshooting-grid,
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.troubleshooting-item,
.problem-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.troubleshooting-item:hover,
.problem-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.device-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.device-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* FAQ Items */
.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 20px;
}

/* Footer Styles */
.site-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.widget {
    margin-bottom: 20px;
}

.widget-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a5568;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    margin-bottom: 10px;
}

.widget a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #fff;
}

.site-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    font-size: 0.875rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .site-branding {
        text-align: left;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .meta-description {
        font-size: 1rem;
    }
    
    .troubleshooting-grid,
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    body {
        padding-top: 70px;
    }
    
    #mobile-menu {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 1.25rem;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
    }
    
    #mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}