@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.nav-link {
    @apply text-sm font-medium text-gray-600 hover:text-orange-600 transition-colors cursor-pointer;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Loader */
.loader {
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top: 3px solid white;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tool Cards */
.tool-card {
    transition: all 0.3s ease;
}
.tool-card:hover {
    transform: translateY(-4px);
    border-color: #fed7aa;
    box-shadow: 0 10px 15px -3px rgba(251, 146, 60, 0.1);
}
.tool-card:hover .icon-bg {
    background-color: #ea580c;
    color: white;
}

/* Utilities */
.hidden { display: none !important; }
.aspect-iso { aspect-ratio: 1 / 1.414; }

/* Drag and Drop Visuals */
.drag-over {
    background-color: #fff7ed !important;
    border-color: #fb923c !important;
}

/* QR code box */
/* Full-width responsive box */
.feature-box.full {
    width: 100%;
    padding: 25px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.feature-box.full a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-box.full:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Orange icon box */
.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1px;
    background: linear-gradient(135deg, #ff8a00, #ff5e00); /* ORANGE gradient */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 34px;
}

.feature-box.full h3 {
    margin: 10px 0 5px;
    font-size: 1.3rem;
    color: #111827;
}

.feature-box.full p {
    color: #4b5563;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 480px) {
    .feature-box.full {
        padding: 18px;
    }
    .feature-box.full h3 {
        font-size: 1.15rem;
    }
}
