/* QRProfileLink Homepage Styles */

/* Base Styles */
:root {
    --primary-color: #4361ee;
    --primary-hover: #3a56d4;
    --secondary-color: #4cc9f0;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.qrpl-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.qrpl-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.qrpl-hero:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(76, 201, 240, 0.1);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.qrpl-hero:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    bottom: -50px;
    left: -50px;
    z-index: 0;
}

.qrpl-hero .qrpl-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.qrpl-hero-content {
    flex: 1;
    max-width: 600px;
}

.qrpl-hero-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.qrpl-hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

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

.qrpl-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
}

.qrpl-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.qrpl-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Styles */
.qrpl-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.qrpl-button-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(67, 97, 238, 0.25);
}

.qrpl-button-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(67, 97, 238, 0.3);
}

.qrpl-button-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.qrpl-button-secondary:hover {
    background-color: rgba(67, 97, 238, 0.05);
    transform: translateY(-2px);
}

.qrpl-button-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* How It Works Section */
.qrpl-how-it-works {
    padding: 80px 0;
    background-color: white;
}

.qrpl-how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.qrpl-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.qrpl-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.qrpl-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.qrpl-step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.qrpl-step h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.qrpl-step p {
    color: #666;
    line-height: 1.5;
}

/* Features Section */
.qrpl-features {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.qrpl-features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.qrpl-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.qrpl-feature {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.qrpl-feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.qrpl-feature-icon span {
    font-size: 28px;
    color: var(--primary-color);
}

.qrpl-feature h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.qrpl-feature p {
    color: #666;
    line-height: 1.5;
}

/* Call to Action Section */
.qrpl-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.qrpl-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.qrpl-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.qrpl-cta .qrpl-button {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.qrpl-cta .qrpl-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    .qrpl-hero .qrpl-container {
        flex-direction: column;
        text-align: center;
    }
    
    .qrpl-hero-content {
        margin-bottom: 40px;
    }
    
    .qrpl-hero-buttons {
        justify-content: center;
    }
    
    .qrpl-hero h1 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 767px) {
    .qrpl-steps {
        flex-direction: column;
    }
    
    .qrpl-step {
        max-width: 100%;
    }
    
    .qrpl-hero h1 {
        font-size: 2rem;
    }
    
    .qrpl-hero p {
        font-size: 1.1rem;
    }
    
    .qrpl-features h2,
    .qrpl-how-it-works h2,
    .qrpl-cta h2 {
        font-size: 1.8rem;
    }
}