/* --- Global Styles --- */
body {
    background-color: #1a0a20; /* Dark background */
    font-family: 'Press Start 2P', cursive;
    color: #e2c0e9; /* Light purple text */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.main-wrapper {
    width: 100%;
    max-width: 1400px; /* Max width for the content area */
    padding: 20px 0;
    box-sizing: border-box;
}

h1, h2, h3 {
    margin: 0;
    letter-spacing: 1px;
}

a {
    color: #f7e7fa;
    text-decoration: none;
}

/* --- Top Navigation --- */
.top-nav {
    background-color: #2b3a4c; /* Darker blue for banner */
    border-bottom: 2px solid #5a7d9f; /* Lighter blue border */
    width: 100%;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 0 #1a0a20;
}

.logo {
    font-size: 1.2em;
    color: #cc6680; /* Pink accent */
}

.nav-links a {
    margin-left: 20px;
    font-size: 0.8em;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #cc6680;
}

/* --- Section Titles --- */
.section-title {
    font-size: 1.5em;
    text-align: center;
    color: #e2c0e9;
    padding: 30px 0;
    text-shadow: 2px 2px #412a4b;
}

.section-title-sub {
    font-size: 1.1em;
    color: #cc6680;
    padding: 20px 0 10px 40px;
}

/* 1. --- Intro Section (The Large Header Block) --- */
.intro-section {
    background-color: #2b3a4c; /* Darker blue for banner */
    border: 5px solid #5d3d6b;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 8px 8px 0 #1a0a20;
}

.intro-left {
    flex: 1;
    padding-right: 50px;
}

.main-title {
    font-size: 3em;
    line-height: 1.1;
    color: #f7e7fa; /* White/Bright Pink text */
    text-shadow: 4px 4px #cc6680; /* Pink shadow */
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background-color: #cc6680; /* Pink button */
    border: 3px solid #f7e7fa;
    color: #1a0a20;
    padding: 15px 25px;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 2px 2px 0 #f7e7fa;
    margin-bottom: 20px;
}

.main-image-placeholder {
    width: 450px;
    height: 300px;
    background-color: #e2c0e9; /* Light purple photo frame */
    border: 5px solid #f7e7fa;
    box-shadow: 4px 4px 0 #cc6680;
    margin-bottom: 10px;
}

.web-catalog-box {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #cc6680;
    border: 2px solid #f7e7fa;
    color: #1a0a20;
    padding: 10px 15px;
    font-size: 0.7em;
    transform: rotate(5deg);
    box-shadow: 2px 2px 0 #f7e7fa;
}

.side-info-grid {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.info-box {
    background-color: #2b1432;
    border: 2px dashed #e2c0e9;
    padding: 10px;
    font-size: 0.7em;
    color: #e2c0e9;
    width: 150px;
    text-align: center;
}

/* 2. --- Process Section (Three cards) --- */
.process-section {
    background-color: #1a0a20;
    padding: 20px 40px;
    margin-bottom: 40px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.process-card {
    background-color: #2b1432;
    border: 2px solid #5d3d6b;
    padding: 20px;
    text-align: center;
    box-shadow: 4px 4px 0 #5d3d6b;
}

.process-card h3 {
    color: #cc6680;
    margin: 10px 0;
    font-size: 1em;
}

.process-card p {
    font-size: 0.7em;
    margin: 0;
    color: #e2c0e9;
}

.icon-placeholder {
    font-size: 2em;
    color: #f7e7fa;
    background-color: #5d3d6b;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 10px;
    border: 2px solid #e2c0e9;
}

/* 3. --- Product Listing --- */
.product-listing {
    background-color: #2b1432;
    border: 2px solid #5d3d6b;
    margin: 0 40px;
    padding: 20px;
}

.product-card {
    display: flex;
    gap: 30px;
    background-color: #1a0a20;
    border: 2px solid #cc6680;
    padding: 20px;
}

.product-image-placeholder {
    width: 150px;
    height: 150px;
    background-color: #e2c0e9;
    border: 3px solid #f7e7fa;
    flex-shrink: 0;
}

.product-details h3 {
    color: #cc6680;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.product-details p {
    font-size: 0.8em;
    color: #e2c0e9;
    margin: 0;
}

/* --- Footer --- */
.site-footer {
    background-color: #2b1432;
    border-top: 3px solid #5d3d6b;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 0.7em;
    margin-top: 40px;
}

/* --- Responsiveness --- */
@media (max-width: 1000px) {
    .intro-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        margin: 0 10px 40px 10px;
    }
    .intro-left {
        padding-right: 0;
        text-align: center;
    }
    .main-image-placeholder {
        width: 100%;
        max-width: 400px;
        height: 250px;
        margin-top: 20px;
    }
    .web-catalog-box {
        top: 20px;
        right: 20px;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .product-listing {
        margin: 0 10px;
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 2em;
    }
    .product-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .product-image-placeholder {
        margin: 0 auto;
    }
}
