/* Global Styles */
:root {
    --primary-color: #00aeff;
    --secondary-color: #b4cad0;
    --accent-color: #c4d4c0;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Navigation Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Custom Media Components */
.custom-media {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.custom-media:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.custom-media img {
    border-radius: 40px 0 40px 0;
    object-fit: cover;
    transition: var(--transition);
}

.custom-media:hover img {
    transform: scale(1.05);
}

/* Card Styles */
.custom-card-body {
    height: 300px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Button Styles */
.btn-3d {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translate(0, 0);
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
}

.btn-3d:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color);
    font-weight: 600;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Spacing Utilities */
.section-spacing {
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-media {
        padding: 1rem;
        text-align: center;
    }

    .custom-media img {
        margin-bottom: 1rem;
    }

    .media-body {
        padding: 0 !important;
    }
}

/* Publication Styles */
.publication-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

.publication-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.publication-card ul {
    list-style: none;
    padding: 0;
}

.publication-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.publication-card li:last-child {
    border-bottom: none;
}

/* Resume iframe container */
.resume-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 2rem;
}

.resume-iframe {
    width: 100%;
    max-width: 1100px;
    height: 700px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animation for page load */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}