/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    background: #FFFFFF;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #3D348B 0%, #5A4FCF 50%, #9E89F3 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    text-align: left;
    max-width: 500px;
}

.name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.tagline {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    min-height: 800px;
}

/* Sidebar */
.sidebar {
    background: #f8f9fa;
    padding: 20px;
    border-right: 1px solid #e9ecef;
}

.sidebar section {
    margin-bottom: 30px;
}

.sidebar h3 {
    font-size: 16px;
    font-weight: 700;
    color: #3D348B;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar h3 i {
    color: #5A4FCF;
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
}

.contact-item i {
    color: #3D348B;
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: #5A4FCF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #3D348B;
}

/* Skills Section */
.skill-category {
    margin-bottom: 20px;
}

.skill-category h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.skill-tag {
    background: linear-gradient(135deg, #5A4FCF, #9E89F3);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Photography Slideshow Section */
.photography-section {
    margin-bottom: 30px;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.slide.active {
    display: block;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 6px 10px;
    margin-top: -18px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    background: rgba(61, 52, 139, 0.7);
    border-radius: 3px;
    user-select: none;
    text-decoration: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
    background: rgba(61, 52, 139, 0.9);
}

.dots-container {
    text-align: center;
    margin: 8px 0;
}

.dot {
    cursor: pointer;
    height: 6px;
    width: 6px;
    margin: 0 3px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.dot.active, .dot:hover {
    background-color: #3D348B;
}

.photography-link {
    text-align: center;
    margin-top: 12px;
}

.photography-link a {
    color: #E1306C;
    text-decoration: none;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.photography-link a:hover {
    color: #833AB4;
}

/* Main Body */
.main-body {
    padding: 20px;
}

.main-body section {
    margin-bottom: 30px;
}

.main-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #3D348B;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.main-body h3 i {
    color: #5A4FCF;
}

/* Experience Section */
.experience-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.experience-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #3D348B;
    flex: 1;
    min-width: 200px;
}

.company {
    font-size: 14px;
    font-weight: 500;
    color: #5A4FCF;
}

.period {
    font-size: 12px;
    color: #666;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 4px;
}

.experience-details {
    list-style: none;
    padding-left: 0;
}

.experience-details li {
    font-size: 14px;
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
}

.experience-details li::before {
    content: "•";
    color: #3D348B;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Education Section */
.education-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.education-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #3D348B;
    flex: 1;
}

.institution {
    font-size: 14px;
    font-weight: 500;
    color: #5A4FCF;
}

.year {
    font-size: 12px;
    color: #666;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 4px;
}

.education-item p {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Interests Section */
.interest-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.interest-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #3D348B;
    margin-bottom: 8px;
}

.interest-details {
    list-style: none;
    padding-left: 0;
}

.interest-details li {
    font-size: 14px;
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
}

.interest-details li::before {
    content: "•";
    color: #3D348B;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.interest-item p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.social-link {
    margin-top: 10px;
}

.social-link a {
    color: #E1306C;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.social-link a:hover {
    color: #833AB4;
}

/* Footer */
.footer {
    background: #3D348B;
    color: white;
    padding: 20px;
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-text p {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .experience-header,
    .education-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .signature {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 0;
        border-radius: 0;
    }
    
    .header {
        padding: 20px 15px;
    }
    
    .main-body,
    .sidebar {
        padding: 15px;
    }
    
    .name {
        font-size: 20px;
    }
    
    .title {
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    .container {
        box-shadow: none;
        max-width: none;
    }
    
    .header {
        background: #3D348B !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    
    .sidebar {
        background: #f8f9fa !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    
    .skill-tag,
    .tech-tag {
        background: #3D348B !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    
    .footer {
        background: #3D348B !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
} 