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

@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --primary-color: #600ab6;
    --primary-dark: #4a0890;
    --secondary-color: #8b1fd1;
}

/* Custom logo height - 1.5x of original (10 * 1.5 = 15 = 3.75rem) */
.h-15 {
    height: 3.75rem;
}

/* RGB Border Animated Button */
.rgb-border-button {
    position: relative;
    display: inline-block;
    padding: 3px;
    border-radius: 12px;
    background: linear-gradient(90deg, 
        #600ab6 0%, 
        #00d4ff 25%, 
        #ff6b9d 50%, 
        #00d4ff 75%, 
        #600ab6 100%);
    background-size: 300% 100%;
    animation: rgbBorderAnimation 3s linear infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rgb-border-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.rgb-border-button span {
    display: block;
    background: #1a1a1a;
    color: white;
    padding: 16px 48px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.rgb-border-button:hover span {
    background: #000000;
}

@keyframes rgbBorderAnimation {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

/* Custom gradient backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, #600ab6 0%, #8b1fd1 100%);
}

.gradient-primary-light {
    background: linear-gradient(135deg, #f5f0ff 0%, #ede5f7 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #600ab6 0%, #8b1fd1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom button styles */
.btn-primary {
    background: #600ab6;
    box-shadow: 0 4px 14px rgba(96, 10, 182, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #4a0890;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 10, 182, 0.5);
}

/* Hero background decoration */
.hero-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(96, 10, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Feature card hover effects */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: #600ab6;
}

/* Feature icon gradient */
.feature-icon {
    background: linear-gradient(135deg, #600ab6, #8b1fd1);
}

.feature-icon .material-icons {
    user-select: none;
}

/* Benefit visual gradient */
.benefit-visual {
    background: linear-gradient(135deg, #600ab6, #8b1fd1);
    box-shadow: 0 20px 60px rgba(96, 10, 182, 0.3);
}

/* Checkmark styles */
.check-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00C48C;
    font-weight: bold;
    font-size: 20px;
}

.check-item-large::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00C48C;
    font-weight: bold;
    font-size: 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #600ab6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a0890;
}

