/*
Theme Name: Tech Savvy Girl
Theme URI: https://techsavvygirl.com
Author: Tech Savvy Girl
Author URI: https://techsavvygirl.com
Description: A clean, modern single-page resume theme with orange accent colors
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tech-savvy-girl
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
*/

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
    margin-bottom: 20px;
}

.site-logo {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.site-title {
    font-size: 3em;
    font-weight: 700;
    margin: 20px 0 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.site-tagline {
    font-size: 1.3em;
    font-weight: 300;
    opacity: 0.95;
}

/* Navigation */
.main-navigation {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    background-color: #ff6b35;
    color: white;
}

/* Main Content */
.site-content {
    background-color: white;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Section Styles */
.resume-section {
    padding: 60px 40px;
    border-bottom: 1px solid #eee;
}

.resume-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 2.5em;
    color: #ff6b35;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff6b35;
    display: inline-block;
}

/* About Section */
.about-content {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

.about-content p {
    margin-bottom: 15px;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.skill-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.skill-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.skill-level {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 5px;
    transition: width 1s ease;
}

/* Experience Section */
.experience-item {
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 3px solid #ff6b35;
}

.experience-item:last-child {
    margin-bottom: 0;
}

.job-title {
    font-size: 1.5em;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 5px;
}

.company-name {
    font-size: 1.2em;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
}

.job-duration {
    color: #999;
    font-style: italic;
    margin-bottom: 15px;
}

.job-description {
    color: #555;
    line-height: 1.8;
}

.job-description ul {
    margin-left: 20px;
    margin-top: 10px;
}

.job-description li {
    margin-bottom: 8px;
}

/* Education Section */
.education-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.degree-title {
    font-size: 1.3em;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 5px;
}

.school-name {
    font-size: 1.1em;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
}

.education-duration {
    color: #999;
    font-style: italic;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: #ff6b35;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.contact-icon {
    font-size: 2.5em;
    color: #ff6b35;
    margin-bottom: 15px;
}

.contact-item:hover .contact-icon {
    color: white;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.contact-value {
    color: #666;
}

.contact-item:hover .contact-value {
    color: white;
}

.contact-value a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-value a {
    color: white;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 0;
}

.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    color: #ff6b35;
    text-decoration: none;
}

.footer-content a:hover {
    color: #f7931e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 2em;
    }
    
    .site-tagline {
        font-size: 1em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .resume-section {
        padding: 40px 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation a {
        text-align: center;
    }
    
    .skills-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .main-navigation,
    .site-footer {
        display: none;
    }
    
    .site-content {
        box-shadow: none;
        margin: 0;
    }
    
    .resume-section {
        page-break-inside: avoid;
    }
}