/* Font Face Declarations */
@font-face {
    font-family: 'Chrisye';
    src: url('Fonts/Chrisye Font by 7NTypes.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Eye Catching Pro';
    src: url('Fonts/EyeCatchingPro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pastel Color Palette */
    --pastel-lavender: #ecb5dc;
    --pastel-purple: #DDC4F0;
    --pastel-pink: #fbd8df;
    --pastel-blue: #C4E0F5;
    --pastel-lavender: #E6D4F5;
    --pastel-peach: #F5E6D4;
    --pastel-mint: #D4F5E6;
    --pastel-light-peach: #fcedeb;
    --light-blue-grey: #E0E8F0;
    --light-purple: #E8DFF2;
    --label-purple: #d8bdf0;
    --text-dark: #000000;
    --white: #FFFFFF;
    --black: #000000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation Header */
.nav-header {
    background: var(--pastel-purple);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-header-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-link-left,
.nav-link-right {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-link-left:hover,
.nav-link-right:hover {
    opacity: 0.7;
}

.header-name-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    justify-content: center;
    transition: text-shadow 0.3s ease;
}

.header-name-link:hover {
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.header-name {
    font-family: 'Chrisye', cursive;
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
}

/* Main Content */
main {
    width: 100%;
    padding: 0;
}

/* Introductory Section */
.intro-section {
    background: var(--pastel-blue);
    padding: 4rem 2rem;
    width: 100%;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.intro-image {
    flex: 1;
    max-width: 400px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
}

.intro-text {
    flex: 1;
    position: relative;
    z-index: 2;
    padding-right: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-text p {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-first-line {
    font-size: 1.5rem;
    font-weight: bold;
}

.heart-decoration {
    position: absolute;
    bottom: -120px;
    right: 0;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
    line-height: 1;
}

.heart-decoration img {
    width: 15rem;
    height: auto;
    display: block;
}

.section-btn {
    padding: 0.75rem 2rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--black);
    position: relative;
    color: var(--text-dark);
    display: inline-block;
    background: transparent;
    z-index: 10;
    isolation: isolate;
    text-decoration: none;
}

/* White shadow button behind - offset bottom right */
.section-btn::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--black);
    z-index: -1;
    transition: background 0.3s ease;
}

/* Colored/pastel button - default position */
.section-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--black);
    z-index: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px var(--white);
}

.btn-pink::after {
    background: var(--pastel-pink);
}

.btn-blue::after {
    background: var(--pastel-blue);
}

.btn-text {
    position: relative;
    z-index: 20;
    display: inline-block;
}

.section-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.section-btn:hover::before {
    background: #FFF9C4;
}

/* Divider */
.divider {
    height: 20px;
    width: 100%;
    margin: 0;
}

.divider-top {
    background: #FCEDEB;
}

.divider-pink {
    background: var(--pastel-pink);
}

.divider-purple {
    background: var(--pastel-purple);
}

/* Skills Section */
.skills-section {
    padding: 2rem 2rem 4rem;
    background: #FCEDEB;
    width: 100%;
}

.section-title-handwritten {
    font-family: 'Eye Catching Pro', cursive;
    font-size: 6rem;
    font-weight: normal;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.skills-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0;
}

.skill-item {
    text-align: center;
    padding: 1rem;
}

.skill-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skill-icon img {
    max-width: 100%;
    height: auto;
    display: block;
}

.skill-item p {
    font-size: 1rem;
    color: var(--text-dark);
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.skills-button-container {
    text-align: center;
    margin-top: 2rem;
}

/* About Page Main */
.about-main {
    background: #FCEDEB;
    width: 100%;
    min-height: 100vh;
}

/* About Top Section */
.about-top-section {
    padding: 4rem 2rem 2rem;
    background: #FCEDEB;
    width: 100%;
}

.about-top-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-text-content {
    flex: 1;
    padding-right: 2rem;
    padding-top: 2rem;;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-cursive-title {
    font-family: 'Eye Catching Pro';
    font-size: 8rem;
    font-weight: normal;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.title-squiggle {
    width: 100%;
    max-width: 500px;
    margin-top: -10rem;
    margin-bottom: -2.8rem;
    height: auto;
    display: block;
    z-index: 1;
}

.about-subtitle {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-description {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: normal;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Rotated Rectangle with Photos */
.about-photos-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.rotated-rectangle {
    background: rgba(245, 194, 224, 0.6);
    padding: 1.2rem;
    transform: rotate(10deg);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    max-width: 300px;
    min-height: 600px;
    height: auto;
    overflow: visible;
}

.photos-stack {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    flex: 1;
}

.about-photo-top,
.about-photo-bottom {
    width: 100%;
    height: auto;
    border: none;
    display: block;
    object-fit: cover;
    flex-shrink: 0;
}

.say-hi-btn {
    margin-top: 1rem;
}

/* Interests Section */
.interests-section {
    padding: 1rem 2rem 4rem;
    background: #FCEDEB;
    width: 100%;
}

.interests-title {
    font-family: 'Eye Catching Pro';
    font-size: 4.5rem;
    font-weight: normal;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.interests-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.interest-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.interest-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 0.25rem;
}

.interest-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: none;
    display: block;
}

.scribble-text {
    width: 100%;
    min-height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Eye Catching Pro', cursive;
    font-size: 5rem;
    color: var(--text-dark);
    padding: 1rem;
    margin-top: -4.5rem;
    z-index: 1;
}

.scribble-1 {
    background-image: url('public/scribbles/Scribbles-01.png');
}

.scribble-2 {
    background-image: url('public/scribbles/Scribbles-02.png');
}

.scribble-3 {
    background-image: url('public/scribbles/Scribbles-03.png');
}

.scribble-4 {
    background-image: url('public/scribbles/Scribbles-04.png');
}

.interest-label {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-family: 'Chrisye', cursive;
    font-size: 1.5rem;
    color: var(--white);
    text-align: center;
    font-weight: normal;
}

.label-pink {
    background: var(--pastel-pink);
}

.label-blue {
    background: var(--pastel-blue);
}

.label-purple {
    background: var(--pastel-purple);
}

/* Product Template Page */
.product-main {
    background: var(--pastel-light-peach);
    width: 100%;
    min-height: 100vh;
}

.product-header-section {
    padding: 0.7rem 2rem 2rem 2rem;
    background: var(--pastel-pink);
    width: 100%;
}

.product-nav-buttons {
    max-width: 1200px;
    margin: 0 auto 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.product-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.product-header-content {
    flex: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.product-header-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.7rem;
    color: var(--text-dark);
    margin-bottom: 0px;
}

.product-header-subtitle {
    font-family: 'Eye Catching Pro', cursive;
    font-size: 4rem;
    font-weight: normal;
    color: var(--text-dark);
    margin-bottom: 0;
}

.product-header-description {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--text-dark);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.role-label {
    background: var(--pastel-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-dark);
    text-align: center;
    padding: 1px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.outcome-label {
    background: var(--pastel-blue);
    padding: 1px;
    border-radius: 25px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-dark);
    text-align: center;
}

/* XWater Page Specific Styles */
.xwater-page .product-main {
    background: var(--light-blue-grey);
}

.xwater-page .product-header-section {
    background: var(--light-blue-grey);
}

.xwater-page .product-images-section {
    background: var(--pastel-light-peach);
}

.xwater-page .role-label,
.xwater-page .outcome-label {
    background: var(--label-purple);
}

/* JASON Page Specific Styles */
.jason-page .product-main {
    background: var(--pastel-light-peach);
}

.jason-page .product-header-section {
    background: var(--pastel-pink);
}

.jason-page .product-images-section {
    background: var(--pastel-light-peach);
}

.jason-page .role-label,
.jason-page .outcome-label {
    background: var(--pastel-blue);
}

/* Freelance Page Specific Styles */


.freelance-page .product-header-section {
    background: #ecb5dc;
}

.freelance-page .product-images-section {
    background: var(--pastel-light-peach);
}

.freelance-page .role-label,
.freelance-page .outcome-label {
    background: var(--pastel-blue);
}

/* Personal Page Specific Styles */
.personal-page .product-main {
    background: var(--white);
}

.personal-page .product-header-section {
    background: var(--light-blue-grey);
}

.personal-section-title {
    font-family: 'Eye Catching Pro', cursive;
    font-size: 4.5rem;
    font-weight: normal;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

/* Frames Section */
.personal-frames-section {
    padding: 2rem 2rem;
    background: #fcedeb;
    width: 100%;
}

.personal-frames-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    justify-content: center;
}

.personal-frame-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
}

.personal-frame-image {
    height: auto;
    max-height: 400px;
    display: block;
    object-fit: contain;
}

/* Illustration Section */
.personal-illustration-section {
    padding: 2rem 2rem;
    background: var(--pastel-purple);
    width: 100%;
}

.personal-illustration-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.personal-illustration-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.personal-illustration-image {
    width: auto;
    height: 400px;
    display: block;
    object-fit: contain;
}

/* Crochet Section */
.personal-crochet-section {
    padding: 2rem 2rem;
    background: var(--pastel-blue);
    width: 100%;
}

.personal-crochet-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.personal-crochet-row {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}

.personal-crochet-row-centered {
    justify-content: center;
}

.personal-crochet-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.personal-crochet-row-centered .personal-crochet-item {
    flex: 0 0 auto;
    max-width: 50%;
}

.personal-crochet-image {
    width: auto;
    height: 400px;
    display: block;
    object-fit: contain;
}

.personal-crochet-row-centered .personal-crochet-image {
    width: auto;
    height: 400px;
}

/* Personal Skills Section */
.personal-skills-section {
    padding: 4rem 2rem 5rem 2rem;
    background: #fcedeb;
    width: 100%;
}

.personal-skills-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.personal-skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.personal-skill-label {
    background: var(--pastel-lavender);
    padding: 1px;
    border-radius: 25px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: regular;
    color: var(--text-dark);
    text-align: center;
}

/* Volunteer Page Specific Styles */
.volunteer-page .product-main {
    background: var(--pastel-light-peach);
}

.volunteer-header-section {
    padding: 0.7rem 2rem 2rem 2rem;
    background: #ecb5dc;
    width: 100%;
}

.volunteer-header-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3rem;
}

.volunteer-text-content {
    flex: 0 1 auto;
    max-width: 800px;
}

.volunteer-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0px;
    text-align: center;
}

.volunteer-subtitle {
    font-family: 'Eye Catching Pro', cursive;
    font-size: 4rem;
    font-weight: normal;
    line-height: 0.9;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.volunteer-description {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    text-align: center;
}

.volunteer-photo {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.volunteer-photo::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background-color: #ee7ac2;
    border-radius: 0px;
    transform: rotate(5deg);
    z-index: 0;
}

.volunteer-photo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: rotate(5deg);
    position: relative;
    z-index: 1;
}

.skills-ontario-section {
    padding: 3rem 2rem 0rem 2rem;
    background: var(--pastel-light-peach);
    width: 100%;
}

.skills-ontario-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.skills-ontario-subtitle {
    font-family: 'Eye Catching Pro', cursive;
    font-size: 4rem;
    font-weight: normal;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.skills-ontario-description {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0 auto 1.5rem;
    max-width: 800px;
    text-align: center;
}

.timeline-section {
    padding: 1rem 2rem;
    background: var(--pastel-light-peach);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-column {
    flex: 1;
    background: var(--pastel-blue);
    padding: 2rem;
    border-radius: 8px;
}

.timeline-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: left;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list li {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0em;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.volunteer-skills-section {
    padding: 1rem 2rem 5rem 2rem;
    background: var(--pastel-light-peach);
    width: 100%;
}

.volunteer-skills-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.volunteer-skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.volunteer-skill-label {
    background: var(--pastel-lavender);
    padding: 1px;
    border-radius: 25px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-dark);
    text-align: center;
}

.nav-button {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0rem 1rem;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-button:hover {
    opacity: 0.7;
}

.nav-button-left {
    font-family: 'Eye Catching Pro', cursive;
    font-size: 2.5rem;
    font-weight: normal;
    text-decoration: underline;
}

.nav-button-right {
    font-family: 'Eye Catching Pro', cursive;
    font-size: 2.5rem;
    font-weight: normal;
    text-decoration: underline;
}

/* Product Images Section */
.product-images-section {
    padding: 4rem 2rem;
    background: var(--pastel-light-peach);
    width: 100%;
}

.product-images-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-image-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.product-image-row-centered {
    justify-content: center;
    gap: 20px;
}

.product-image-row-centered .product-image-item {
    flex: 0 0 auto;
    width: auto;
}

.product-image-row-auto .product-image-item {
    flex: 0 0 auto;
    width: fit-content;
}

.product-image-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.product-image {
    width: auto;
    height: 338px;
    display: block;
    object-fit: contain;
}

/* Responsive Product Template */
@media (max-width: 968px) {
    .product-header-container {
        flex-direction: column;
        align-items: center;
    }

    .nav-button-left,
    .nav-button-right {
        position: static;
        margin-bottom: 0;
    }

    .product-header-title {
        font-size: 2rem;
    }

    .product-header-subtitle {
        font-size: 2.5rem;
    }

    .product-images-grid {
        gap: 30px;
    }

    .product-image-row {
        gap: 30px;
    }

    .role-grid,
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Volunteer Page Responsive */
    .volunteer-header-container {
        flex-direction: column;
    }

    .volunteer-text-content {
        max-width: 100%;
    }

    .volunteer-photo {
        display: none;
    }

    .timeline-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .volunteer-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-header-section {
        padding: 0 1rem 2rem 1rem;
        margin-top: 0;
    }

    .nav-button-left,
    .nav-button-right {
        margin-bottom: 0;
    }

    .product-header-title {
        font-size: 1.5rem;
    }

    .product-header-subtitle {
        font-size: 4rem;
        line-height: 50px;
    }

    .product-images-section {
        padding: 1rem 1rem;
    }

    .product-images-grid {
        gap: 20px;
    }

    .product-image-row {
        flex-direction: column;
        gap: 20px;
    }

    .product-image-item {
        width: 100%;
        flex: 1 1 100%;
    }

    .product-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .role-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 2rem;
        padding: 0;
    }

    .role-label {
        width: 100%;
        font-size: 0.9rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    /* Volunteer Page Mobile */
    .volunteer-header-section {
        padding: 0.7rem 1rem 2rem 1rem;
    }

    .volunteer-title {
        font-size: 1.5rem;
    }

    .volunteer-subtitle {
        font-size: 2.5rem;
    }

    .volunteer-skills-grid {
        grid-template-columns: 1fr;
    }

    .skills-ontario-subtitle {
        font-size: 2rem;
    }

    .timeline-title {
        font-size: 1.1rem;
    }
}

/* Portfolio Page */
.portfolio-main {
    background: #FCEDEB;
    width: 100%;
    min-height: 100vh;
}

.portfolio-section {
    padding: 4rem 2rem;
    background: #FCEDEB;
    width: 100%;
}

.portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.portfolio-image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.portfolio-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-link:hover .portfolio-image-wrapper::before {
    background: rgba(255, 255, 255, 0.5);
}

.portfolio-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    position: relative;
    z-index: 0;
    transition: transform 0.3s ease;
}

.portfolio-link:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-title {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.portfolio-tag {
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--black);
    text-align: center;
}

.tag-pink {
    background: var(--pastel-pink);
}

.tag-purple {
    background: var(--pastel-purple);
}

.tag-blue {
    background: var(--pastel-blue);
}

.tag-green {
    background: var(--pastel-mint);
}

/* Responsive Portfolio */
@media (max-width: 968px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-section {
        padding: 2rem 1rem;
    }

    .portfolio-title {
        margin-bottom: 0;
    }

    .portfolio-tag {
        font-size: 0.8rem;
    }
}

/* Responsive Styles for About Page */
@media (max-width: 968px) {
    .about-top-container {
        flex-direction: column;
    }

    .about-top-section {
        padding-top: 0;
    }

    .about-text-content {
        padding-right: 0;
        padding-top: 0;
    }

    .about-photos-container {
        width: 100%;
        flex: 1 1 100%;
    }

    .rotated-rectangle {
        transform: rotate(7deg);
        min-width: 200px;
        max-width: 200px;
        min-height: 500px;
    }

    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cursive-title {
        font-size: 3rem;
    }

    .interests-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .rotated-rectangle {
        transform: rotate(5deg);
        min-width: 250px;
        max-width: 250px;
        padding: 1rem;
        min-height: 400px;
    }

    .interests-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .interest-item {
        margin-bottom: -3rem;
    }

    .interest-item:last-child {
        margin-bottom: 0;
    }

    .about-cursive-title {
        font-size: 6.5rem;
    }

    .title-squiggle {
        margin-top: -7rem;
    }

    .about-top-section {
        padding-top: 0;
    }

    .about-text-content {
        padding-top: 0;
    }

    .about-photos-container {
        width: 100%;
        flex: 1 1 100%;
    }

    .interests-title {
        font-size: 3.2rem;
    }

    .volunteer-subtitle {
        font-size: 4rem;
        line-height: 50px;
        
    }

    .skills-ontario-section {
        padding-top: 1.5rem;
    }

    .skills-ontario-subtitle {
        font-size: 4rem;
        line-height: 50px;
        margin-bottom: 0;
    }

    .personal-section-title {
        font-size: 4rem;
        line-height: 50px;
    }

    .personal-frames-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .personal-frame-image {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: contain;
    }

    .personal-illustration-grid {
        flex-direction: column;
        gap: 20px;
    }

    .personal-illustration-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .personal-crochet-grid {
        gap: 20px;
    }

    .personal-crochet-row {
        flex-direction: column;
        gap: 20px;
    }

    .personal-crochet-row-centered {
        flex-direction: column;
        justify-content: flex-start;
    }

    .personal-crochet-row-centered .personal-crochet-item {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }

    .personal-crochet-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .personal-crochet-row-centered .personal-crochet-image {
        width: 100%;
        height: auto;
    }

    .personal-skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .personal-skills-section {
        padding-top: 2rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: var(--pastel-pink);
    width: 100%;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.input-wrapper {
    position: relative;
    display: block;
}

/* White shadow box behind input fields */
.input-wrapper::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 100%;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--black);
    z-index: 0;
    pointer-events: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--black);
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    background: var(--pastel-blue);
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 0 0 1px var(--white);
    display: block;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dark);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .intro-container {
        flex-direction: column;
        text-align: center;
    }

    .intro-image {
        max-width: 100%;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-name {
        font-size: 2rem;
    }

    .section-title-handwritten {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .nav-header {
        padding: 0.5rem 0;
    }

    .nav-header-container {
        padding: 0 1rem;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
    }

    .nav-link-left,
    .nav-link-right {
        font-size: 0.9rem;
        flex: 0 0 auto;
    }

    .nav-link-left {
        order: 1;
    }

    .header-name-link {
        order: 2;
        flex: 0 0 100px;
        width: 200px;
        display: flex;
        justify-content: center;
        margin-top: 0;
    }

    .nav-link-right {
        order: 3;
    }

    .header-name {
        font-size: 1.5rem;
        line-height: 24px;
    }

    .intro-section,
    .skills-section,
    .contact-section {
        padding: 2rem 1rem;
    }

    .intro-text {
        padding-right: 0;
    }

    .heart-decoration {
        bottom: -84px;
        right: -73px;
    }

    .section-title-handwritten {
        font-size: 3.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .skill-item {
        padding: 0.5rem;
    }

    .skill-icon {
        margin-bottom: 0.5rem;
    }

    .skill-icon img {
        max-width: 80%;
        height: auto;
    }

    .skill-item p {
        font-weight: normal;
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .skill-icon img {
        max-width: 70%;
    }

    .header-name {
        font-size: 1.2rem;
    }
}
