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

/* Scorpius Section */
.sf {
    background-image: url("http://www.smagicmakers.com/images/PNGs/Headers/section - scorpius.png");
    background-repeat: no-repeat;
    background-position: top center; /* Image starts from the top center */
    background-size: contain; /* Ensures the image fits within the section without cropping */
    background-color: #000; /* Fallback color in case the background image is not loaded */
    width: 100%;
    min-height: 100vh; /* Ensures the section fills the entire height of the viewport */
    display: flex;
    justify-content: center; /* Centers the container horizontally */
    padding: 20px;
}

/* Container for the Logo and Content */
.sf-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Ensures the content doesn’t stretch too wide */
    padding: 20px;
}

/* Logo Section */
.sf-logo {
    flex: 1;
    display: flex;
    justify-content: center; /* Centers logo horizontally within its square */
    padding-right: 20px; /* Adds padding between the logo and text */
}

.sf-logo img {
    max-width: 704px; /* Logo width as specified */
    width: 100%; /* Ensures responsiveness */
    height: auto; /* Maintains the aspect ratio */
}

/* Text Section */
.sf-text {
    flex: 1;
    color: white;
    font-family: 'Didact Gothic', 'Century Gothic', Verdana, sans-serif, Arial;
    text-align: left; /* Keeps text aligned left as in original layout */
    padding-left: 20px; /* Adds padding between the text and logo */
}

/* Heading Styling */
.sf-text h2 {
    font-size: 60px; /* Matches original heading size */
    font-weight: 900;
    margin-bottom: 20px;
}

/* Paragraph Styling */
.sf-text p {
    font-size: 36px; /* Matches original paragraph size */
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Button Styling */
.sf-text img {
    max-width: 315px; /* Matches the size of the button */
    width: 100%; /* Ensures responsiveness */
    height: auto;
    display: inline-block;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sf-logo img {
        max-width: 600px; /* Slightly smaller logo for medium screens */
    }

    .sf-text h2 {
        font-size: 50px; /* Adjust heading size */
    }

    .sf-text p {
        font-size: 32px; /* Adjust paragraph size */
    }
}

@media (max-width: 768px) {
    .sf-logo img {
        max-width: 400px; /* Further scaling down the logo */
    }

    .sf-text h2 {
        font-size: 40px;
    }

    .sf-text p {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .sf-logo img {
        max-width: 300px;
    }

    .sf-text h2 {
        font-size: 32px;
    }

    .sf-text p {
        font-size: 24px;
    }
}
