/* APILinker Web Styles */

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #263b26 0%, #4a6b4a 30%, #6b8b6b 70%, #8fb38f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Feature Cards */
.feature-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #263b26, #4a6b4a, #6b8b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 32px;
    color: white;
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #263b26;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: #263b26;
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #263b26;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "인기";
    position: absolute;
    top: 20px;
    right: -30px;
    background: #263b26;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #263b26 0%, #4a6b4a 30%, #6b8b6b 70%, #8fb38f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Custom Buttons */
.btn-custom {
    background: linear-gradient(45deg, #263b26, #4a6b4a, #6b8b6b);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(38, 59, 38, 0.4);
    color: white;
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 20px;
    }
}
