* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #E83F6F;
    --darker-pink: #2274A5;
    --light-pink: #FFBF00;
    --text-white: #FFFFFF;
    --text-dark: #32936F;
    --primary-green: #32936F;
    --gradient-pink: linear-gradient(135deg, #E83F6F 0%, #2274A5 100%);
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--primary-pink);
    color: var(--text-white);
    line-height: 1.6;
}

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

/* Header */
header {
    background: var(--primary-pink);
    padding: 40px 0 20px;
    text-align: center;
}

.logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

header h1 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.location {
    font-size: 1.1rem;
    margin-bottom: 5px;
    opacity: 0.95;
}

.pronouns {
    font-size: 0.9rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light-pink);
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--primary-pink);
    background: var(--light-pink);
    padding: 5px 10px;
    border-radius: 5px;
}

nav a.active {
    color: var(--primary-pink);
    background: var(--light-pink);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-text h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--light-pink);
    display: inline-block;
    padding-bottom: 10px;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.hero-image img {
    width: auto;
    max-width: 450px;
    max-height: 450px;
    object-fit: contain;
    border-radius: 15px;
    border: 5px solid var(--light-pink);
}

.hero-image .image-placeholder {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 100px 20px;
    text-align: center;
    border: 3px dashed rgba(255, 255, 255, 0.5);
}

.socials {
    text-align: center;
    margin: 60px 0;
}

.socials h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.socials a {
    display: inline-block;
    color: var(--text-white);
    text-decoration: underline;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.socials a:hover {
    color: var(--primary-pink);
    background: var(--light-pink);
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
}

blockquote {
    text-align: center;
    font-style: italic;
    font-size: 1.3rem;
    margin: 60px auto;
    max-width: 800px;
    line-height: 1.8;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Passion Section */
.passion {
    padding: 80px 0;
}

.passion h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.venn-diagram {
    position: relative;
    height: 420px;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    padding-bottom: 400px;
}

.circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.25);
    border: 3px solid var(--light-pink);
    transition: all 0.5s ease, background-image 0.5s ease;
    background-size: cover;
    background-position: center;
}

.circle span {
    position: relative;
    padding: 10px;
    transition: opacity 0.3s ease;
}

/* Position text toward outer edges */
.circle-1 span {
    transform: translateY(-30px);
}

.circle-2 span {
    transform: translate(-40px, 10px);
}

.circle-3 span {
    transform: translate(40px, 10px);
}

.circle:hover {
    z-index: 10;
    transform: scale(1.08);
    background-size: cover;
    background-position: center;
    border-color: var(--light-pink);
    box-shadow: 0 0 30px rgba(255, 191, 0, 0.6);
}

.circle-1:hover {
    background-image: url('images/passion-1.jpg?v=2');
    background-color: rgba(255, 255, 255, 0.3);
}

.circle-2:hover {
    background-image: url('images/passion-2.jpg');
    background-color: rgba(255, 255, 255, 0.3);
}

.circle-3:hover {
    background-image: url('images/passion-3.jpg?v=2');
    background-color: rgba(255, 255, 255, 0.3);
}

.circle:hover span {
    opacity: 0;
}

