/*
Theme Name: Eleven
Theme URI: https://example.com/eleven
Author: Antigravity
Author URI: https://example.com
Description: A creative agency theme for Eleven. Dark mode, one-page, vibrant colors.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eleven
*/

:root {
    /* Brand Colors */
    --color-primary-purple: #912891;
    --color-primary-blue: #2e81a3;
    --color-accent-orange: #f1891e;

    /* Dark Mode Defaults */
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    /* Modern, geometric */
    --font-body: 'Inter', sans-serif;
    /* Clean, readable */
}

/* Base Reset & Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--color-primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent-orange);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-purple), var(--color-primary-blue));
    color: #fff;
    box-shadow: 0 4px 15px rgba(145, 40, 145, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(145, 40, 145, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-accent-orange);
    color: var(--color-accent-orange);
}

.btn-outline:hover {
    background: var(--color-accent-orange);
    color: #fff;
}

/* Animations */
.hidden-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    /* Start transparent */
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}


.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 40px;
    /* Adjust based on actual logo */
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    color: var(--text-main);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.main-navigation a:hover {
    color: var(--color-accent-orange);
}

/* Section Common */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(to right, var(--color-primary-purple), var(--color-primary-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    width: 100%;
}

.about-text {
    max-width: 90%;
    margin: 0 auto;
    line-height: 2.2;
    text-align: justify;
}

.about-text ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.about-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text ul li .text-content {
    flex: 1;
}

.about-text ul li .item-visual {
    width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-text ul li:hover .item-visual {
    transform: scale(1.05);
}

.about-text ul li b {
    color: var(--color-primary-blue);
}

.contact-content {
    text-align: center;
}

@media (max-width: 768px) {
    .about-text ul li {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-text ul li .item-visual {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        margin-top: 1rem;
    }
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* Animations - Simple Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 2rem;
        text-align: center;
    }

    .main-navigation.toggled {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-cta {
        display: none;
    }
}