@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,600;1,600&display=swap');

/* styles.css */
:root {
    --orange: #000000;
    --light-orange: #FF8E53;
    --royal-blue: #2563EB;
    --light-blue: #3B82F6;
    --glow-orange: rgba(255, 107, 53, 0.4);
    --glow-blue: rgba(37, 99, 235, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-style: normal;
    background: linear-gradient(135deg, #FF8E53 0%, #2563EB 50%, #3B82F6 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.profiles-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1600px;
    width: 100%;
}

.profile-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    box-shadow: 0 32px 64px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--royal-blue));
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.profile-card:hover::before {
    transform: scaleX(1);
}

.profile-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 48px 96px rgba(0,0,0,0.25);
}

.hero-image {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.person1 img {
    transform: scaleX(-1);
}

.person2 img {
    transform: scaleX(1);
}

[data-person="1"]:hover .hero-image img {
    transform: scaleX(1) scale(1.1) rotateY(5deg);
}

[data-person="2"]:hover .hero-image img {
    transform: scaleX(-1) scale(1.1) rotateY(5deg);
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-orange) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

[data-person="1"]:hover .image-glow {
    opacity: 1;
    animation: glowPulse 2s infinite;
}

.person2 .image-glow {
    background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
}

[data-person="2"]:hover .image-glow {
    opacity: 1;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.profile-info {
    padding: 3rem;
    color:#000000;
    position: relative;
}

.profile-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
}

[data-person="1"] .profile-info h2 {
    color: var(--orange);
}

[data-person="2"] .profile-info h2 {
    color: var(--royal-blue);
}

.info-grid {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.info-item:hover::before {
    left: 100%;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.label {
    font-weight: 700;
    color: var(--royal-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.info-item ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    list-style: none;
}

.info-item ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.info-item ul li::before {
    content: '▸';
    color: var(--cije-gold);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

.info-item a {
    color: var(--royal-blue);
    font-weight: 600;
    text-decoration: none;
}

.info-item a:hover {
    color: var(--orange);
}

.info-item.statement span {
    font-weight: 200;
}

.site-footer {
    background: rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
    color: white;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .profiles-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        height: 350px;
    }
}
:root {
    --cije-gold: #000000;
    --cije-blue: #1E3A8A;
    --light-gold: #383837;
    --light-blue: #3B82F6;
    --glow-gold: rgba(212, 175, 55, 0.4);
    --glow-blue: rgba(30, 58, 138, 0.4);
}

body {
    font-family: "Open Sans", sans-serif;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--cije-blue) 50%, var(--light-blue) 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

/* [Previous CSS remains same, just update color variables] */
[data-person="1"] .profile-info h2 {
    color: var(--cije-gold);
}

[data-person="2"] .profile-info h2 {
    color: var(--cije-blue);
}

[data-person="1"]:hover .image-glow { background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%); }
[data-person="2"]:hover .image-glow { background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%); }

.contact-section {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 0;
    border-radius: 32px 32px 0 0;
    transform: translateY(50px);
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--cije-gold);
    color: var(--cije-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--glow-gold);
}
