/* ==========================================
   ZENITH PRINTS - Coming Soon
   Minimal with Primary Colors
   ========================================== */

:root {
    /* Primary Colors */
    --red: #E53935;
    --yellow: #FDD835;
    --blue: #1E88E5;
    
    /* Neutrals */
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #eeeeee;
    --gray-400: #bdbdbd;
    --gray-600: #757575;
    --gray-800: #424242;
    
    /* Text */
    --text-primary: #000000;
    --text-secondary: #616161;
    --text-muted: #9e9e9e;
    
    /* Layout */
    --nav-height: 80px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    text-transform: none;
    letter-spacing: -0.01em;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    color: var(--text-primary);
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.15em;
}

.logo-accent {
    color: var(--red);
}

.nav-cta {
    background: var(--black);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background var(--transition);
}

.nav-cta:hover {
    background: var(--gray-800);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 60px) 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.deco-block {
    width: 120px;
    height: 120px;
    opacity: 0.9;
}

.deco-red { background: var(--red); }
.deco-yellow { background: var(--yellow); }
.deco-blue { background: var(--blue); }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
}

.hero-title {
    font-size: clamp(56px, 10vw, 100px);
    margin-bottom: 32px;
    line-height: 0.9;
}

.title-line {
    display: block;
}

.title-accent {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    text-transform: none;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gray-800);
}

.btn-primary svg {
    transition: transform var(--transition);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   SECTIONS
   ========================================== */
section {
    padding: 120px 0;
}

.section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 60px;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    position: relative;
}

.service-marker {
    width: 32px;
    height: 4px;
    margin-bottom: 24px;
}

.marker-red { background: var(--red); }
.marker-yellow { background: var(--yellow); }
.marker-blue { background: var(--blue); }

.service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* ==========================================
   ABOUT
   ========================================== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 400px;
}

.about-blocks {
    position: relative;
    width: 100%;
    height: 100%;
}

.block {
    position: absolute;
}

.block-1 {
    width: 200px;
    height: 200px;
    background: var(--red);
    top: 0;
    left: 0;
}

.block-2 {
    width: 160px;
    height: 160px;
    background: var(--yellow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.block-3 {
    width: 180px;
    height: 180px;
    background: var(--blue);
    bottom: 0;
    right: 0;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    background: var(--gray-100);
}

.contact-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    background: var(--gray-100);
    border: 1px solid transparent;
    padding: 16px;
    font-size: 14px;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 48px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .logo-text {
    color: var(--white);
}

.footer .logo-accent {
    color: var(--red);
}

.footer p {
    color: var(--gray-600);
    font-size: 12px;
    letter-spacing: 0.05em;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-decoration {
        right: 2%;
    }
    
    .deco-block {
        width: 80px;
        height: 80px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-visual {
        height: 300px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-container {
        padding: 0 24px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero-decoration {
        position: absolute;
        top: auto;
        bottom: 10%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 12px;
    }
    
    .deco-block {
        width: 60px;
        height: 60px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        display: flex;
        justify-content: center;
    }
    
    .block-1 {
        width: 140px;
        height: 140px;
    }
    
    .block-2 {
        width: 100px;
        height: 100px;
    }
    
    .block-3 {
        width: 120px;
        height: 120px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        padding: 10px 16px;
        font-size: 10px;
    }
    
    .hero-tag {
        font-size: 10px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
