/* Theme Name: Bauhaus Geometric */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Syne:wght@400;700&display=swap');

:root {
    --primary: #e63946;
    --primary-light: #f1faee;
    --bg-color: #f1faee;
    --body-bg: linear-gradient(45deg, #457b9d 25%, #1d3557 25%, #1d3557 50%, #457b9d 50%, #457b9d 75%, #1d3557 75%, #1d3557 100%);
    --card-bg: #f1faee;
    --card-border: #1d3557;
    --text-main: #1d3557;
    --text-muted: #457b9d;
    --border-color: #1d3557;
    --icon-bg: #a8dadc;
    --qr-section-bg: #ffffff;
    --qr-code-bg: #ffffff;
    --profile-placeholder-bg: #e63946;
    --profile-placeholder-text: #ffffff;
    
    --font-main: 'Syne', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --name-size: 2.2rem;
}

body {
    background-size: 40px 40px;
}

.card {
    border-radius: 0;
    border: 4px solid #1d3557;
    box-shadow: 15px 15px 0 #e63946, 30px 30px 0 #f1faee;
    margin-right: 30px;
    margin-bottom: 30px;
}

.header {
    background: #e63946;
    height: 150px;
    border-bottom: 4px solid #1d3557;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: #f1faee;
    border: 4px solid #1d3557;
    border-radius: 50%;
    top: -100px;
    left: -50px;
}

.header::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: #a8dadc;
    border: 4px solid #1d3557;
    bottom: -50px;
    right: 20px;
    transform: rotate(45deg);
}

.header-pattern {
    display: none;
}

.profile-img, .profile-img-placeholder {
    border-radius: 0;
    border: 4px solid #1d3557;
    box-shadow: 8px 8px 0 #a8dadc;
    transform: translateX(-50%) rotate(-10deg);
}

.name {
    text-transform: uppercase;
    font-weight: 700;
}

.title {
    background: #1d3557;
    color: #f1faee;
    display: inline-block;
    padding: 4px 10px;
    text-transform: uppercase;
    border-radius: 20px;
}

.contact-item {
    border-bottom: 2px dashed #1d3557;
}

.contact-icon {
    border-radius: 0;
    border: 2px solid #1d3557;
    background: #a8dadc;
    color: #1d3557;
    box-shadow: 4px 4px 0 #e63946;
    transition: all 0.2s;
}

.contact-item:hover .contact-icon {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #e63946;
}

.qr-section {
    border-top: 4px solid #1d3557;
}

#qrcode {
    border: 4px solid #1d3557;
    border-radius: 0;
    box-shadow: 8px 8px 0 #a8dadc;
}

.btn {
    border-radius: 0;
    border: 3px solid #1d3557;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #e63946;
    box-shadow: 6px 6px 0 #1d3557;
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 #1d3557;
    background: #e63946;
}

.btn-secondary {
    background: #a8dadc;
    color: #1d3557;
    box-shadow: 6px 6px 0 #1d3557;
}

.btn-secondary:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 #1d3557;
    background: #a8dadc;
}