/* Circle details styling */
.circle-details {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.circle-details li {
    color: white;
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 10px 15px;
    position: absolute;
    background: var(--text-dark);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 200px;
}

.circle:hover .circle-details {
    opacity: 1;
    visibility: visible;
}

/* Position items outside venn diagram for circle-1 (3 items) */
.circle-1 .circle-details li:nth-child(1) {
    top: -40px;
    left: -230px;
}

.circle-1 .circle-details li:nth-child(2) {
    top: 150px;
    left: -240px;
}

.circle-1 .circle-details li:nth-child(3) {
    top: -60px;
    right: -230px;
}

/* Position items outside venn diagram for circle-2 (4 items) - horizontal row above */
.circle-2 .circle-details li:nth-child(1) {
    top: -200px;
    left: -350px;
}

.circle-2 .circle-details li:nth-child(2) {
    top: -300px;
    left: -120px;
}

.circle-2 .circle-details li:nth-child(3) {
    top: -300px;
    right: -120px;
}

.circle-2 .circle-details li:nth-child(4) {
    top: -200px;
    right: -350px;
}

/* Position items outside venn diagram for circle-3 (4 items) - horizontal row above */
.circle-3 .circle-details li:nth-child(1) {
    top: 100px;
    left: -250px;
}

.circle-3 .circle-details li:nth-child(2) {
    top: -200px;
    left: -150px;
}

.circle-3 .circle-details li:nth-child(3) {
    top: -140px;
    right: -120px;
}

.circle-3 .circle-details li:nth-child(4) {
    top: 100px;
    right: -250px;
}

/* Override transform for animated circles on hover */
.circle-1.animate:hover {
    transform: translateX(-50%) scale(1.08);
}

.circle-2.animate:hover,
.circle-3.animate:hover {
    transform: scale(1.08);
}

/* Starting positions (all stacked in center) */
.circle-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Animated end positions - triangular with overlap in center */
.circle-1.animate {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.circle-2.animate {
    top: auto;
    bottom: 0;
    left: 50px;
    transform: none;
}

.circle-3.animate {
    top: auto;
    bottom: 0;
    right: 50px;
    left: auto;
    transform: none;
}

/* Education Section */
.education {
    padding: 80px 0;
}

.education-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.education-hover-wrapper {
    display: inline-block;
    position: relative;
}

.education-hover-wrapper img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-pink);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-hover-wrapper .logo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--darker-pink);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-hover-wrapper:hover img,
.education-hover-wrapper:hover .logo-placeholder {
    transform: scale(2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.education-banner {
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    max-width: 800px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10000;
    line-height: 1.6;
}

.education-hover-wrapper:hover .education-banner {
    opacity: 1;
    visibility: visible;
}

.education-details .year {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.education-details h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.education-details .degree {
    font-size: 1.1rem;
    margin-bottom: 5px;
    line-height: 1.6;
}

.education-details .location-info {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--light-pink);
    color: var(--darker-pink);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    margin: 40px auto;
    display: block;
    width: fit-content;
    border: 3px solid var(--light-pink);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--darker-pink);
    color: white;
    border-color: var(--darker-pink);
    transform: scale(1.05);
}

.education-gallery {
    margin-top: 60px;
}

.gallery-placeholder {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 100px 20px;
    text-align: center;
    border: 3px dashed rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

/* Projects Section */
.projects {
    padding: 40px 0 80px 0;
}

.projects-intro {
    text-align: center;
    margin-bottom: 20px;
}

.heart-icon {
    margin-bottom: 15px;
}

.projects-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Search Container */
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0 10px 0;
}

.search-input {
    width: 100%;
    max-width: 350px;
    padding: 6px 14px;
    font-size: 0.85rem;
    border: 2px solid var(--light-pink);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--darker-pink);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: all 0.3s ease;
}

.sort-select {
    padding: 6px 12px 6px 14px;
    font-size: 0.8rem;
    border: 2px solid var(--light-pink);
    border-radius: 20px;
    background: var(--light-pink);
    color: var(--darker-pink);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232274A5' d='M6 9L2 5h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 28px;
}

.sort-select:hover {
    background: var(--darker-pink);
    color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L2 5h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 93, 154, 0.3);
}

.sort-select:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(232, 93, 154, 0.3);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23E85D9A' d='M6 9L2 5h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.search-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.search-input::placeholder {
    color: var(--darker-pink);
    opacity: 0.6;
}

/* Filter Container */
.filter-container {
    text-align: center;
    margin: 10px 0 25px 0;
    padding: 10px 15px;
    background: transparent;
    border-radius: 15px;
}

