/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffd6e8;
    color: #333;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0 0 15px 15px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ff69b4;
}

.highlight {
    color: #FF4081;
    transition: 0.3s ease;
}

.highlight:hover {
    background: linear-gradient(to right, red, orange, #FCE02B, #4AC44A, blue, indigo, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffd6e8;
        display: none; /* hidden by default, toggle with JS for hamburger */
    }

    nav ul li {
        margin: 15px 0;
        text-align: center;
    }

    /* Optional: Hamburger icon */
    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
    }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}


/* Hero Section */
.hero {
    height: 100vh;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
 
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;   /* full width */
    height: 100%;  /* full height */
    object-fit: cover; /* makes it act like a background */
    z-index: -1;   /* put behind text */
}


.personal-work-page {
    height: 100vh; /* full page height */
    background: linear-gradient(270deg, 
        #FF0000, #FF7F00, #FCE02B, #4AC44A, #0000FF, #4B0082, #9400D3,
        #FF0000, #FF7F00, #FCE02B, #4AC44A, #0000FF, #4B0082, #9400D3
    );
    background-size: 1400% 1400%; /* large size to show all colors */
    animation: gradientMove 150s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.hero-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 35px;
}

/* Button styling */
.btn {
    margin-left: 10px;
    padding: 15px 35px;
    font-weight: 700;
    color: #fff;
    background-size: 800% 800%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none; 
}

.btn:hover {
    transform: scale(1.1);
    animation: gradientBG 3s ease infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .btn {
        margin-left: 0;        /* remove horizontal margin for stacked buttons */
        margin-bottom: 15px;   /* add spacing if stacked vertically */
        padding: 12px 25px;    /* smaller padding for smaller screens */
        font-size: 0.9rem;     /* slightly smaller text */
        width: 80%;            /* optional: make button take most of screen width */
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;    /* even smaller padding for very small screens */
        font-size: 0.8rem;     
        width: 90%;            /* fill more of the screen on very small devices */
    }
}

/* Confetti*/

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}


/* Cute Sections */
.cute-section {
    padding: 50px 50px;
    background-color: #fff0f5;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

h2 {
    font-size: 3rem;
    margin-top: 50px;
    margin-bottom: 10px;
    text-align: center;
    color: #ff69b4;
}

h3 {
    margin-top: 40px; 
    margin-bottom: 15px; 
    color: #ff69b4; 
    font-size: 1.5rem; 
    font-weight: 600;
}

h4 {
    margin-top: 0px;  /* adjust the value to your preference */
    margin-bottom: 15px; /* optional: add some spacing below */
    color: black; /* optional: match your pink branding */
    font-size: 1.5rem; /* optional: make it slightly smaller than h2 */
    font-weight: 600;
}

h5 {
    margin-top: 0px;
    margin-bottom: 15px;
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}
/* Case Studies: Vertical Stacked Cards */

/* Project grid: remove multi-column layout */
.project-grid {
    display: flex;
    flex-direction: column;  
    gap: 2rem;               
    margin-top: 2rem;
}

/* Project Card */
.project-card {
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: #ffe6f0;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    align-items: center;
}

.project-card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Desktop styles */
.project-card img {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    object-fit: cover; /* ensures image fills container without stretching */
}

.project-card img:hover {
    transform: scale(1.03);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .project-card {
        flex-direction: column; /* stack image and content vertically */
        align-items: center;
    }

    .project-card img {
        width: 80%;         /* responsive width */
        max-width: 120px;   /* cap size on tablets */
        height: auto;       /* maintain aspect ratio */
        margin-right: 0;
        margin-bottom: 15px; /* spacing when stacked */
    }
}

@media (max-width: 480px) {
    .project-card img {
        width: 70%;        /* smaller width for phones */
        max-width: 100px;
    }
}




/* Card text content */
.card-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Hover overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 105, 180, 0.85); /* semi-transparent pink */
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.3s ease;
}

.project-card:hover .card-overlay {
    opacity: 1;
}

/* Invisible link covering full card */
.card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    text-decoration: none;
    color: inherit;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
        text-align: center;
    }

    .project-card img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }
}



/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

form input, form textarea {
    padding: 12px;
    margin: 10px 0;
    border-radius: 15px;
    border: 1px solid #ffcce6;
    outline: none;
    transition: all 0.3s;
}

