/* Footer Styles - DorkVerse */

/* Footer container */
.footer {
    background-color: #111827; /* gray-900 */
    color: white;
    margin-top: 4rem;
}

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

/* Footer grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Footer brand section */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 2.25rem;
    width: auto;
}

.footer-tagline {
    color: #9ca3af; /* gray-400 */
    margin-top: 1rem;
    font-size: 0.875rem;
}

/* Social media links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: #9ca3af; /* gray-400 */
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-accent);
}

.footer-social i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer sections */
.footer-section h3 {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #9ca3af; /* gray-400 */
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #d1d5db; /* gray-300 */
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: white;
}

/* Newsletter section */
.footer-newsletter {
    margin-top: 1rem;
}

.footer-newsletter p {
    color: #9ca3af; /* gray-400 */
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem 0 0 0.375rem;
    background-color: #1f2937; /* gray-800 */
    border: 1px solid #374151; /* gray-700 */
    color: white;
    font-size: 0.875rem;
}

.newsletter-input:focus {
    outline: none;
    ring: 2px;
    ring-color: var(--primary-accent);
}

.newsletter-button {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 0.375rem 0.375rem 0;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
}

.newsletter-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.newsletter-button i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151; /* gray-700 */
    text-align: center;
}

.footer-copyright {
    color: #6b7280; /* gray-500 */
    font-size: 0.875rem;
}

/* Footer logo text styling */
.footer-dork-text {
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    dominant-baseline: middle;
    text-anchor: start;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-container {
        padding: 2rem 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-input,
    .newsletter-button {
        border-radius: 0.375rem;
    }
}
