@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #0f172a;
    --accent: #4db6ac;
    --bg-color: #f8fafc;
    --text-muted: #64748b;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary);
    overflow-x: hidden;
}

/* 1. Hero Section - Top Image */
.hero-header {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0), #f8fafc);
    pointer-events: none;
}

/* 2. Main Content Wrapper */
.profile-container {
    position: relative;
    text-align: center;
    padding: 0 20px;
    margin-top: -60px;
    z-index: 10;
}

/* 3. Logo */
.profile-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    color: var(--accent);
    font-size: 2rem;
}

.profile-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    padding: 2px;
}

/* 4. Typography */
.profile-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.profile-subtitle {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.profile-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

/* 5. Info Line */
.info-line {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-item i {
    color: var(--accent);
}

/* 6. Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.social-btn:hover {
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* 7. Link Cards Section */
.links-section {
    max-width: 600px;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.card-link {
    background: white;
    border: none;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    min-height: 80px;
    width: 100%;
    box-sizing: border-box;
    margin: 0px;
}

.card-link+.card-link {
    margin-left: 0 !important;
}

.card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card-icon-box {
    width: 48px;
    height: 48px;
    background-color: #f1f8f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #263238;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
    text-align: left;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e293b;
    display: block;
    margin-bottom: 2px;
}

.card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.card-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s;
}

.card-link:hover .card-arrow {
    background: #e2e8f0;
    color: #475569;
}

/* Footer */
.footer-simple {
    text-align: center;
    padding: 30px 20px;
    color: #94a3b8;
    font-size: 0.8rem;
}

.footer-simple a {
    color: #94a3b8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.footer-simple a:hover {
    color: #64748b;
}

/* Modal Styling */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header .btn-close {
    background-color: #f1f5f9;
    border-radius: 50%;
}