/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI Variable', 'Segoe UI', Helvetica, sans-serif; /* Updated font family */
    color: #fff;
    background-color: #000; /* Set the main background color to black */
}

/* Header Styles */
header {
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: #000; /* Matches hero background */
}

.logo img {
    width: 300px;
    margin-left: 20%;
}


/* Hero Section Styles */
#hero {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    color: #fff;
    padding: 110px 0 160px 20px;
    min-height: 60vh;
    background-color: #000; /* Black background */
}

.hero-content {
    margin-left: 4%;    
}

#hero h1 {
    font-size: 6em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: left; /* Align text to the left */
    margin-bottom: 20px;
    font-family: 'Segoe UI Variable', 'Segoe UI', Helvetica, sans-serif; /* Font for heading */
}

#hero p {
    font-size: 2em;
    font-weight: 400;
    color: #aaa; /* Light gray for contrast */
    text-align: left; /* Align text to the left */
    font-family: 'Segoe UI Variable', 'Segoe UI', Helvetica, sans-serif; /* Font for paragraph */
}

#hero p span {
    color: #ff0055; /* Pinkish-red color for emphasis on "eyes of the world" */
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.2em; /* Scale down for smaller screens */
    }
    #hero p {
        font-size: 1em;
    }
    header {
        padding: 0;
    }
    .logo img {
        width: 225px;
        height: unset;
    }
}



/*****************************************************/




/* About Section Styles */
#about {
    background-image: url('images/about.png'); /* Set the background image */
    background-size: cover; /* Ensure the image covers the entire section */
    background-position: center; /* Center the background image */
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #000; /* Dark text color for contrast */
    min-height: 60vh;
}

.about-content {
    max-width: 700px; /* Constrain text width */
    color: #000; /* Dark text color */
    margin-left: 4%;
}

#about h2 {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    display: flex;
    flex-direction: column;
	
}

.small-text {
    font-size: 1.2em;
    font-weight: 400; /* Smaller "At" text */
}

.main-text {
    font-size: 2.4em; /* Larger, bolded "Everything Cartoon" text */
    font-weight: 700;
}

#about p {
    font-size: 1.7em;
    font-weight: 400;
    color: #333;
    margin-top: 10px;
	
}

.highlight {
    color: #1e90ff; /* Light blue for "originality" */
    font-weight: 700; /* Emphasized for impact */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #about h2 .small-text {
        font-size: 1em;
    }
    #about h2 .main-text {
        font-size: 1em;
    }
    #about p {
        font-size: 1em;
    }
}


/*****************************************************/


/* CTA Section Styles */
#cta {
    background-color: #000; /* Black background */
    color: #fff;
    position: relative;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 30vh;
    overflow: hidden;
}

#cta::before {
    content: "";
    background-image: url(images/blue-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 17%;
    height: 90%;
    z-index: 1; /* Ensures the image stays visible in the background */
}

.cta-content {
    position: relative;
    z-index: 2; /* Places text above the background shape */
}

.cta-content p {
    font-size: 1.7em;
    font-weight: 400;
    max-width: 800px;
}

.highlight-green {
    color: #00cc66; /* Green color for "animations" */
    font-weight: 700;
}

.highlight-bold {
    font-weight: 700; /* Bold for "say it all" */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-content p {
        font-size: 1.2em;
    }
    #cta::before {
        width: 100px;
        height: 83px;
    }
}


















/* Services Section Styles */
#services {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    min-height: 200px;
}

.service-text {
    width: 45%;
    padding-left: 35px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h3 {
    font-size: 1.8em;
    font-weight: 200;
    line-height: 1.4;
    margin-bottom: 5px; /* Small space between lines */
}

.service-text p {
    font-size: 2.6em;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Service Thumbnail Styles */
.service-thumbnail {
    position: relative;
    width: 66.66%; /* Two-thirds of the screen width */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer; /* Show hand cursor on hover */
}

.service-thumbnail img {
    width: 100%; /* Full width to cover the two-thirds area */
    height: auto;
    display: block;
}



.play-button {
    position: absolute;
    color: #fff;
    font-size: 3em;
    opacity: 0.8;
    pointer-events: none; /* Ensure play button is non-interactive */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Center the play button over the thumbnail */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
    }

    .service-text,
    .service-thumbnail {
        width: 100%; /* Full width for mobile view */
        margin: 30px 0 0px 0;
    }

    .service-thumbnail {
        margin-top: 10px;
    }
}




/* Lightbox Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.modal-content iframe {
    width: 100%;
    height: 450px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2em;
    color: #fff;
    cursor: pointer;
}






/*****************************************************/



/* What We Do Section Styles */
#what-we-do {
    background-color: #000; /* Black background */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    min-height: 70vh;
}

.what-we-do-content p {
    font-size: 2em; /* Adjusted for larger text */
    line-height: 1.5;
    max-width: 900px; /* Slightly narrower for centered alignment */
    margin: 0 auto;
    padding: 0 20px; /* Horizontal padding for alignment */
}

