/* ========================================
   VERONIKA WANG - PORTFOLIO STYLES
   A soft, elegant aesthetic with modern touches
   ======================================== */

/* ===== CSS Variables ===== */
:root {
    /* Primary Color Palette - Soft Rose & Lavender */
    --primary-color: #9b7bb8;
    --primary-light: #c4a7d7;
    --primary-dark: #7a5a99;
    --accent-color: #e8b4b8;
    --accent-light: #f5d5d8;
    
    /* Neutral Colors */
    --bg-cream: #faf8f5;
    --bg-soft: #f5f0eb;
    --bg-card: #ffffff;
    --text-dark: #2d2d2d;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #9b7bb8 0%, #e8b4b8 100%);
    --gradient-soft: linear-gradient(135deg, #f5f0eb 0%, #faf8f5 100%);
    --gradient-hero: linear-gradient(135deg, #faf8f5 0%, #f0e8f5 50%, #faf8f5 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --card-padding: 30px;
    
    /* Borders & Shadows */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --shadow-soft: 0 4px 20px rgba(155, 123, 184, 0.08);
    --shadow-hover: 0 8px 40px rgba(155, 123, 184, 0.15);
    --shadow-card: 0 2px 15px rgba(0, 0, 0, 0.05);
    
    /* Decorative */
    --symbol-dot: "✦";
    --symbol-heart: "♥";
    --symbol-sparkle: "✧";
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

::selection {
    background: var(--accent-light);
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Navigation ===== */
.navbar {
    background: #ffffff;
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar .container {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand .navbar-logo {
    height: 120px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
    vertical-align: top;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-medium) !important;
    margin: 0 15px;
    padding: 8px 0 !important;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* ===== Hero Section ===== */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(155, 123, 184, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    padding: 60px 0;
}

.greeting-text {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.greeting-symbol {
    margin-right: 8px;
    opacity: 0.9;
}

.subtitle-dot {
    margin: 0 10px;
    font-size: 0.6em;
    color: var(--accent-color);
    vertical-align: middle;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 500px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
}

.profile-placeholder {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.profile-placeholder i {
    font-size: 8rem;
    color: white;
    opacity: 0.9;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.floating-badge {
    position: absolute;
    background: var(--bg-card);
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-hover);
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.badge-1 {
    top: 30px;
    right: 30px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 80px;
    left: 10px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 30px;
    right: 50px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Buttons ===== */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 123, 184, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(155, 123, 184, 0.4);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--bg-card);
    padding: 60px 0;
    border-top: 1px solid rgba(155, 123, 184, 0.1);
    border-bottom: 1px solid rgba(155, 123, 184, 0.1);
}

.stat-item {
    padding: 24px 20px;
    position: relative;
}

.stat-item::before {
    content: var(--symbol-dot);
    display: block;
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    opacity: 0.8;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== Section Styles ===== */
.content-section {
    padding: var(--section-padding) 0;
}

.alt-bg {
    background: var(--bg-soft);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::before {
    content: var(--symbol-sparkle);
    display: block;
    font-size: 0.4em;
    color: var(--accent-color);
    margin-bottom: 8px;
    letter-spacing: 0.4em;
}

.section-title::after {
    content: "✦ —— ✦";
    display: block;
    font-size: 0.35em;
    color: var(--primary-light);
    margin: 16px auto 0;
    letter-spacing: 0.2em;
}

/* ===== Page Headers ===== */
.page-header {
    background: var(--gradient-hero);
    padding: 160px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.page-subtitle::before {
    content: "✧ ";
    color: var(--accent-color);
    margin-right: 4px;
}

/* ===== Skill Cards ===== */
.skill-card {
    background: var(--bg-card);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 123, 184, 0.1);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: var(--symbol-sparkle);
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1rem;
    color: var(--accent-light);
    opacity: 0.7;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.skill-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.skill-icon i {
    font-size: 1.5rem;
    color: white;
}

.skill-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-badge {
    background: var(--bg-soft) !important;
    color: var(--primary-dark) !important;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ===== Award Cards ===== */
.award-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 123, 184, 0.1);
    height: 100%;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.award-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.award-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.award-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Education Page ===== */
.education-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 40px;
    align-items: flex-start;
    border: 1px solid rgba(155, 123, 184, 0.1);
}

.education-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.education-icon i {
    font-size: 2.5rem;
    color: white;
}

.education-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.location {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 20px;
}

.location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.gpa-highlight {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-soft);
    padding: 15px 25px;
    border-radius: 50px;
}

.gpa-label {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.gpa-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.focus-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.focus-list li {
    padding: 8px 0;
    color: var(--text-medium);
}

.focus-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ===== Program Cards ===== */
.program-card {
    background: var(--bg-card);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 123, 184, 0.1);
}

.program-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.program-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.program-date {
    background: var(--bg-soft);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 500;
}

.program-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.program-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.program-card p:last-child {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== Awards Timeline ===== */
.awards-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
    text-align: right;
}

.timeline-content {
    flex: 1;
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border-left: 3px solid var(--primary-color);
}

.award-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-soft);
    flex-wrap: wrap;
    gap: 10px;
}

.award-entry:last-child {
    border-bottom: none;
}

.award-name {
    font-weight: 500;
    color: var(--text-dark);
}

.award-badge {
    background: var(--gradient-primary) !important;
    color: white !important;
    font-size: 0.8rem;
    padding: 4px 12px;
}

/* ===== Interest Cards ===== */
.interest-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 123, 184, 0.1);
}

.interest-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.interest-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.interest-card h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-dark);
}

/* ===== Experience Page ===== */
.experience-grid {
    display: grid;
    gap: 25px;
}

.experience-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(155, 123, 184, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.experience-card:hover {
    box-shadow: var(--shadow-hover);
}

.experience-card.featured {
    border-left: 4px solid var(--primary-color);
}

.experience-card .card-body {
    padding: var(--card-padding);
}

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

.card-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.card-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
}

.experience-date {
    background: var(--bg-soft);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
    white-space: nowrap;
}

.experience-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.experience-location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.experience-details {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.experience-details li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.experience-details li::before {
    content: var(--symbol-dot);
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.85em;
}

.experience-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-toggle {
    background: var(--bg-soft);
    border: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-toggle:hover {
    background: var(--primary-light);
    color: white;
}

.hidden-details {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Leadership Cards ===== */
.leadership-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(155, 123, 184, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.leadership-card::before {
    content: var(--symbol-sparkle);
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.9rem;
    color: var(--accent-light);
    opacity: 0.7;
}

.leadership-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.leadership-card .card-body {
    padding: var(--card-padding);
}

.leadership-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.leadership-icon i {
    font-size: 1.3rem;
    color: white;
}

.leadership-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.leadership-card .role {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.leadership-card p:last-child {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== Involvement Table ===== */
.involvement-table {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.involvement-table thead {
    background: var(--gradient-primary);
}

.involvement-table thead th {
    color: white;
    font-weight: 600;
    padding: 15px 20px;
    border: none;
}

.involvement-table tbody td {
    padding: 15px 20px;
    border-color: var(--bg-soft);
    vertical-align: middle;
}

.involvement-table tbody tr:hover {
    background: var(--bg-soft);
}

/* ===== Contact Page ===== */
.contact-info-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    height: 100%;
}

.contact-info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info-card > p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-details a,
.contact-details p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.availability-card {
    background: var(--bg-soft);
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.availability-card h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.availability-card h4 i {
    margin-right: 8px;
}

.availability-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.availability-card li {
    padding: 5px 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.availability-card li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 10px;
}

/* ===== Contact Form ===== */
.contact-form-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.contact-form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 1px solid rgba(155, 123, 184, 0.2);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(155, 123, 184, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===== Quick Link Cards ===== */
.quick-link-card {
    display: block;
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 123, 184, 0.1);
    text-decoration: none;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.quick-link-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quick-link-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.quick-link-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 30px 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer p::before {
    content: "♥ ";
    color: var(--accent-color);
    opacity: 0.8;
}

.footer-link {
    color: white;
    font-size: 1.3rem;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-light);
    transform: scale(1.1);
}

/* ===== Skills Section (Home Page) ===== */
.skills-section {
    padding: var(--section-padding) 0;
}

/* ===== Awards Preview Section ===== */
.awards-preview-section {
    padding: var(--section-padding) 0;
    background: var(--bg-soft);
}

/* ===== Alert Styles ===== */
.alert-success {
    background: rgba(155, 123, 184, 0.1);
    border: 1px solid var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--border-radius-sm);
}

.alert-success i {
    margin-right: 8px;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-description {
        margin: 0 auto 35px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        width: 400px;
        height: 400px;
    }
    
    .profile-placeholder {
        width: 300px;
        height: 300px;
        margin: 50px auto;
    }
    
    .profile-placeholder i {
        font-size: 6rem;
    }
    
    .education-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
        --card-padding: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .floating-badge {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-year {
        text-align: left;
    }
    
    .award-entry {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .experience-header {
        flex-direction: column;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .nav-link {
        margin: 5px 0;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .gpa-highlight {
        flex-direction: column;
        gap: 5px;
        padding: 15px 20px;
    }
}

/* ========================================
   REACHONE PAGE STYLES
   ======================================== */

/* Introduction Section */
.intro-section-reachone {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--bg-cream);
}

.intro-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.intro-image-main {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

.intro-content-wrapper {
    padding-left: 40px;
}

.intro-greeting {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.intro-vision {
    margin-top: 30px;
    padding: 25px;
    background: var(--bg-soft);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius-sm);
    font-size: 1.05rem;
}

.intro-vision strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.reachone-hero {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--gradient-hero);
}

.hero-content-reachone {
    padding-right: 30px;
}

.hero-image-reachone {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-large {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

.section-image-large {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.reachone-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reachone-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.reachone-overview {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2rem;
}

/* Project Snapshot Badges */
.project-snapshot {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.snapshot-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-card);
}

/* Problem List */
.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.problem-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.problem-statement {
    font-size: 1.2rem;
    color: var(--text-dark);
    text-align: center;
    padding: 20px;
    background: var(--bg-soft);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

/* Architecture Diagram */
.architecture-diagram {
    padding: 40px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.arch-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.arch-top {
    margin-bottom: 30px;
}

.arch-middle {
    margin: 30px 0;
}

.arch-bottom {
    margin-top: 30px;
    flex-wrap: wrap;
}

.arch-box {
    background: var(--bg-soft);
    border: 2px solid var(--primary-light);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.arch-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.arch-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.arch-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.arch-box p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin: 0;
}

.arch-uav {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

.arch-uav i,
.arch-uav h4,
.arch-uav p {
    color: white;
}

.arch-fusion {
    background: var(--accent-light);
    border-color: var(--accent-color);
}

.arch-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.arch-output {
    flex: 1;
    min-width: 140px;
}

/* Technical Approach */
.tech-section {
    padding: 25px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary-color);
}

.tech-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.iteration-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.iteration-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.iteration-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Validation Box */
.validation-box {
    background: var(--bg-card);
    border: 2px solid var(--primary-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.validation-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.validation-list {
    list-style: none;
    padding: 0;
}

.validation-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.validation-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ReachLink Features */
.reachlink-features {
    list-style: none;
    padding: 0;
}

.reachlink-features li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.reachlink-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.ai-impact-box {
    background: var(--bg-soft);
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    margin-top: 20px;
}

.ai-impact-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Recognition Grid */
.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.recognition-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.recognition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.recognition-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.recognition-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.recognition-card p {
    color: var(--text-medium);
    margin: 0;
}

.recognition-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Collaboration Box */
.collaboration-box {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--primary-color);
}

.collaboration-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Poster Section */
.poster-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.poster-placeholder {
    width: 100%;
    min-height: 500px;
    background: var(--bg-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 2px dashed var(--primary-light);
}

.poster-image-wrap {
    width: 100%;
    background: var(--bg-soft);
    padding: 20px;
    border-radius: var(--border-radius);
}

.poster-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
}

.poster-placeholder i {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.placeholder-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.placeholder-instruction {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.key-findings-box {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    margin-top: 30px;
}

.findings-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.findings-list {
    list-style: none;
    padding: 0;
}

.findings-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.findings-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Gallery Grid */
.gallery-grid {
    margin-top: 30px;
}

.gallery-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px dashed var(--primary-light);
}

.gallery-placeholder i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.gallery-placeholder .placeholder-label {
    font-size: 0.9rem;
    text-align: center;
}

.gallery-media {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.gallery-media-large {
    width: 100%;
    height: auto;
    display: block;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.gallery-media-large:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.poster-pres-image {
    object-position: right center;
}

.gallery-caption {
    font-size: 0.85rem;
    color: var(--text-medium);
    text-align: center;
    padding: 10px;
    margin: 0;
}

/* CTA Section */
.cta-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for ReachOne */
@media (max-width: 768px) {
    .intro-section-reachone {
        padding-top: 120px;
    }
    
    .intro-content-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .intro-greeting {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .reachone-title {
        font-size: 3rem;
    }
    
    .reachone-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-content-reachone {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-image-large {
        max-width: 100%;
    }
    
    .section-image-large {
        margin-bottom: 30px;
    }
    
    .arch-row {
        flex-direction: column;
    }
    
    .arch-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .arch-box {
        width: 100%;
        max-width: 300px;
    }
    
    .recognition-grid {
        grid-template-columns: 1fr;
    }
    
    .poster-placeholder {
        min-height: 300px;
    }
    
    .gallery-media-large {
        min-height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   POETRY PAGE STYLES
   ======================================== */

/* Hero Section */
.poetry-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--gradient-hero);
}

.poetry-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Inspiration Section */
.inspiration-box {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--accent-color);
    margin-top: 30px;
}

.inspiration-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.inspiration-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.inspiration-text:last-child {
    margin-bottom: 0;
}

/* Highlights Grid */
.poetry-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.highlight-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.highlight-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.org-logo {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.highlight-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.highlight-card p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.95rem;
}

/* Poem Card */
.poem-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--accent-color);
}

.poem-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-soft);
}

.poem-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.poem-note {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.poem-note i {
    color: var(--accent-color);
}

.btn-copy-poem {
    background: var(--primary-light);
    color: var(--primary-dark);
    border: none;
    padding: 8px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-copy-poem:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-copy-poem.btn-success {
    background: #28a745;
    color: white;
}

.poem-content {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.poem-line {
    margin: 0;
    padding: 2px 0;
    white-space: pre-wrap;
}

/* Poetry Gallery */
.poetry-gallery {
    margin-top: 30px;
}

.poetry-image-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.poetry-image-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.poetry-gallery-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px;
}

/* Performances List */
.performances-list {
    margin-top: 30px;
}

.performance-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary-light);
    transition: all 0.3s ease;
}

.performance-item:hover {
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-soft);
}

.performance-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.performance-meta {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.performance-description {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* Responsive Styles for Poetry */
@media (max-width: 768px) {
    .poetry-title {
        font-size: 3rem;
    }
    
    .inspiration-box {
        padding: 25px;
    }
    
    .inspiration-title {
        font-size: 1.5rem;
    }
    
    .inspiration-text {
        font-size: 1rem;
    }
    
    .poetry-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .poem-card {
        padding: 25px;
    }
    
    .poem-title {
        font-size: 1.5rem;
    }
    
    .poem-content {
        font-size: 1rem;
    }
    
    .poetry-gallery-img {
        min-height: 250px;
    }
}

/* ========================================
   G.L.O.W PAGE STYLES
   ======================================== */

/* Hero Section */
.glow-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--gradient-hero);
}

.glow-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.glow-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.glow-tagline {
    font-size: 1.3rem;
    color: var(--text-medium);
    font-style: italic;
}

/* Video Wrapper */
.video-wrapper {
    margin: 30px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    background: #000;
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-fallback {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-soft);
    border-radius: var(--border-radius-sm);
}

.video-fallback a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.video-fallback a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* G.L.O.W Content */
.glow-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.inspiration-content,
.mentorship-content {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.mission-box {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--accent-color);
}

.mission-statement {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mission-statement strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.impact-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.impact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.impact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.impact-card p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* Responsive Styles for G.L.O.W */
@media (max-width: 768px) {
    .glow-title {
        font-size: 3rem;
    }
    
    .glow-subtitle {
        font-size: 1.5rem;
    }
    
    .glow-tagline {
        font-size: 1.1rem;
    }
    
    .inspiration-content,
    .mentorship-content,
    .mission-box {
        padding: 25px;
    }
    
    .glow-text {
        font-size: 1rem;
    }
    
    .mission-statement {
        font-size: 1.1rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PERSONAL PAGE STYLES
   ======================================== */

.personal-hero {
    padding-top: 80px;
    padding-bottom: 0;
}

.personal-cover-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow-hover);
}

/* Horizontal cover so face fully fits */
.personal-cover-horizontal {
    aspect-ratio: 21 / 9;
    max-height: 55vh;
}

.personal-cover-horizontal .personal-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.personal-cover-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.personal-cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
}

.personal-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.personal-hero-tagline {
    font-size: 1.1rem;
    opacity: 0.95;
    font-style: italic;
}

/* Intro card */
.personal-intro-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--accent-color);
}

.intro-blurb {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.intro-blurb:last-child {
    margin-bottom: 0;
}

.intro-detail {
    font-style: italic;
    color: var(--text-dark);
}

/* Currently listening — showcase only, bigger & prettier */
.listening-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 20px 0;
}

.listening-card {
    text-align: center;
    max-width: 280px;
    transition: transform 0.3s ease;
}

.listening-card:hover {
    transform: translateY(-8px);
}

.album-cover-large {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    margin-bottom: 18px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.album-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.album-artist {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Legacy small album covers (if used elsewhere) */
.album-cover {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
}

.cover-caption {
    font-size: 0.85rem;
    color: var(--text-medium);
    text-align: center;
}

/* Passions */
.passions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.passion-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-card);
    border-top: 4px solid var(--primary-light);
}

.passion-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.passion-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.passion-item p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.8;
}

/* Hobbies */
.hobbies-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hobby-block {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-card);
}

.hobby-block h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hobby-block p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.8;
}

.hobby-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: var(--shadow-card);
}

.hobby-img-lg {
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

/* Personal page photo highlights — bigger */
.personal-photo-row {
    justify-content: center;
}

.personal-photo-lg {
    width: 100%;
    height: 320px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.personal-photo-lg:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Quirks */
.quirks-list {
    list-style: none;
    padding: 0;
}

.quirks-list li {
    padding: 14px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.quirks-list li::before {
    content: "♥";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1rem;
}

.fun-skill-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.fun-skill-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.fun-skill-caption {
    padding: 20px;
    text-align: center;
    color: var(--text-medium);
    font-style: italic;
    margin: 0;
}

/* Values */
.values-box {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-color);
}

.values-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 0;
}

.values-box strong {
    color: var(--primary-color);
}

/* Responsive Personal */
@media (max-width: 768px) {
    .personal-cover-horizontal {
        aspect-ratio: 16 / 9;
        max-height: 45vh;
    }
    
    .personal-cover-overlay {
        padding: 25px 20px;
    }
    
    .personal-hero-title {
        font-size: 1.8rem;
        color: #ffffff;
    }
    
    .personal-intro-card {
        padding: 25px;
    }
    
    .intro-blurb {
        font-size: 1rem;
    }
    
    .listening-showcase {
        gap: 35px;
    }
    
    .listening-card {
        max-width: 100%;
    }
    
    .album-cover-large {
        width: 220px;
        height: 220px;
    }
    
    .album-title {
        font-size: 1.2rem;
    }
    
    .personal-photo-lg {
        height: 260px;
    }
    
    .hobby-img-lg {
        height: 220px;
    }
    
    .passion-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .passion-icon {
        font-size: 2rem;
    }
    
    .quirks-list li {
        padding-left: 26px;
    }
    
    .values-box {
        padding: 25px;
    }
    
    .values-box p {
        font-size: 1rem;
    }
}
