/* ===== BUSINESS CARDS STYLES ===== */

/* Business Cards Hero */
.business-cards-hero {
    background-color: var(--secondary-light);
    padding: 80px 0;
}

.business-cards-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.business-cards-hero h1 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.business-cards-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
}

/* Card Templates */
.card-templates {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.templates-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.template-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    padding: 0 20px;
}

.template-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.template-nav-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.templates-slider {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
}

.template-slide {
    min-width: 100%;
    scroll-snap-align: start;
    padding: 20px;
}

.template-card {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 350px;
}

.template-preview {
    flex: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Template Styles */
.template-card.classic .template-preview {
    background-color: #f8f9fa;
    color: #343a40;
}

.template-card.modern .template-preview {
    background-color: #4a6fa5;
    color: white;
}

.template-card.creative .template-preview {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: #333;
}

.template-card.minimal .template-preview {
    background-color: white;
    color: #333;
    border-right: 1px solid #eee;
}

.card-company-logo {
    width: 80px;
    height: 80px;
    background-color: #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

.card-company-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-person-name {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.card-title {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.card-contact {
    font-size: 0.9rem;
}

.contact-item {
    margin-bottom: 5px;
}

.template-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.template-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.template-info p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Cards Section */
.cards-section {
    padding: 80px 0;
    background-color: white;
}

.search-filter {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    position: relative;
    min-width: 300px;
}

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid var(--bg-dark);
    border-radius: var(--border-radius);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    color: white;
    border: none;
    width: 40px;
    height: 38px;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.filter-options {
    display: flex;
    gap: 15px;
}

.filter-options select {
    padding: 12px 35px 12px 15px;
    border: 1px solid var(--bg-dark);
    border-radius: var(--border-radius);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Business Card Styles */
.business-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
