/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* ==========================================================================
   SHUAIBDEV CUSTOM HOMEPAGE STYLES
   ========================================================================== */

/* Hero Section */
.shuaibdev-hero {
    background-color: #0f172a; /* Deep, professional developer blue/dark */
    color: #ffffff;
    padding: 120px 20px;
    text-align: center;
}

.hero-container, .about-container, .projects-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3b82f6; /* Trustworthy blue */
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #334155;
}

.btn-secondary:hover {
    border-color: #cbd5e1;
    color: #ffffff;
}

/* About Section */
.shuaibdev-about {
    background-color: #ffffff;
    padding: 100px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

/* Projects Section Placeholder */
.shuaibdev-projects {
    background-color: #f8fafc;
    padding: 100px 20px;
}