/* JG-3D Prints - Space Theme */

:root {
    --color-bg: #0a0a1a;
    --color-bg-light: #12122a;
    --color-bg-card: #1a1a3a;
    --color-primary: #ff6b35;
    --color-secondary: #ffc234;
    --color-accent: #4ade80;
    --color-text: #ffffff;
    --color-text-muted: #a0a0c0;
    --color-border: #2a2a4a;

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Animated Stars Background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="0.5" fill="white"/><circle cx="30" cy="45" r="0.3" fill="white"/><circle cx="50" cy="20" r="0.4" fill="white"/><circle cx="70" cy="60" r="0.5" fill="white"/><circle cx="90" cy="30" r="0.3" fill="white"/><circle cx="20" cy="80" r="0.4" fill="white"/><circle cx="60" cy="90" r="0.3" fill="white"/><circle cx="85" cy="75" r="0.5" fill="white"/></svg>') repeat;
    background-size: 200px 200px;
    animation: twinkle 3s ease-in-out infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="35" r="0.4" fill="white" opacity="0.7"/><circle cx="45" cy="15" r="0.3" fill="white" opacity="0.7"/><circle cx="75" cy="45" r="0.5" fill="white" opacity="0.7"/><circle cx="25" cy="65" r="0.3" fill="white" opacity="0.7"/><circle cx="55" cy="85" r="0.4" fill="white" opacity="0.7"/></svg>') repeat;
    background-size: 150px 150px;
    animation: twinkle 4s ease-in-out infinite 1s;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="5" cy="55" r="0.6" fill="%23ffc234" opacity="0.5"/><circle cx="35" cy="25" r="0.4" fill="%23ff6b35" opacity="0.5"/><circle cx="65" cy="75" r="0.5" fill="%234ade80" opacity="0.5"/><circle cx="95" cy="15" r="0.4" fill="%23ffc234" opacity="0.5"/></svg>') repeat;
    background-size: 250px 250px;
    animation: twinkle 5s ease-in-out infinite 2s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-bg);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
    color: var(--color-bg);
}

.btn-nav {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-nav:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.75rem;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-small:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(10, 10, 26, 0.95), transparent);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 10, 26, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.hero-logo {
    width: 400px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 60px;
}

.section-header-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    max-width: 750px;
    margin: 0 auto;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(18, 18, 42, 0.6) 50%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.about-icon {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.about-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.about-bio {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--color-bg-card);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.about-photo {
    border-radius: 15px;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-bio strong {
    color: var(--color-primary);
}

/* Setup Section */
.setup {
    background: linear-gradient(180deg, transparent 0%, rgba(18, 18, 42, 0.6) 50%, transparent 100%);
}

.setup-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.setup-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.setup-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: 0 10px 40px rgba(255, 194, 52, 0.2);
}

.setup-icon {
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.setup-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.setup-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Pricing Note */
.pricing-note {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
    padding: 25px 30px;
    background: var(--color-bg-card);
    border-radius: 15px;
    border: 1px solid var(--color-border);
}

.pricing-note p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.pricing-note strong {
    color: var(--color-accent);
}

/* Prints Section */
.prints {
    background: transparent;
}

.prints-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.print-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.print-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(74, 222, 128, 0.2);
}

.print-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.print-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.print-image img.full-view {
    object-fit: contain;
    background: var(--color-bg);
}

.print-image img.center-bottom {
    object-position: center bottom;
}

.print-image img.center-top {
    object-position: center top;
}

.print-image img.center-adjusted {
    object-position: center 70%;
}

.print-card:hover .print-image img {
    transform: scale(1.05);
}

.print-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.print-info {
    padding: 25px;
    text-align: center;
}

.print-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.print-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.print-info p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 15px;
}

.prints-cta {
    text-align: center;
}

.prints-cta p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(180deg, transparent 0%, rgba(18, 18, 42, 0.6) 50%, transparent 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.step p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background: transparent;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--color-bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.color-checkboxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 14px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
    cursor: pointer;
}

/* Footer */
.footer {
    background: rgba(18, 18, 42, 0.6);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-content p {
    color: var(--color-text-muted);
    max-width: 400px;
    margin: 0 auto 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-bio {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-photo {
        max-width: 300px;
        margin: 0 auto;
    }

    .prints-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .setup-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .section {
        padding: 80px 0;
    }

    .prints-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 24px;
    }

    .hero-logo {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.8125rem;
    }
}
