/* info-demo.css */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

body {
    background-color: #f5f7fa;
}

.fc-demo-parallax-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.fc-demo-parallax-bg {
    background-image: url('demo-bg.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

.fc-demo-content {
    position: relative;
    z-index: 1;
}

.fc-demo-header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    color: white;
}

.fc-demo-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.fc-demo-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.fc-demo-header p {
    font-size: 1.4rem;
    font-weight: 300;
}

.fc-demo-main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fc-demo-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.fc-demo-shops {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.fc-demo-shop {
    display: flex;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fc-demo-shop:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fc-demo-shop-content {
    flex: 1;
    padding: 2rem;
}

.fc-demo-shop-image {
    flex: 1;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.fc-demo-shop-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fc-demo-shop:hover .fc-demo-shop-image img {
    transform: scale(1.05);
}

.fc-demo-shop h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.fc-demo-shop p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.fc-demo-shop ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.fc-demo-shop li {
    margin-bottom: 0.5rem;
}

.fc-demo-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fc-demo-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #7886f0 0%, #8a5fc6 100%);
}

.fc-demo-cta-section {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 1rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fc-demo-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.fc-demo-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.fc-demo-main-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #50e3c2 0%, #3ac2a2 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.fc-demo-main-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #62e9cc 0%, #4cd0b3 100%);
}

.fc-demo-footer {
    background-color: #4a4a4a;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .fc-demo-shop {
        flex-direction: column;
    }

    .fc-demo-shop-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .fc-demo-header {
        padding: 3rem 1rem;
    }

    .fc-demo-header h1 {
        font-size: 2.5rem;
    }

    .fc-demo-header p {
        font-size: 1.2rem;
    }

    .fc-demo-main {
        padding: 1.5rem;
    }

    .fc-demo-shop-content {
        padding: 1.5rem;
    }

    .fc-demo-shop h2 {
        font-size: 1.6rem;
    }

    .fc-demo-cta-section {
        padding: 2rem 1rem;
    }

    .fc-demo-cta-section h2 {
        font-size: 1.8rem;
    }

    .fc-demo-main-cta-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}