/* Text Highlights */
.highlight-blue {
    color: #1e90ff; /* Blue for "Animation series" */
}

.highlight-orange {
    color: #ff9e0d; /* Orange for "explainer videos" */
}

.highlight-green {
    color: #00cc66; /* Green for "character designs" */
}

.highlight-pink {
    color: #ff5a87; /* Pink for "storyboards" */
}

.highlight-bold {
    font-weight: 700; /* Bold for "& so much more." */
}

/* Background Shape */
#what-we-do::before {
    content: "";
    background-image: url('images/fuchsia-shape.png'); /* Replace with the actual image file name */
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 250px;
    height: 220px;
    opacity: 0.9; /* Slight transparency if desired */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .what-we-do-content p {
        font-size: 1.2em; /* Smaller font on mobile */
    }
    #what-we-do::before {
        width: 180px;
        height: 180px;
    }
}




/*****************************************************/


/* Founder Section Styles */
#founder {
    display: flex;
    align-items: center;
    padding: 80px 40px;
    background-color: #fff;
    color: #000;
}

.founder-content {
    width: 70%;
    padding-right: 20px;
}

.founder-content h2 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.founder-content .intro {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: justify;
}

.founder-content p {
    font-size: 1.4em;
    line-height: 1.4;
    margin-bottom: 15px;
}

.founder-content .closing {
    font-size: 1.58em;
    font-weight: 700;
    color: #1e90ff;
    margin-top: 20px;
}

/* Highlight Colors */
.highlight-pink {
    color: #ff5a87;
}

.highlight-orange {
    color: #ff9e0d;
}

.highlight-green {
    color: #00cc66;
}

.highlight-blue {
    color: #1e90ff;
    font-weight: 700;
}

/* Founder Image Styling */
.founder-image {
    width: 45%; /* Adjust image container width to balance with text */
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image img {
    width: 80%; /* Scale the image within its container */
    height: auto;
    display: block;
}

/* Mobile View Adjustment */
@media (max-width: 768px) {
    #founder {
        flex-direction: column; /* Stack content vertically */
        text-align: center; /* Center-align text and image */
    }

    .founder-content {
        width: 100%; /* Full width for text */
        padding-right: 0; /* Remove right padding */
        margin-bottom: 20px; /* Add space below text */
    }

    .founder-image {
        width: 100%; /* Full width for image container */
    }

    .founder-image img {
        width: 60%; /* Reduce image size for mobile */
    }
    .founder-content h2 {
        font-size: 1.6em;
    }
    .founder-content .intro {
        font-size: 1em;
    }
    .founder-content p {
        font-size: 0.8em;
        text-align: justify;
    }
    .highlight-blue {
        width: 100%;
        display: block;
        font-size: 16px;
    }
   
}


/*****************************************************/




/* Footer Section Styling */
#footer-section {
    background-color: #000; /* Black background */
    color: #fff;
    padding: 40px 20px;
    position: relative;
    overflow: hidden; /* Keep background contained */
}

.container {
    max-width: 1200px; /* Central box container */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0 20px; /* Add some padding for spacing */
}

/* Top Area (Logo and Call to Action) */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: auto;
}

.logo-area img {
    width: 300px;
    height: auto;
}

.cta-area {
    max-width: 58%;
    text-align: center;
}

.cta-area h2 {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-area h2 .highlight {
    color: #ff0055; /* Highlight color for "Story" */
}

.cta-area p {
    font-size: 2em;
    font-weight: 400;
}

/* Connect and Create Area */
.connect-area {
    text-align: center;
    margin-top: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blue-splash img {
    width: 60px;
    height: auto;
    display: inline-block;
    margin-bottom: -10px;
}

.connect-area h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: #ff0055; /* Pink color for tagline */
    margin: 20px 0;
}

.contact-info {
    margin-top: 20px;
    width: 100%;
    margin-left: 18%;
}

.contact-info .social-icons {
    width: 100%;
    display: flex;
    gap: 18px;
}

.contact-info .social-icons a {
    font-size: 2.5em;
    color: #fff;
}

.contact-info .contact-details p {
    font-size: 1.8em;
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.contact-info .contact-details i {
    margin-right: 10px;
}

/* Orange Corner Background */
#footer-section::after {
    content: "";
    background-image: url(images/orange-corner-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 27%;
    height: 26%;
    z-index: 0;
}

.blue-splash {
    display: flex;
    width: 95%;
    }

.blue-splash img {
    width: 120px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .cta-area {
        margin-top: 20px;
        max-width: 100%;
    }
    .cta-area h2 {
        font-size: 2em;
    }
    .cta-area p {
        font-size: 1.2em;
    }

    .blue-splash img {
        width: 85px;
    }

    .connect-area h3 {
        font-size: 1.05em;
    }
    .logo-area img {
        width: 100px;
    }
    .contact-info .social-icons a {
        font-size: 2em;
    }
    .contact-info .contact-details p {
        font-size: 1em;
    }
}
