/* ===============================
   Pixora Photorooms – Website CSS
   =============================== */

:root {
    --brand-orange: rgb(231, 116, 56);
    --brand-green: rgb(94, 156, 113);
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #ffffff;
    --border-light: #e5e7eb;
}

/* ---------------- BASE ---------------- */
.site-body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    cursor: default;
}

/* ---------------- NAVBAR ---------------- */
.site-navbar {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
}

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

.site-logo img {
    height: 42px;
}

.site-nav-links {
    display: flex;
    gap: 28px;
}

.site-nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.site-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: width 0.25s ease;
}

.site-nav-links a:hover::after,
.site-nav-links a.active::after {
    width: 100%;
}

/* ---------------- HERO ---------------- */
.hero-section {
    max-width: 1200px;
    margin: 100px auto 140px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    color: var(--brand-orange);
}

.hero-content span {
    color: var(--brand-green);
}

.hero-content p {
    margin-top: 20px;
    font-size: 20px;
    color: var(--text-muted);
    max-width: 520px;
}

.hero-badges {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-badges span {
    background: rgba(231, 116, 56, 0.08);
    color: var(--brand-orange);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

/* Hero visuals */
.hero-visual {
    display: grid;
    gap: 16px;
}

.hero-card {
    background: #f9fafb;
    border: 1px dashed var(--border-light);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    color: var(--text-muted);
}

/* ---------------- SECTIONS ---------------- */
.site-page {
    max-width: 1000px;
    margin: 120px auto;
    padding: 0 24px;
}

/* Feature layout */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-section.alt .feature-grid {
    grid-template-columns: 1fr 1fr;
}

.feature-text h2 {
    font-size: 34px;
    color: var(--brand-orange);
}

.feature-text h3 {
    margin-top: 8px;
    color: var(--brand-green);
    font-weight: 500;
}

.feature-text ul {
    margin-top: 20px;
    padding-left: 18px;
}

.feature-text li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.highlight {
    margin-top: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.note {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.feature-image {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image img {
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.image-placeholder {
    background: #f3f4f6;
    border-radius: 20px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 16px;
}

/* ---------- HERO IMAGE ---------- */
.hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.hero-image-wrapper {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    background: #fff;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.hero-image-wrapper:hover {
    transform: translateY(-6px);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
    background: #0b0b0b;
    color: #d1d5db;
    margin-top: 160px;
}

.site-footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.site-footer h2 {
    font-size: 28px;
    color: var(--brand-orange);
}

.site-footer span {
    color: var(--brand-green);
}

.site-footer p {
    margin-top: 12px;
    color: #9ca3af;
}

.site-footer a {
    color: var(--brand-green);
    text-decoration: none;
}

.site-footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #1f2937;
    font-size: 14px;
    color: #6b7280;
}

/* ---------------- SCROLL REVEAL ---------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {

    .hero-section,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 42px;
    }
}