/* --- General Styles & Variables --- */
:root {
    --dark-blue: #0f172a; /* The main background color */
    --light-text: #f8fafc; /* For headlines and body text */
    --glow-color: rgba(2, 132, 199, 0.6); /* The vibrant blue for the glow */
}

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

body {
    background-color: var(--dark-blue);
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

/* --- Header and Logo --- */
header {
    padding: 2rem 5%;
}

.logo {
    display: flex; /* Aligns items side-by-side */
    align-items: center; /* Vertically centers the text with the image */
    gap: 0.5rem; /* Adds a nice space between the image and the text */
}

.logo img {
    height: 120px; /* You can adjust this value to make the logo bigger or smaller */
    width: auto;  /* This makes sure the image doesn't get stretched */
}

.logo-title {
    font-size: 2rem;
    font-weight: 700;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    padding: 2rem 5%;
    gap: 2rem;
}

.hero-text {
    flex: 1; /* Takes up half the space */
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-image-container {
    flex: 1; /* Takes up the other half */
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    /* This box-shadow creates the blue glow effect */
    box-shadow: 0 0 100px 30px var(--glow-color);
    border-radius: 24px; /* Matches the image's border-radius */
}

.image-wrapper img {
    display: block;
    max-width: 450px;
    width: 100%;
    border-radius: 24px;
}


/* --- Responsive Design for Mobile --- */
@media (max-width: 768px) {
	header {
        display: flex;
        justify-content: center;
    }

	.logo {
        flex-direction: column;
    }

    .hero {
        flex-direction: column; /* Stack vertically on small screens */
        text-align: center;
    }

    .hero-text {
        margin-bottom: 3rem;
    }

    .hero-text h1 {
        font-size: 3rem; /* Smaller text for mobile */
    }
}