.filter-container h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.filter-btn {
    background: var(--light-pink);
    color: var(--darker-pink);
    border: 2px solid var(--light-pink);
    padding: 4px 8px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.filter-btn:hover {
    background: var(--darker-pink);
    color: white;
    border-color: var(--darker-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 116, 165, 0.3);
}

.filter-btn.active {
    background: var(--darker-pink);
    color: white;
    border-color: var(--darker-pink);
    box-shadow: 0 5px 15px rgba(34, 116, 165, 0.4);
}

/* Filter Button Colors */
.filter-btn[data-filter="app-development"] {
    background: #4A90D9;
    color: white;
    border-color: #4A90D9;
}
.filter-btn[data-filter="app-development"]:hover,
.filter-btn[data-filter="app-development"].active {
    background: #3A7BC8;
    border-color: white;
    outline: 3px solid white;
    outline-offset: 2px;
}

.filter-btn[data-filter="digital-work"] {
    background: #9B59B6;
    color: white;
    border-color: #9B59B6;
}
.filter-btn[data-filter="digital-work"]:hover,
.filter-btn[data-filter="digital-work"].active {
    background: #8E44AD;
    border-color: white;
    outline: 3px solid white;
    outline-offset: 2px;
}

.filter-btn[data-filter="physical-builds"] {
    background: #E67E22;
    color: white;
    border-color: #E67E22;
}
.filter-btn[data-filter="physical-builds"]:hover,
.filter-btn[data-filter="physical-builds"].active {
    background: #D35400;
    border-color: white;
    outline: 3px solid white;
    outline-offset: 2px;
}

.filter-btn[data-filter="designs"] {
    background: #1ABC9C;
    color: white;
    border-color: #1ABC9C;
}
.filter-btn[data-filter="designs"]:hover,
.filter-btn[data-filter="designs"].active {
    background: #16A085;
    border-color: white;
    outline: 3px solid white;
    outline-offset: 2px;
}

.filter-btn[data-filter="academic-research"] {
    background: #34495E;
    color: white;
    border-color: #34495E;
}
.filter-btn[data-filter="academic-research"]:hover,
.filter-btn[data-filter="academic-research"].active {
    background: #2C3E50;
    border-color: white;
    outline: 3px solid white;
    outline-offset: 2px;
}

.filter-btn[data-filter="applied-research"] {
    background: #7F8C8D;
    color: white;
    border-color: #7F8C8D;
}
.filter-btn[data-filter="applied-research"]:hover,
.filter-btn[data-filter="applied-research"].active {
    background: #6C7A7B;
    border-color: white;
    outline: 3px solid white;
    outline-offset: 2px;
}

.filter-btn[data-filter="community-engagement"] {
    background: #E91E63;
    color: white;
    border-color: #E91E63;
}
.filter-btn[data-filter="community-engagement"]:hover,
.filter-btn[data-filter="community-engagement"].active {
    background: #C2185B;
    border-color: white;
    outline: 3px solid white;
    outline-offset: 2px;
}

.filter-btn[data-filter="contracted-work"] {
    background: #795548;
    color: white;
    border-color: #795548;
}
.filter-btn[data-filter="contracted-work"]:hover,
.filter-btn[data-filter="contracted-work"].active {
    background: #5D4037;
    border-color: white;
    outline: 3px solid white;
    outline-offset: 2px;
}

.filter-btn[data-filter="social-impact"] {
    background: #27AE60;
    color: white;
    border-color: #27AE60;
}
.filter-btn[data-filter="social-impact"]:hover,
.filter-btn[data-filter="social-impact"].active {
    background: #1E8449;
    border-color: white;
    outline: 3px solid white;
    outline-offset: 2px;
}

/* No Results Message */
.no-results {
    text-align: center;
    font-size: 1.3rem;
    padding: 60px 20px;
    margin: 40px 0;
    background: var(--primary-pink);
    border-radius: 15px;
    font-style: italic;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
    }
}

.project-section {
    margin-bottom: 80px;
}

.project-section h2 {
    background: var(--light-pink);
    color: var(--darker-pink);
    padding: 30px;
    text-align: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    border: 5px solid var(--light-pink);
    margin-bottom: 40px;
}

.project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding: 15px;
    border-radius: 15px;
    transition: background 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.project-card:hover {
    z-index: 10;
    background: var(--primary-pink);
}

.project-card.expanded {
    z-index: 10;
    align-items: flex-start;
    background: var(--primary-pink);
}

.project-card.hidden {
    display: none;
}

.project-icon {
    margin-bottom: 5px;
}

.project-icon .icon-placeholder {
    width: 180px;
    height: 180px;
    background: var(--light-pink);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--darker-pink);
    font-size: 1.8rem;
}

.project-icon img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    border: 2px solid var(--light-pink);
}

.project-details h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-decoration: underline;
}

.project-date {
    font-style: italic;
    margin-bottom: 10px;
    opacity: 0.9;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    justify-content: center;
}

.project-tags .tag {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    /* Default fallback */
    background: white;
    color: var(--darker-pink);
}

