/* Business Card Print Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    padding: 20px;
}

/* Print Area Container */
.print-area {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Business Card Base */
.business-card {
    width: 3.5in;
    height: 2in;
    background: linear-gradient(135deg, #ffeef1 0%, #f8e8eb 100%);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px dashed #d4526e;
}

.card-content {
    padding: 16px;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Front Side Styles */
.front {
    background: linear-gradient(135deg, #ffeef1 0%, #f8e8eb 100%);
}

.decorative-elements {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px;
}

.decorative-elements span {
    font-size: 14px;
    margin: 0 2px;
    opacity: 0.7;
}

.brand-section {
    text-align: center;
    margin: 12px 0;
}

.company-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #d4526e;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #d4526e 0%, #b8334a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info {
    margin: 16px 0;
    font-size: 9px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    color: #555;
}

.contact-item .icon {
    width: 16px;
    font-size: 8px;
    margin-right: 6px;
}

.contact-item .text {
    font-weight: 500;
}

.bottom-decoration {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    font-size: 12px;
    opacity: 0.6;
}

/* Back Side Styles */
.back {
    background: linear-gradient(135deg, #fff 0%, #ffeef1 100%);
}

.hero-quote {
    text-align: center;
    margin-bottom: 12px;
}

.hero-quote h2 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-style: italic;
    color: #d4526e;
    font-weight: 600;
    line-height: 1.2;
}

.services-list {
    margin-bottom: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    font-size: 8px;
    color: #555;
}

.service-icon {
    width: 16px;
    font-size: 8px;
    margin-right: 6px;
}

.service-name {
    font-weight: 500;
}

.features {
    margin-bottom: 8px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 7px;
    color: #666;
    background: rgba(212, 82, 110, 0.1);
    padding: 2px 4px;
    border-radius: 8px;
    flex: 1;
    min-width: 60px;
    justify-content: center;
}

.feature-icon {
    margin-right: 2px;
    font-size: 7px;
}

.website {
    text-align: center;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.website p {
    font-size: 10px;
    color: #d4526e;
    font-weight: 600;
}

/* Print Instructions */
.print-instructions {
    margin-top: 40px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.print-instructions h3 {
    color: #d4526e;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.print-instructions ul {
    list-style: none;
    padding: 0;
}

.print-instructions li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #555;
    line-height: 1.4;
}

.print-instructions li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4526e;
    font-weight: bold;
}

/* Print Styles */
@media print {
    body {
        background: white;
        padding: 0;
        margin: 0;
    }

    .print-area {
        max-width: none;
        margin: 0.5in;
        gap: 0.25in;
    }

    .business-card {
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }

    .print-instructions {
        display: none;
    }
}

/* Responsive for viewing */
@media (max-width: 768px) {
    .print-area {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .business-card {
        transform: scale(1.5);
        margin: 20px 0;
    }
}