form input:focus, form textarea:focus {
    border-color: #ff69b4;
    box-shadow: 0 0 10px rgba(255,105,180,0.3);
}

form button {
    padding: 12px;
    border: none;
    background-color: #ff69b4;
    color: white;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

form button:hover {
    background-color: #ff85c1;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #ffd6e8;
    color: #333;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* Explore Page */
.explore-section {
    max-width: 1100px;
    margin: 120px auto;
    padding: 40px;
    text-align: center;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns instead of 3 */
    gap: 30px;
    margin-top: 40px;
}
.explore-card {
    background-color: #ffe6f0;
    padding: 40px 20px;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    opacity: 1;                  /* always visible */
    transform: scale();         /* normal size */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.explore-card:hover {
    background-color: #ffd6e8;
    transform: scale(1.05);      /* small scale on hover */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



/* Desktop / default */
.back-btn {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.back-btn:hover {
    background-color: #ff85c1;
    transform: scale(1.05);
}

/* Tablet / small screens */
@media (max-width: 768px) {
    .back-btn {
        padding: 8px 18px;       /* slightly smaller padding */
        font-size: 0.9rem;       /* smaller text */
        margin: 15px 0;
    }
}

/* Mobile / very small screens */
@media (max-width: 480px) {
    .back-btn {
        width: 90%;              /* almost full width */
        padding: 7px 15px;
        font-size: 0.85rem;
        text-align: center;      /* center text when button stretches */
        margin: 10px auto;       /* center button with vertical spacing */
    }
}



/* Mobile grid */
@media (max-width: 800px) {
    .explore-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }
}

#logo {
    
}

/* Case Study Cards */
.case-study-card {
    background-color: #ffe6f0;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.case-study-card:hover {
    transform: translateY(-8px);
    background-color: #ffd6e8;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Desktop / default */
.cs-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
    object-fit: cover; /* ensures image fills container without distortion */
    height: auto;      /* maintain aspect ratio */
}

/* Tablet / small screens */
@media (max-width: 768px) {
    .cs-image {
        max-width: 90%;    /* prevents image from being too wide */
        margin-left: auto;
        margin-right: auto; /* centers image */
    }
}

/* Mobile / very small screens */
@media (max-width: 480px) {
    .cs-image {
        max-width: 100%;  /* full width of container */
    }
}


/* Title */
.case-study-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

/* Description */
.case-study-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
}



/* Tags */
.cs-tags {
    display: inline-block;
    background-color: #ffb6d3;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

/* Button */
.cs-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cs-btn:hover {
    background-color: #ff85c1;
    transform: scale(1.05);
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px auto 0 auto; /* top margin + center horizontally */
    max-width: 1000px; /* control overall width */
    width: 93%; /* take most of the container but leave space on sides */
}


/* Individual gallery items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px; /* choose the height you want */
    object-fit: cover; /* keeps image from stretching */
    border-radius: 10px; /* optional: makes it look clean */
    display: block;
    transition: transform 0.5s ease;
}


/* Hover zoom effect */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay for captions */
.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 105, 180, 0.85); /* semi-transparent pink */
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

/* Optional: subtle shadow on hover */
.gallery-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}


/* About Section: Headshot + Text */
.about-content {
    display: flex;
    align-items: center;
    gap: 30px; 
    margin-top: 20px;
    flex-wrap: wrap; 
}

.headshot-wrapper {
    position: relative; 
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden; 
}

.headshot-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 50%;
}
.open-to-work-img {
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%;
    height: auto; 
    z-index: 10; 

}

.about-text {
    flex: 1; /* text takes remaining space */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .headshot img {
        margin-bottom: 15px;
        width: 150px;
        height: 150px;
    }
}

/* Skills Section */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    justify-content: flex-start;
}

.skill-chip {
    background-color: #ffe6f0;
    color: #ff69b4;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid #ffb3d1;
    transition: all 0.3s ease;
    cursor: default;
    font-size: 0.95rem;
}

.skill-chip:hover {
    background-color: #ff69b4;
    color: white;
    transform: scale(1.05);
}

/* Center skills on mobile */
@media (max-width: 768px) {
    .skills {
        justify-content: center;
    }
}


/* Job Card */



.job-card {
    margin-top: 40px;
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    align-items: center;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Image inside card */
.job-card img {
    width: 125px;
    border-radius: 15px;
    margin-right: 20px;


}

.job-card img:hover {
    transform: scale(1.03);
}


/* Responsive for mobile */
@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        text-align: center;
    }

    .job-card img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }
}

