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

/* Use Nunito from Google Fonts */
body, html {
    height: 100%;
    font-family: 'Nunito', sans-serif;
}

/* Main container */
.container {
    display: flex;
    height: 100vh;
    overflow: hidden; /* Prevent content overflow */
}

/* Left section for the text */
.left-section {
    background-color: #1d2b52; /* Navy Blue background */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Styling for the heading */
.left-section h1 {
    font-size: 40px;
    line-height: 1.2;
}

/* Thin text for "Welcome to" */
.left-section h1 .thin-text {
    font-weight: 300; /* Light weight for thinner text */
    display: block;
}

/* Bold text for "Star Design" */
.left-section h1 .bold-text {
    font-weight: 700; /* Bold weight for thicker text */
    display: block;
}

/* Under construction text */
.left-section .construction-text {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6); /* Slightly transparent text */
}

/* Right section for the mockup */
.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    padding: 20px; /* Adds padding around the mockup */
}

/* Ensure the image fits within the container */
.mockup {
    max-width: 100%;
    max-height: 90%;
    object-fit: contain; /* Scale the image properly */
    border-radius: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .mockup {
        max-width: 100%;
    }
}
