/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --tertiary: #FFE66D;
    --accent: #FF9F1C;
    --dark: #292F36;
    --light: #F7FFF7;
    --font-main: 'Outfit', sans-serif;
    
    /* Bento Grid Elements */
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(255, 255, 255, 0.4);
    --card-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --backdrop-blur: blur(10px);
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    background-attachment: fixed;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Glassmorphism Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-custom .navbar-brand {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.navbar-custom .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px 15px !important;
    margin: 0 2px;
}

.navbar-custom .nav-link:hover {
    color: white !important;
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: -webkit-linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* Bento Grid Cards */
.bento-card {
    background: var(--card-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.bento-card a { text-decoration: none; color: inherit; }

.bento-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: var(--light);
}

.bento-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.bento-card h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Sınıflar Renk Paleti */
.c-1 { .bento-icon i { color: #FF6B6B; } border-top: 4px solid #FF6B6B; }
.c-2 { .bento-icon i { color: #4ECDC4; } border-top: 4px solid #4ECDC4; }
.c-3 { .bento-icon i { color: #FFE66D; } border-top: 4px solid #FFE66D; }
.c-4 { .bento-icon i { color: #FF9F1C; } border-top: 4px solid #FF9F1C; }
.c-ai { .bento-icon i { color: #845EC2; } border-top: 4px solid #845EC2; }
.c-smart { .bento-icon i { color: #0081C9; } border-top: 4px solid #0081C9; }

/* Custom Buttons */
.btn-custom {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-custom:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

/* Footer */
footer {
    background: white;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
    margin-top: 50px;
    color: #666;
}

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

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
