/* =============================================
   POSTER DESIGN SYSTEM - COTEPARC
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;600;700;900&display=swap');

:root {
    --primary: #2563EB;
    --primary-light: #3B82F6;
    --accent: #06B6D4;
    --bg-dark: #050814;
    --text-light: #F8FAFC;
    --text-muted: #CBD5E1;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-y: auto;
    padding: 40px 20px;
}

/* Poster Container (A4 Ratio: 1 / 1.414) */
.poster {
    width: 210mm;
    height: 297mm;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}

/* Background Image with Overlay */
.poster-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-car.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(5, 8, 20, 0.4) 0%, 
        rgba(5, 8, 20, 0.7) 50%, 
        rgba(5, 8, 20, 0.95) 100%);
    z-index: 2;
}

/* Content Area */
.poster-content {
    position: relative;
    z-index: 10;
    height: 100%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header */
.poster-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-container {
    background: white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
    border: 4px solid var(--primary-light);
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.brand-name span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main Titles */
.main-title-box {
    margin-top: 20px;
}

.badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.4);
    color: var(--primary-light);
    padding: 6px 12px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.4;
}

/* Services Grid */
.services-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.service-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-muted);
}

.service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: "✓";
    color: var(--success, #10B981);
    font-weight: bold;
}

.service-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
}

.service-price small {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Call to Action Section */
.cta-section {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 30px;
}

.qr-box {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    text-align: center;
}

.qr-img {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto 10px;
}

.qr-text {
    color: #050814;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
}

.cta-info {
    max-width: 400px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-item i {
    color: var(--primary-light);
    font-size: 1.5rem;
}

.tagline {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Print specific */
@media print {
    body {
        padding: 0;
        background: white;
    }
    .poster {
        box-shadow: none;
    }
}
