/* First, import the font (add this at the very top of your CSS file) */
@import url('https://fonts.cdnfonts.com/css/prestige-elite-std');

/* Add this at the top of the file */
@font-face {
    font-family: 'Cascadia Code';
    src: url('fonts/CascadiaCode-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prestige Elite Std', monospace;
}

/* Then, set it as the default font for the entire site */
body {
    font-family: 'Cascadia Code', Consolas, Monaco, "Lucida Console", monospace;
    font-weight: 200; /* ExtraLight weight */
    line-height: 1.6;
    color: #333;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text x='0' y='20' font-size='20'>🐭</text></svg>"), auto;
}

/* If you want to ensure specific elements use it (for better browser compatibility) */
body, 
h1, h2, h3, h4, h5, h6,
p, 
.intro-description,
.experience-title,
.consuming-text,
.tech-tag,
.report-link {
    font-family: 'Prestige Elite Std', monospace;
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-title {
    font-size: 1.5rem;
    color: #333;
}

/* Main content */
main {
    margin-top: 70px;
}

section {
    padding: 4rem 2rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
}

/* Standardize section header spacing */
section h2 {
    margin-bottom: 2rem;
    text-align: left;
}

/* Standardize spacing between sections */
#podcast-feature,
#education,
#experience,
#research,
#projects,
#consuming,
#finished,
#reach-out {
    margin-top: 2rem;
}

/* Adjust container spacing */
.experience-container,
.project-grid,
.consuming-grid,
.podcast-container,
.reach-out-container {
    margin-top: 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }

    section h2 {
        margin-bottom: 1.5rem;
    }
}

/* Intro section */
#intro {
    background-color: white;
}

/* Experience section */
.experience-container {
    max-width: 800px;
    margin: 2rem auto;
}

.experience-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.experience-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.company {
    color: #666;
    font-weight: bold;
}

.date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.experience-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1rem;
}

.experience-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.experience-list li:before {
    content: "-";
    position: absolute;
    left: 0;
    color: #666;
}

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

/* Projects section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.project-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.project-card p {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tech-tag {
    background-color: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #666;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
}

/* Intro section styles */
.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-photo {
    text-align: center;
}

.profile-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .header-title {
        font-size: 1.2rem;
    }

    .intro-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .intro-photo {
        order: -1; /* This moves the photo to the top on mobile */
    }

    .profile-photo {
        max-width: 250px; /* Limit photo size on mobile */
        margin: 0 auto 2rem;
    }
}

.location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.experience-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.company-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    padding: 10px;
}

.experience-title {
    flex: 1;
}

/* If needed, you can add specific adjustments for the Columbia logo */
.experience-header img[alt="Columbia College Logo"] {
    width: 110px;
    height: 110px;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .experience-header {
        flex-direction: row-reverse;
        gap: 1rem;
    }

    .company-logo {
        width: 45px; /* Slightly smaller on mobile */
    }
}

.report-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    background-color: #f0f0f0;
    transition: all 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%232c3e50' viewBox='0 0 16 16'%3E%3Cpath d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
    background-position: right 4px center;
    background-repeat: no-repeat;
    padding-right: 20px;
}

.report-link:hover {
    background-color: #e0e0e0;
    color: #1a252f;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.report-link:active {
    transform: translateY(0);
    box-shadow: none;
}

#research {
    background-color: white;
}

#research .experience-item {
    background-color: white;  /* To ensure contrast with the section background */
}

/* For clickable elements, you might want to change the cursor to indicate interactivity */
a, button, .project-card, .tech-tag {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text x='0' y='20' font-size='20'>🐁</text></svg>"), pointer;
}

.department {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

#consuming {
    background-color: white;
}

.consuming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.consuming-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.consuming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.consuming-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.consuming-text {
    padding: 1rem;
    text-align: center;
}

.consuming-text h3 {
    margin: 0;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.consuming-text p {
    margin: 0;
    color: #666;
}

@media (max-width: 768px) {
    .consuming-grid {
        grid-template-columns: 1fr;
    }
    
    .consuming-image {
        height: 200px;
    }
}

#reach-out {
    padding: 4rem 2rem;
    text-align: center;
}

.reach-out-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.chat-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 1rem 0;
    text-align: center;
}

.chat-text .line {
    display: inline;
}

@media (max-width: 768px) {
    .chat-text .line {
        display: block;
        text-align: center;
    }
    
    .chat-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }
}

