/* Component Styles */

/* Section Titles and Content */
.section-title {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-description {
    color: #000;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

/* Device Showcase */
.phone-container {
    width: 200px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.app-text {
    color: white;
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    line-height: 1.2;
}

/* Scroll Indicators */
.scroll-indicator,
.scroll-action { display: none; }

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid #228B22;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

.scroll-arrow.up {
    transform: rotate(135deg);
}

.scroll-text {
    color: #228B22;
    font-weight: 600;
    font-size: 0.9rem;
    max-width: 200px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(-10px) rotate(-45deg);
    }
    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

.scroll-arrow.up {
    animation-name: bounceUp;
}

@keyframes bounceUp {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(135deg);
    }
    40% {
        transform: translateY(10px) rotate(135deg);
    }
    60% {
        transform: translateY(5px) rotate(135deg);
    }
}

/* Contextual Section */
.contextual-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
}

.brand-title { display: none; }

.brand-description { display: none; }

/* Footer */
.footer-content { display: none; }

.privacy-link {
    color: white;
    text-decoration: none;
}

.privacy-link:hover {
    color: white;
}

/* Footer spacing override */
.col2-footer p {
    margin-bottom: 0;
}

.col2-footer a {
    margin: 0;
}

/* Hover and Interactive States */
.phone-container:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(34, 139, 34, 0.3);
}





/* Responsive adjustments for components */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .phone-container {
        width: 160px;
        height: 320px;
        padding: 16px;
    }
    
    .app-text {
        font-size: 1.5rem;
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
    
    .brand-description {
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}
