/*
Theme Name: SKG POC Theme
Description: A blank theme for Saham Capital Gestion Chatbot POC
Version: 1.0
Author: Digital Founders
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f6f6f6;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #c0c0c0;
}

.logo-container {
    position: absolute;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo {
    max-height: 120px;
    max-width: 300px;
    width: auto;
    height: auto;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-logo {
    max-height: 120px;
    max-width: 300px;
    width: auto;
    height: auto;
}

.centered-content {
    text-align: center;
    margin-top: 2rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
}
