/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #faf7f2 0%, #f5f0ed 100%);
    color: #2d2d2d;
}

.bg-header {
    background: linear-gradient(135deg, #d4869f 0%, #c96a87 100%) !important;
    border: none;
    box-shadow: 0 2px 8px rgba(217, 106, 141, 0.15);
}

.navbar {
    height: 56px;
}

.jumbotron {
    background: transparent;
    padding: 40px 0;
}

.name {
    color: #2d2d2d;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.lead {
    font-size: 1.1rem;
    color: #6b6b6b !important;
    margin-bottom: 8px;
}

.font-weight-500 {
    font-weight: 500;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    text-decoration: none;
}

a > i {
    color: #d4869f;
    margin-right: 8px;
    width: 24px;
}

a:hover > i {
    color: #c96a87;
}

a:hover span {
    color: #c96a87;
}

.img-cs {
    width: 200px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(217, 106, 141, 0.25);
    border: 4px solid #f5f0ed;
    margin-bottom: 24px;
}

.box {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 134, 159, 0.1);
    max-width: 500px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: #2d2d2d;
    border-bottom: 1px solid rgba(212, 134, 159, 0.08);
    transition: padding 0.2s ease;
}

ul li:last-child {
    border-bottom: none;
}

ul li a {
    color: #2d2d2d;
    display: flex;
    align-items: center;
}

ul li a span {
    transition: color 0.2s ease;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, #f5f0ed 0%, #faf7f2 100%);
    border-top: 1px solid rgba(212, 134, 159, 0.1);
    font-size: 0.9rem;
}

.footer a {
    color: #d4869f;
    font-weight: 500;
}

.footer a:hover {
    color: #c96a87;
}

body > .container {
    padding: 40px 15px 0;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .name {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 0.95rem;
    }
    
    .img-cs {
        width: 160px;
        height: 160px;
    }
    
    .box {
        padding: 24px;
    }
}