/* Gallery */
.gallery-item .overlay {
    background: rgba(0, 0, 0, 0.7);
    color: white;
}



/* Skills Section */
.skill-chip {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #cccccc;
}

.skill-chip:hover {
    background-color: #000000;
    color: white;
}

/* Explore Cards */
.explore-card {
    background-color: #ffffff;
}

.explore-card:hover {
    background-color: #f0f0f0;
}

/* Back Button */
.back-btn {
    background-color: #000000;
    color: white;
}

.back-btn:hover {
    background-color: #333333;
}

/* Contact page buttons */
.contact-icons {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.contact-icons img {
    width: 150px;
    height: 150px;
    border-radius: 20px; /* optional: round corners */
    transition: transform 0.2s ease;
}

.contact-icons img:hover {
    transform: scale(1.1);
}

/* Image pop up on projects page */
/* Modal background overlay */
.img-preview-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

/* White box container */
.modal-content {
    background: white;
    padding: 25px;
    border-radius: 16px;
    max-width: 850px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

/* Image */
.modal-content img {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 12px;
    margin-top: 50px ;
    margin-bottom: 5px;
}

/* Description text */
.modal-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: auto;
    max-width: 750px;
}


















/* Color Updates */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    
}

/* Navbar */
nav {
    background-color: #ffffff; /* white */
    color: #000000; /* black text */
}

nav ul li a:hover {
    color: #FF4081; /* dark gray for hover */
}

/* Hero Section */
.hero {
    
    color: #000000;
}

.hero-title {
    font-size: 60px;

}


.btn {
    background-color: #000000; /* black button */
    color: white;
}

.btn:hover {
    background-color: #333333; /* dark gray hover */
}

/* Cute Sections */
.cute-section {
    background-color: #f9f9f9; /* very light gray */
}

h2 {
    color: #000000;
}

/* H3 headers */
h3 {
    color: #000000;
}

/* Project Cards */
.project-card {
    background-color: #ffffff;
}

.project-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-overlay {
    background: rgba(0, 0, 0, 0.7); /* black semi-transparent overlay */
    color: white;
}

/* Contact Form */
form input, form textarea {
    border: 1px solid #cccccc;
}

form input:focus, form textarea:focus {
    border-color: #000000;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

form button {
    background-color: #000000;
    color: white;
}

form button:hover {
    background-color: #333333;
}

/* Footer */
footer {
    background-color: #ffffff;
    color: #000000;
}

/* Case Study Cards */
.case-study-card {
    background-color: #ffffff;
}

.case-study-card:hover {
    background-color: #f0f0f0; /* light gray hover */
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.cs-tags {
    background-color: #cccccc;
    color: #000000;
}

.cs-btn {
    background-color: #000000;
    color: white;
}

.cs-btn:hover {
    background-color: #333333;
}

/* Desktop / default */
.cs-full-image {
    display: block;
    margin: 40px auto; 
    width: 900px;      
    max-width: 100%;   
    border-radius: 20px;
    height: auto;      
    object-fit: cover;  
}

/* Tablet / small screens */
@media (max-width: 768px) {
    .cs-full-image {
        width: 80%;     
        margin: 30px auto;
    }
}

/* Mobile / very small screens */
@media (max-width: 480px) {
    .cs-full-image {
        width: 95%;     
        margin: 20px auto;
    }
}

.explore-card {
    display: inline-block;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: black;
    background: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover effect to replace text */
.explore-card::after {
    content: attr(data-description);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 90%;        /* optional, wraps long descriptions */
    text-align: center;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Hide original text on hover */
.explore-card:hover {
    color: transparent;
}

/* Show description on hover */
.explore-card:hover::after {
    opacity: 1;
    color: black;       /* description color */
}




.process-steps {
    position: relative;
    padding-left: 60px; /* more space for timeline */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px; /* move line farther left */
    width: 3px;
    height: 100%;
    background: #000; /* line is black */
    border-radius: 2px;
}

.process-step {
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: -70px; /* move circles farther left */
    top: 20px; /* adjust vertically */
    width: 15px;
    height: 15px;
    background: #fff;
    border: 3px solid #000; /* black circle border */
    border-radius: 50%;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #000; /* black headings */
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
}