.social-link {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    transition: transform 0.2s ease;
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.cheese-emoji {
    font-size: 2.5rem;
    display: inline-block;
    transition: transform 0.2s ease;
}

.social-link:hover .cheese-emoji {
    transform: rotate(15deg);
}

/* Retro Y2K Email Link Styling */
.email-link {
    position: relative;
    display: inline-block;
}

.email-link .cheese-emoji {
    font-size: 2.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.email-link:hover .cheese-emoji {
    transform: scale(1.1) rotate(15deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: bounce 0.6s ease-in-out;
}

.email-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ff1493);
    background-size: 200% 200%;
    color: white;
    padding: 16px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    z-index: 1000;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.email-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #ff69b4;
}

.email-link:hover .email-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
    animation: tooltip-bounce 0.6s ease-out;
}

@keyframes tooltip-bounce {
    0% {
        transform: translateX(-50%) translateY(10px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) translateY(-8px) scale(1.05);
    }
    100% {
        transform: translateX(-50%) translateY(-5px) scale(1);
        opacity: 1;
    }
}

/* Y2K Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: scale(1.1) rotate(-5deg);
    }
    40% {
        transform: scale(1.2) rotate(-8deg);
    }
    60% {
        transform: scale(1.15) rotate(-6deg);
    }
}



.recruiter-note {
    font-size: 1rem;
    color: #333;
    margin-top: 1rem;
}

#finished {
    padding-top: 6rem;  /* Increase from 4rem to match other sections */
    background-color: #f8f9fa;
}

.podcast-section {
    margin-top: 1.5rem;
}

.podcast-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.podcast-link:hover {
    transform: translateY(-2px);
}

.podcast-logo {
    width: 220px;  /* Increased from 200px */
    height: 220px;  /* Increased from 200px */
    border-radius: 12px;
    object-fit: cover;
}

/* Make the media query more specific and add !important to override any other styles */
@media only screen and (max-width: 768px) {
    .podcast-container .podcast-content .podcast-logo {
        width: 300px !important;
        height: 300px !important;
    }

    .podcast-links {
        display: flex;
        justify-content: center;
        gap: 0.8rem;  /* Slightly reduce gap on mobile */
        width: 100%;  /* Ensure full width */
    }

    .platform-button {
        /* Keep buttons from wrapping by making them more compact if needed */
        padding: 0.6rem 1rem;  /* Slightly reduced horizontal padding */
    }
}

#podcast-feature {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    min-height: auto;
}

.podcast-container {
    max-width: 800px;
    margin: 0 auto;
}

.podcast-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
    background-color: transparent;
    border: none;
}

.podcast-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* Keep text left-aligned */
}

.podcast-text h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.podcast-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.podcast-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #1DB954;  /* Spotify green */
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.2s ease;
}

.podcast-button:hover {
    background-color: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(29, 185, 84, 0.3);
}

@media (max-width: 768px) {
    #podcast-feature {
        padding: 3rem 1rem;
    }

    .podcast-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .podcast-logo {
        width: 150px;
        height: 150px;
    }
}

.podcast-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;  /* Take full width of container */
    justify-content: flex-start;  /* Align with the text */
}

.platform-button {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;  /* Back to original padding */
    text-decoration: none;
    border-radius: 20px;  /* Back to original border-radius */
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.platform-button:hover {
    transform: translateY(-2px);
}

.platform-button.spotify {
    background-color: #1DB954;
    color: white;
}

.platform-button.spotify:hover {
    background-color: #1ed760;
    box-shadow: 0 4px 10px rgba(29, 185, 84, 0.3);
}

.platform-button.apple {
    background-color: #872EC4;  /* Updated to Apple Podcasts purple */
    color: white;
}

.platform-button.apple:hover {
    background-color: #9633d8;  /* Slightly lighter purple for hover */
    box-shadow: 0 4px 10px rgba(135, 46, 196, 0.3);  /* Updated shadow color */
}

.platform-button.youtube {
    background-color: #FF0000;
    color: white;
}

.platform-button.youtube:hover {
    background-color: #ff1a1a;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

/* Back to original mobile sizes */
@media (max-width: 768px) {
    .platform-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

#education {
    background-color: white;
}

#experience {
    padding-top: 6rem;  /* Increase from 4rem to match other sections */
    background-color: #f8f9fa;
}

#projects {
    padding-top: 6rem;  /* Increase from 4rem to match other sections */
    background-color: #f8f9fa;
}

@media only screen and (max-width: 768px) {
    .podcast-text {
        align-items: center;  /* Center everything on mobile */
        text-align: center;
    }

    .podcast-container .podcast-content .podcast-logo {
        width: 300px !important;
        height: 300px !important;
    }

    .podcast-links {
        justify-content: center;
        gap: 0.8rem;
    }

    .platform-button {
        padding: 0.6rem 1rem;
    }
} 