/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

header h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Profile Picture */
.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out;
}

.profile-pic:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Main Content */
main {
    padding: 20px;
    max-width: 800px;
    margin: 40px auto;
}

section, .tab-content {
    background: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2, h3 {
    font-family: 'Pacifico', cursive;
    color: #764ba2;
}

/* Tab Styles */
.tabs {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.tab-link {
    background-color: inherit;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    border-radius: 10px 10px 0 0;
}

.tab-link:hover {
    background-color: #ddd;
}

.tab-link.active {
    background-color: #667eea;
    color: white;
}

.tab-content {
    display: none;
    padding: 20px;
    border-top: none;
}


/* Button Styles */
.button {
    display: inline-block;
    background-color: #667eea;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #5a6fd8;
}

/* Social Links */
.social-links a {
    margin: 0 10px;
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
}
