﻿/* products-landing.css
  Styles SPECIFIC to the main product selection page.
  This file should be linked AFTER products.css on the landing page.
*/

.products-page-body {
    color: #f0f0f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
/*    padding: 40px;*/
    position: relative;
    /*    overflow: hidden;*/
    overflow-x: hidden;
    background-color: #0a0a0a;
}

    .products-page-body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        background-size: 100% 100%;
        animation: gradientShift 20s ease infinite;
    }

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.products-container {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 40px;
}
.products-logo {
    /* Make it a block element to allow for margin auto */
    display: block;
    /* Center the block horizontally */
    margin-left: auto;
    margin-right: auto;
    /* Ensure the image scales down on small screens */
    width: 100%;
    /* Set a maximum size for larger screens */
    max-width: 350px;
    /* Keep your original bottom margin */
    margin-bottom: 30px;
}


.products-container h1 {
/*    font-size: 3rem;*/
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f093fb, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-container .slogan {
    font-size: 1.4rem;
    margin-bottom: 25px;
    opacity: 0.7;
    font-style: italic;
    color: #ccc;
}

.products-container p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: linear-gradient(145deg, var(--primary-accent), var(--tertiary-accent));
    color: var(--text-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    border: 2px solid var(--light-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px var(--shadow-color);
    }

    .product-card .icon {
        font-size: 4rem;
        margin-bottom: 20px;
        color: var(--secondary-accent);
        text-shadow: 0 0 20px var(--glow-color);
    }

    .product-card h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .product-card .description {
        font-size: 1rem;
        opacity: 0.9;
        line-height: 1.6;
    }

    /* Theme Overrides for each card on the landing page */
    .product-card.theme-digital-business {
        --text-color: #3E2723;
        --primary-accent: #bd422b;
        --secondary-accent: #ccb04d;
        --tertiary-accent: #ffbe28;
        --light-border: rgba(255, 255, 255, 0.4);
        --shadow-color: rgba(166, 106, 79, 0.4);
        --glow-color: rgba(166, 106, 79, 0.5);
    }

    .product-card.theme-office-building {
        --text-color: black;
        --primary-accent: #81783e;
        --secondary-accent: #adaa97;
        --tertiary-accent: #ccc;
        --light-border: rgba(255, 255, 255, 0.4);
        --shadow-color: rgba(46, 125, 50, 0.4);
        --glow-color: rgba(46, 125, 50, 0.5);
    }

    .product-card.theme-conference {
        --text-color: black;
        --primary-accent: #2f51ed;
        --secondary-accent: #2854cc;
        --tertiary-accent: #a9c3e5;
        --light-border: rgba(255, 255, 255, 0.2);
        --shadow-color: rgba(240, 147, 251, 0.3);
        --glow-color: rgba(240, 147, 251, 0.5);
    }
