:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #34495e;
    --light-bg: #ecf0f1;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.social-bar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.social-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    text-align: center;
    padding: 60px 0;
}

h1 {
    font-size: 3.5em;
    color: var(--primary-color);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 1.5em;
    color: var(--accent-color);
    margin-top: 10px;
}

.content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
}

.photo-section {
    text-align: center;
}

.photo-frame {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.main-photo {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.photo-frame:hover .main-photo {
    transform: scale(1.05);
}

.photo-caption {
    margin-top: 20px;
    font-size: 1.2em;
    color: var(--text-color);
}

.about-section {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.connect-section {
    margin-top: 40px;
}

.linkedin-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #0077b5;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.linkedin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,119,181,0.4);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    
    .content {
        grid-template-columns: 1fr;
    }
}