﻿.fresh-websites-section {
/*    padding: 2rem 1rem;
*/    max-width: 1200px;
/*    margin: 0 auto;
*/}

.fresh-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.websites-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    padding: 0;
}

.card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

.graphic-card::before {
    background: linear-gradient(90deg, #20c997, #10b981);
}

.copy-card::before {
    background: linear-gradient(90deg, #28a745, #16a34a);
}

.food-menu-card::before {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.biz-software-card::before {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
}

.landing-card::before {
    background: linear-gradient(90deg, #8b4513, #7c2d12);
}

.website-card::before {
    background: linear-gradient(90deg, #4f46e5, #4338ca);
}

.other-services-card::before {
    background: linear-gradient(90deg, #007bff, #0069d9);
}

.card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 3rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.card-content {
    text-align: center;
}

    .card-content h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1e293b;
        margin: 0 0 0.75rem 0;
    }

    .card-content p {
        color: #64748b;
        font-size: 0.95rem;
        margin: 0 0 1rem 0;
        line-height: 1.5;
    }

.demo-btn {
    display: inline-block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: white !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

    .demo-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.25);
        color: white !important;
    }

/* Button Colors & Hover States */
.teal {
    background: linear-gradient(135deg, #20c997, #10b981);
}

    .teal:hover {
        background: linear-gradient(135deg, #059669, #047857);
    }

.olive {
    background: linear-gradient(135deg, #28a745, #16a34a);
}

    .olive:hover {
        background: linear-gradient(135deg, #22c55e, #16a34a);
    }

.aqua {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

    .aqua:hover {
        background: linear-gradient(135deg, #0ea5e9, #0284c7);
    }

.garnet {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

    .garnet:hover {
        background: linear-gradient(135deg, #ef4444, #dc2626);
    }

.chocolate {
    background: linear-gradient(135deg, #8b4513, #7c2d12);
}

    .chocolate:hover {
        background: linear-gradient(135deg, #a16207, #92400e);
    }

.indigo {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
}

    .indigo:hover {
        background: linear-gradient(135deg, #6366f1, #4f46e5);
    }

.blue {
    background: linear-gradient(135deg, #007bff, #0069d9);
}

    .blue:hover {
        background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    }

/* Responsive */
@media (max-width: 768px) {
    /*.fresh-websites-section {
        padding: 1.5rem 0.5rem;
    }*/

    .fresh-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .websites-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .card-icon {
        font-size: 2.5rem;
        width: 3.5rem;
        height: 3.5rem;
    }
}
