/* --- Typography and Colors --- */
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #f8fafc;
    color: #1a2a3a;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}
h1 {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 18px;
}
h2 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 14px;
}

/* --- Header --- */
header {
    background: #fff;
    padding: 40px 0 0 0;
    box-shadow: 0 2px 8px rgba(30,40,60,0.03);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.logo {
    font-weight: 400;
    letter-spacing: 0;
    font-size: 1.1rem;
    color: #1a2a3a;
}
.nav-center-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}
header nav a {
    color: #1a2a3a;
    text-decoration: none;
    font-size: 1rem;
    margin-left: 32px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}
header nav a:hover {
    color: #ffc72c;
}

/* --- Hero Section --- */
.hero {
    background: #fff;
    padding: 120px 0 120px 0;
}
.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}
.hero-text, .app-text, #tattoo-ai .app-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -32px;
}
.hero-text {
    flex: 1 1 350px;
    min-width: 300px;
    max-width: 600px;
    width: 100%;
}
.hero-text h1 {
    color: #1a2a3a;
    max-width: 800px;
}
.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    color: #3a4a5a;
    max-width: 480px;
    width: 100%;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFC72C;
    color: #fff;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 0 4px 16px rgba(255,199,44,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    letter-spacing: 1px;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.btn-primary:hover {
    background: #ffb300;
    box-shadow: 0 6px 24px rgba(255,199,44,0.18);
}
.hero-image {
    flex: 1 1 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
    width: 100%;
}
.hero-image img {
    width: auto;
    height: auto;
    max-width: 500px;
    max-height: 600px;
    border-radius: 0;
    box-shadow: none !important;
    background: none !important;
    z-index: 1;
    display: block;
    margin: 0 auto;
}

/* --- App Sections --- */
.app-section {
    background: #f3f9fb;
    padding: 180px 0;
    border-bottom: 1px solid #e6eaf0;
}
.app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    align-items: center;
}
.app-content.reverse {
    flex-direction: row-reverse;
}
.app-image {
    flex: 1 1 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 220px;
    margin-bottom: 24px;
    position: relative;
}
.app-image img {
    width: auto;
    height: auto;
    max-width: 500px;
    max-height: 600px;
    border-radius: 0;
    box-shadow: none !important;
    background: none !important;
    z-index: 1;
    display: block;
    margin: 0 auto;
}
.app-text {
    flex: 2 1 350px;
    min-width: 280px;
    padding-left: 56px;
    max-width: 600px;
    width: 100%;
}
.app-text h2 {
    color: #1a2a3a;
    max-width: 800px;
}
.app-text p {
    font-size: 1.15rem;
    color: #3a4a5a;
    margin-bottom: 24px;
    max-width: 480px;
    width: 100%;
}
.app-store-btn img {
    height: 44px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(30,40,60,0.10);
}

/* --- Tattoo AI Section --- */
#tattoo-ai .app-content {
    flex-direction: row;
    gap: 56px;
}
#tattoo-ai .app-image img {
    width: auto;
    height: auto;
    max-width: 500px;
    max-height: 600px;
    border-radius: 0;
    box-shadow: none !important;
    background: none !important;
    z-index: 1;
    display: block;
    margin: 0 auto;
}
#tattoo-ai .app-text {
    padding-left: 56px;
    max-width: 600px;
    width: 100%;
}
#tattoo-ai .app-text h2 {
    max-width: 800px;
}
#tattoo-ai .app-text p {
    max-width: 480px;
    width: 100%;
}

/* --- Memory Goons Section --- */
#memory-goons.app-section {
    background: #f3f9fb;
}

/* --- Text Invaders Section --- */
#text-invaders.app-section {
    background: #fff;
}

/* --- Footer --- */
footer {
    background: #1a2a3a;
    color: #fff;
    padding: 32px 0 32px 0;
    margin-top: 0;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}
.footer-logo {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.footer-logo svg {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto;
}
.footer-nav {
    display: flex;
    gap: 40px;
    margin: 32px 0 16px 0;
}
.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: #ffc72c;
}
.footer-info {
    font-size: 1rem;
    color: #b0c4d4;
    text-align: center;
}
.footer-info a {
    color: #b0c4d4;
    text-decoration: underline;
}

/* --- Hide alt text when images load --- */
img[alt] {
    font-size: 0;
    color: transparent;
}

/* --- Responsive Design --- */
@media (max-width: 1100px) {
    .hero-image img, .app-image img, #tattoo-ai .app-image img {
        width: 100%;
        height: auto;
        max-width: 440px;
    }
}
@media (max-width: 900px) {
    .hero-content, .app-content, .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        align-items: center;
        justify-content: center;
    }
    .app-text, #tattoo-ai .app-text {
        padding-left: 0;
        max-width: 100%;
    }
    .footer-info {
        text-align: center;
    }
    .app-image img, #tattoo-ai .app-image img, .hero-image img {
        max-width: 100vw;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}

/* --- Container Utility --- */
.container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
    width: 100%;
    box-sizing: border-box;
}

/* --- Responsive Container Padding --- */
@media (max-width: 600px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
} 