/* 
 * Section Styles
 * Contains styles for various page sections
 */

/* About Section */
.about {
    position: relative;
    background: var(--background-color);
    z-index: 2;
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Project Section */
.projects {
    /* Any project section specific styles */
}

.project-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.project-tab {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.project-tab:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.project-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.project-tab:focus {
    box-shadow: 0 0 0 2px var(--background-color), 0 0 0 4px var(--primary-color);
    outline: none;
}

.project-tab.active:focus {
    box-shadow: 0 0 0 2px var(--background-color), 0 0 0 4px var(--primary-dark);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
}

.testimonials .section-header h2,
.testimonials .section-subtitle {
    color: white;
}

/* CTAs Section */
.ctas-section {
    background: var(--background-color);
    position: relative;
    z-index: 2;
}

/* Blog Section */
.blog {
    background: var(--surface-color);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact {
    background: var(--background-color);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-hover);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}
