@import 'main.css';

/* App Download Hero Section */
.app-download-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    color: var(--text-dark);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.app-content {
    max-width: 800px;
    text-align: center;
    margin-bottom: 2rem;
}

.app-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.app-description {
    font-size: 1.2rem;
    margin: 2rem 0;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Feature List */
.app-features-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.app-feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 250px;
}

.app-feature-item i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    background-color: var(--primary-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.store-button {
    border: none;
    border-radius: 12px;
    padding: 0.5rem;
    background-color: transparent;
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: translateY(-5px);
}

.store-button img {
    height: 50px;
}

/* App Preview */
.app-preview {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshots-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.screenshot-container {
    width: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* App Interface */
.app-interface {
    padding: 20px;
    background: #f8f9fa;
    min-height: 700px;
}

.app-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 0;
    margin: -20px -20px 20px -20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-icon, .notification-icon {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.device-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.device-status.online {
    color: #4CAF50;
    display: flex;
    align-items: center;
}

.device-status.online::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    margin-right: 5px;
}

.power-circle {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.power-circle-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.35s;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke-dasharray: 616;
    stroke-dashoffset: 200;
}

.energy-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-header i {
    color: var(--secondary-color);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.mini-chart {
    height: 40px;
    background: linear-gradient(to right, #e3f2fd, var(--secondary-color));
    border-radius: 4px;
    opacity: 0.7;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.action-button {
    background: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.action-button i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.action-button span {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Features Detail Section */
.app-features-detail {
    padding: 6rem 0;
    background: var(--light-bg);
}

.app-features-detail h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-detail-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed);
}

.feature-detail-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-detail-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-download-hero {
        padding: 2rem 1rem;
    }
    
    .app-content h1 {
        font-size: 2.5rem;
    }
    
    .app-feature-item {
        width: 100%;
    }
    
    .screenshots-container {
        gap: 1rem;
    }
    
    .screenshot-container {
        width: 200px;
    }
} 