/* =========================================
   BASE STYLES & TYPOGRAPHY
   ========================================= */
html, body {
    margin: 0;
    padding: 0;
}

html {
    font-family: "Plus Jakarta Sans", sans-serif, system-ui;
    font-optical-sizing: auto;
    font-size: 14px;
}

body {
    background-color: #fbfbfb;
}

.inter {
    font-family: "Inter", sans-serif, system-ui;
    font-optical-sizing: auto;
}

.jakarta-sans-bold {
    font-family: "Plus Jakarta Sans", sans-serif, system-ui;
    font-weight: 700;
    font-optical-sizing: auto;
}

/* Colors */
.purple { color: #241941; }
.orange-soda { color: #eb5a3c; }

/* Typography */
.headline { font-size: 4rem; margin-bottom: 1rem; }
.subheadline { font-size: 1.5rem; }
.section-header { font-size: 2rem; margin: 0.5rem 0; line-height: 1.2; }

/* Utilities */
.text-center { text-align: center; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }

/* Layout Wrappers */
.section-padding {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 80vh;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 4rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.pill {
    border-radius: 50px;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.pill:hover { opacity: 0.9; }
.pill-orange { background-color: #eb5a3c; }
.pill-purple { background-color: #241941; }
.pill a { color: #ffffff; text-decoration: none; display: block; }

/* =========================================
   ABOUT US SECTION (STATS)
   ========================================= */
.description {
    background-color: #37152E;
    color: #fbfbfb;
    justify-content: center;
}

.description .jakarta-sans-bold { color: #DEAFE1; }

.split-display-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-box-primary {
    background-color: #deafe1;
    color: #37152E;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
}

.stats-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-box-secondary {
    background-color: #deafe1;
    color: #37152E;
    padding: 1.5rem;
    border-radius: 24px;
    text-align: center;
}

.stat-number-large { font-size: 5rem; margin: 0; font-weight: bold; line-height: 1; }
.stat-number-small { font-size: 3rem; margin: 0; font-weight: bold; line-height: 1; }
.stat-label { font-size: 1rem; opacity: 0.7; margin-top: 0.5rem; }

.story-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
    background-color: #eb5a3c;
    color: #fbfbfb;
    justify-content: center;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 30px rgba(36, 25, 65, 0.15);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-card-header i { font-size: 1.25rem; }
.service-card p { margin: 0; line-height: 1.6; }

/* =========================================
   PORTFOLIO SECTIONS
   ========================================= */
.illustration, .graphic-design {
    background-color: #fbfbfb;
    color: #37152E;
    justify-content: center;
}

/* =========================================
   FOOTER SECTION
   ========================================= */
footer {
    background-color: #241941;
    color: #fbfbfb;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.contact-container a {
    color: inherit;
    font-size: 2rem;
    transition: opacity 0.2s ease;
}

.contact-container a:hover { opacity: 0.7; }

.footer-logo {
    display: block;
    margin: 0 auto;
    width: 150px;
    height: auto;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================= */
@media (max-width: 768px) {
    .headline { font-size: 2.5rem; }
    
    .hero {
        min-height: 60vh;
        padding-top: 2rem;
    }

    .split-display-container,
    .service-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}