/* static/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #bdc3c7;
    padding-bottom: 5px;
    margin-top: 30px;
    font-weight: 700;
}

h3 {
    font-size: 1.1rem;
    margin-top: 15px;
    font-weight: 600;
}

section {
    margin-bottom: 25px;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2980b9;
}

/* Form Styling */
.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    width: 100%;
    margin: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    outline: none;
}

textarea {
    resize: vertical;
}

.btn {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.multi-entry-group {
    border: 1px solid #ecf0f1;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    background-color: #fcfcfc;
}

.date-group {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.date-group input {
    flex: 1;
}

/* Resume Template Styling */
.resume-container {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    width: 100%;
    margin: 20px 0;
}

.resume-header {
    text-align: center;
    margin-bottom: 40px;
}

.resume-header h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
}

.contact-info, .links {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 8px 0;
}

.links a {
    margin: 0 5px;
    color: #3498db;
}

.resume-section {
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.summary-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}

.job-title, .degree, .project-title {
    font-size: 1.2rem;
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

.company-name, .institution {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 400;
    margin: 0;
}

.entry-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.9rem;
    color: #95a5a6;
    flex-wrap: wrap;
}

.experience-entry ul, .project-entry ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 0;
}

.experience-entry li {
    font-size: 1rem;
    margin-bottom: 5px;
}

.gpa, .project-tech {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 5px;
}

.skills-list {
    font-size: 1.1rem;
    line-height: 1.8;
}
