/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 56px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 100px 0;
    margin-bottom: 30px;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Section Headings */
section h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
}

/* Skills List */
.list-unstyled li {
    margin-bottom: 10px;
    color: #34495e;
}

.list-unstyled i {
    color: #2575fc;
    margin-right: 10px;
}

/* Contact Section */
.contact-info .btn {
    margin: 5px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #2c3e50;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .card {
        margin-bottom: 20px;
    }
}

/* Random Facts Section */
#random-facts .card {
    background-color: #f8f9fa;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#random-facts .card-body {
    padding: 2rem;
}

#fact-text {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    min-height: 3rem;
}

#fact-type {
    font-size: 0.9rem;
    color: #6c757d;
}

#new-fact-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

#new-fact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#new-fact-btn i {
    margin-right: 0.5rem;
} 