/* 
* Solve Hard Landing Page Styles
* A modern, clean design for a template-based platform
*/

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #4E54C8;
    --primary-light: #8F94FB;
    --primary-dark: #363795;
    --secondary-color: #FF6B6B;
    --dark-color: #2A2A2A;
    --light-color: #F8F9FA;
    --gray-color: #6C757D;
    --success-color: #28A745;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.section-padding {
    padding: 100px 0;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.section-subheading {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

/* Button styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    color: white;
    border-color: white;
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover, .btn-outline-light:focus {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== NAVIGATION ===== */
#mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #fff;
    transition: padding-top 0.3s, padding-bottom 0.3s;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

#mainNav .navbar-brand {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

#mainNav .navbar-nav .nav-item .nav-link {
    color: var(--dark-color);
    padding: 0 1rem;
    font-weight: 500;
    letter-spacing: 0.0625em;
    transition: color 0.3s ease;
}

#mainNav .navbar-nav .nav-item .nav-link:hover,
#mainNav .navbar-nav .nav-item .nav-link:active {
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    padding-top: 76px; /* Height of navbar */
}

.hero-content {
    padding: 2rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-image {
    text-align: center;
    margin-top: 2rem;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

/* ===== FEATURES SECTION ===== */
.feature-box {
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--gray-color);
}

/* ===== HOW IT WORKS SECTION ===== */
.step-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 60px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.step-container h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-container p {
    color: var(--gray-color);
}

.how-it-works-image {
    text-align: center;
}

/* ===== DESIGNER SECTION ===== */
.designer-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-item i {
    font-size: 1.25rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.feature-item p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== CONTACT FORM ===== */
.form-control, .form-select {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ced4da;
    margin-bottom: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(78, 84, 200, 0.25);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #f8f9fa;
}

.btn-dark.btn-social {
    height: 2.5rem;
    width: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 100%;
    transition: all 0.3s ease;
}

.btn-dark.btn-social:hover {
    transform: translateY(-5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 100px 0 50px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p.lead {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .step-container {
        padding-left: 50px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
} 