/* Theme Name: Hellenic Greek */
@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --primary: #005b9f; /* Santorini Blue */
    --primary-light: #3e8acc;
    --bg-color: #ffffff;
    --body-bg: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
    --card-bg: #ffffff;
    --card-border: #005b9f;
    --text-main: #1a365d;
    --text-muted: #4a5568;
    --border-color: rgba(0, 91, 159, 0.2);
    --icon-bg: rgba(0, 91, 159, 0.05);
    --qr-section-bg: #f8fbff;
    --qr-code-bg: #ffffff;
    --profile-placeholder-bg: #ffffff;
    --profile-placeholder-text: #005b9f;
    
    --font-main: 'Open Sans', sans-serif;
    --font-heading: 'Julius Sans One', sans-serif;
    --name-size: 2rem;
}

.card {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 91, 159, 0.1);
    border: 2px solid #005b9f;
    padding: 10px;
    background-clip: content-box;
}

.card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(0, 91, 159, 0.3);
    border-radius: 4px;
    pointer-events: none;
    z-index: 20;
}

.header {
    background: #005b9f;
    height: 150px;
    border-radius: 4px 4px 0 0;
    border-bottom: 5px solid #ffffff;
    box-shadow: 0 5px 0 #005b9f;
    position: relative;
}

/* CSS Greek Meander (Key) Pattern */
.header-pattern {
    background-color: #005b9f;
    background-image: 
        linear-gradient(90deg, transparent 40%, rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.2) 60%, transparent 60%),
        linear-gradient(0deg, transparent 40%, rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.2) 60%, transparent 60%);
    background-size: 40px 40px;
    opacity: 0.5;
}

.profile-img, .profile-img-placeholder {
    border-radius: 50%;
    border: 6px solid #ffffff;
    box-shadow: 0 0 0 2px #005b9f;
    background: #ffffff;
    color: #005b9f;
    width: 120px;
    height: 120px;
    bottom: -60px;
}

.name {
    text-transform: uppercase;
    color: #005b9f;
    letter-spacing: 3px;
    margin-top: 15px;
}

.title {
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 600;
}

.company {
    font-style: italic;
}

.contact-item {
    border-bottom: 1px solid rgba(0, 91, 159, 0.1);
}

.contact-icon {
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #005b9f;
    color: #005b9f;
    box-shadow: 2px 2px 0 rgba(0, 91, 159, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #005b9f;
    color: #ffffff;
    box-shadow: 4px 4px 0 rgba(0, 91, 159, 0.2);
    transform: translateY(-2px);
}

.qr-section {
    border-top: 2px solid #005b9f;
    border-radius: 0 0 4px 4px;
}

#qrcode {
    border: 2px solid #005b9f;
    border-radius: 0;
    box-shadow: 5px 5px 0 rgba(0, 91, 159, 0.1);
}

.btn {
    border-radius: 4px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.btn-primary {
    background: #005b9f;
    color: #ffffff;
    border: 1px solid #005b9f;
}

.btn-primary:hover {
    background: #ffffff;
    color: #005b9f;
}

.btn-secondary {
    background: #ffffff;
    color: #005b9f;
    border: 1px solid #005b9f;
}

.btn-secondary:hover {
    background: #005b9f;
    color: #ffffff;
}