/* Tag Colors */
.tag.app-development { background: #4A90D9; color: white; }
.tag.digital-work { background: #9B59B6; color: white; }
.tag.physical-builds { background: #E67E22; color: white; }
.tag.designs { background: #1ABC9C; color: white; }
.tag.academic-research { background: #34495E; color: white; }
.tag.applied-research { background: #7F8C8D; color: white; }
.tag.community-engagement { background: #E91E63; color: white; }
.tag.contracted-work { background: #795548; color: white; }
.tag.social-impact { background: #27AE60; color: white; }

.project-details p {
    line-height: 1.7;
}

.project-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    width: 100%;
}

.project-card:hover .project-details,
.project-card.expanded .project-details {
    opacity: 1;
    max-height: none;
    overflow: visible;
}

.project-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.project-card.expanded .project-description {
    max-height: 600px;
    margin-top: 15px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 10px;
    text-align: left;
}

.project-card.expanded .project-description::-webkit-scrollbar {
    width: 8px;
}

.project-card.expanded .project-description::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.project-card.expanded .project-description::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.project-card.expanded .project-description::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
}

.coming-soon {
    text-align: center;
    font-size: 1.2rem;
    padding: 40px;
    opacity: 0.8;
}

.research-links {
    margin-top: 15px;
    font-style: italic;
    opacity: 0.95;
}

.research-links a {
    color: white;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.research-links a:hover {
    color: var(--primary-pink);
    background: var(--light-pink);
    padding: 3px 8px;
    border-radius: 3px;
    text-decoration: none;
}

.project-link-btn {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 10px 24px;
    background: var(--darker-pink);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid var(--darker-pink);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.project-link-btn:hover {
    background: var(--text-white);
    color: var(--darker-pink);
    border-color: var(--darker-pink);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Press Section */
.press {
    padding: 80px 0;
}

.press h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.press-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.press-photo-container {
    position: relative;
    width: auto;
    max-width: 350px;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.press-gallery img {
    width: auto;
    max-width: 350px;
    max-height: 350px;
    object-fit: contain;
    border-radius: 15px;
    border: 5px solid var(--light-pink);
    transition: filter 0.3s ease;
    display: block;
}

.press-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(50, 147, 111, 0.9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 30px;
}

.press-photo-overlay p {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
}

.press-photo-container:hover img {
    filter: saturate(0.3);
}

.press-photo-container:hover .press-photo-overlay {
    opacity: 1;
}

.press-year {
    margin-bottom: 50px;
    border-left: 5px solid var(--text-dark);
    padding-left: 30px;
}

.press-year h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.press-category {
    margin-bottom: 30px;
}

.press-category h4 {
    background: var(--light-pink);
    color: var(--darker-pink);
    padding: 15px 30px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.press-category p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.press-category ul {
    list-style: none;
    padding-left: 0;
}

.press-category ul li {
    padding: 8px 0;
}

.press-category ul li a {
    color: var(--text-white);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.press-category ul li a:hover {
    color: var(--primary-pink);
    background: var(--light-pink);
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 40px;
}

.contact-info a {
    color: var(--text-white);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-pink);
    background: var(--light-pink);
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}

.social-links {
    margin-top: 30px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 3px solid var(--light-pink);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    background: white;
    box-shadow: 0 0 0 3px rgba(50, 147, 111, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--light-pink);
    color: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.social-links p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-links a {
    margin: 0 15px;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonies {
    padding: 80px 0;
    background: var(--darker-pink);
}

.testimonies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-white);
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--light-pink);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    color: var(--text-white);
}

.testimonial-content cite {
    display: block;
    text-align: right;
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-pink);
    font-style: normal;
    margin-top: 20px;
}

/* Footer */
footer {
    background: var(--primary-pink);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

footer p {
    opacity: 0.9;
}

.resume-button {
    display: inline-block;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.resume-button:hover {
    color: var(--darker-pink);
}

/* Responsive Design */
@media (max-width: 968px) {
    header h1 {
        font-size: 2rem;
    }

    nav {
        gap: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .venn-diagram {
        height: 380px;
        width: 420px;
    }

    .circle {
        width: 210px;
        height: 210px;
        font-size: 1rem;
    }

    .circle-2.animate {
        left: 30px;
        bottom: 0;
    }

    .circle-3.animate {
        right: 30px;
        bottom: 0;
    }

    .circle-details {
        width: 400px;
        height: 400px;
    }

    .circle-details li {
        font-size: 0.7rem;
        padding: 8px 12px;
        max-width: 150px;
    }

    .circle-1 .circle-details li:nth-child(1),
    .circle-2 .circle-details li:nth-child(1),
    .circle-3 .circle-details li:nth-child(1) {
        top: -15px;
    }

    .circle-1 .circle-details li:nth-child(2),
    .circle-2 .circle-details li:nth-child(3),
    .circle-3 .circle-details li:nth-child(3) {
        bottom: -15px;
        left: -20px;
    }

    .circle-1 .circle-details li:nth-child(3),
    .circle-2 .circle-details li:nth-child(4),
    .circle-3 .circle-details li:nth-child(4) {
        bottom: -15px;
        right: -20px;
    }

    .circle-2 .circle-details li:nth-child(2),
    .circle-3 .circle-details li:nth-child(2) {
        top: -15px;
        right: -20px;
    }

    .education-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .education-logo {
        display: flex;
        justify-content: center;
    }


    .press-gallery {
        grid-template-columns: 1fr;
    }

    .press-gallery img {
        max-width: 100%;
    }

    .press-photo-container {
        max-width: 100%;
    }

    .press-photo-overlay p {
        font-size: 1rem;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .venn-diagram {
        height: 320px;
        width: 300px;
    }

    .circle {
        width: 160px;
        height: 160px;
        font-size: 0.8rem;
    }

    .circle-1.animate {
        top: 15px;
    }

    .circle-2.animate {
        left: 10px;
        bottom: 0;
    }

    .circle-3.animate {
        right: 10px;
        bottom: 0;
    }

    .circle-details {
        width: 280px;
        height: 280px;
    }

    .circle-details li {
        font-size: 0.65rem;
        padding: 6px 10px;
        max-width: 120px;
    }

    .circle-1 .circle-details li:nth-child(1),
    .circle-2 .circle-details li:nth-child(1),
    .circle-3 .circle-details li:nth-child(1) {
        top: -10px;
    }

    .circle-1 .circle-details li:nth-child(2),
    .circle-2 .circle-details li:nth-child(3),
    .circle-3 .circle-details li:nth-child(3) {
        bottom: -10px;
        left: -15px;
    }

    .circle-1 .circle-details li:nth-child(3),
    .circle-2 .circle-details li:nth-child(4),
    .circle-3 .circle-details li:nth-child(4) {
        bottom: -10px;
        right: -15px;
    }

    .circle-2 .circle-details li:nth-child(2),
    .circle-3 .circle-details li:nth-child(2) {
        top: -10px;
        right: -15px;
    }

    .project-section h2 {
        font-size: 1.5rem;
        padding: 20px;
    }
}

/* Project Modal Styles */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.project-modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
}

.project-modal-content {
    background: var(--primary-green);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
}

.project-modal-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-modal-image .project-icon {
    width: 100%;
    height: auto;
}

.project-modal-image .project-icon img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.project-modal-image .icon-placeholder {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.project-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.project-modal-title {
    flex: 1;
}

.project-modal h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.project-modal-date {
    color: white;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.project-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.project-modal-tags .tag {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.project-modal-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.project-modal-links .project-link-btn {
    margin-bottom: 0;
}

.project-modal-link {
    display: inline-block;
    margin-bottom: 25px;
    padding: 12px 28px;
    background: white;
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.project-modal-link:hover {
    background: var(--light-pink);
    color: var(--text-dark);
    border-color: var(--light-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.project-modal-description {
    color: white;
    line-height: 1.8;
    font-size: 1.05rem;
}

.project-modal-description p {
    margin-bottom: 20px;
}

.project-modal-description a {
    color: white;
    text-decoration: underline;
}

.project-modal-description a:hover {
    color: var(--light-pink);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--primary-green);
    border: 2px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 700;
}

.modal-close-btn:hover {
    background: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
    transform: rotate(90deg);
}

.modal-back-btn {
    display: none;
}

@media (max-width: 768px) {
    .project-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .project-modal h2 {
        font-size: 1.5rem;
    }

    .modal-close-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}
