@charset "utf-8";
/* CSS Document */

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

        html.lenis, html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        .lenis.lenis-scrolling iframe {
            pointer-events: none;
        }

        :root {
            --hue-primary: 223;
            --primary500: hsl(var(--hue-primary), 90%, 50%);
            --primary600: hsl(var(--hue-primary), 90%, 60%);
            --white50: hsla(0, 0%, 100%, 0.05);
            --white200: hsla(0, 0%, 100%, 0.2);
            --white: hsl(0, 0%, 100%);
        }

        body {
            font-family: 'Figtree', sans-serif;
            font-weight: 400;
            --scroll-progress: 0;
            background: rgb(
                calc(255 * (1 - var(--scroll-progress))),
                calc(255 * (1 - var(--scroll-progress))),
                calc(255 * (1 - var(--scroll-progress)))
            );
            transition: background-color 0.3s ease;
            overflow-x: hidden;
        }

        header {
            position: sticky;
            top: 0;
            background: #ffffff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 1rem;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            width: 225px;
            height: 50px;
            object-fit: contain;
            display: block;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav ul li a {
            font-family: 'Red Hat Display', sans-serif;
            font-weight: 800;
            text-decoration: none;
            color: #333;
            font-size: 1.05rem;
            position: relative;
            background: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300%;
            animation: gradient 8s linear infinite;
            transition: color 0.3s ease;
        }

        nav ul li a:hover, nav ul li a:focus {
            color: #555;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
            background-size: 300%;
            animation: gradient 8s linear infinite;
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after, nav ul li a:focus::after {
            width: 100%;
        }

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

        .hero, .section-hero {
            height: 58vh;
            background: url("../images/AMI_2020_illus_web.png") no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            width: 100%;
            max-width: none;
            margin: 0;
        }

        .section-hero {
            background: url("../images/photo/JKL00267.jpg") no-repeat center center/cover;
        }

        .hero-content {
            background: linear-gradient(135deg, hsla(0, 0%, 100%, 0.2), hsla(0, 0%, 100%, 0.05));
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid hsla(0, 0%, 100%, 0.3);
            border-radius: 15px;
            padding: .75rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 1s ease;
        }

        .hero-content.visible {
            opacity: 0;
        }

        .hero-content h1 {
            font-family: 'Red Hat Display', sans-serif;
            font-weight: 800;
            font-size: 2.5rem;
            background: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300%;
            animation: gradient 8s linear infinite;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.0);
            margin-bottom: 0.5rem;
        }

        .hero-content p {
            font-family: 'Figtree', sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            background: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300%;
            animation: gradient 8s linear infinite;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.0);
        }

        .hero-content a {
            color: inherit;
            text-decoration: underline;
        }

        .hero-content a:hover, .hero-content a:focus {
            text-decoration: none;
        }

        section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        #photography-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        #about h2, #illustration h2, #photography-content h2 {
            font-family: 'Red Hat Display', sans-serif;
            font-weight: 800;
            font-size: 2.3rem;
            background: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300%;
            animation: gradient 8s linear infinite;
            margin-bottom: 1rem;
            text-align: left;
        }

        #photography-content h2 {
            font-size: 3.45rem;
        }

        .subsection h3 {
            font-family: 'Cormorant Garamond', serif;
			font-style: italic;
            font-weight: 300;
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        #about {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        #about img {
            width: 300px;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
        }

        #about .about-content {
            flex: 1;
        }

/* Quote Section Styles */
        .quote-section {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 1rem 1rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .quote-section blockquote {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            font-size: 2rem;
            font-style: italic;
            line-height: 1.5;
            color: black;
            background: linear-gradient(135deg, hsla(0, 0%, 100%, 0.2), hsla(0, 0%, 100%, 0.05));
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid hsla(0, 0%, 100%, 0.3);
            border-radius: 10px;
            padding: 1.5rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
            opacity: 1;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .quote-section blockquote::before {
            content: '“';
            font-size: 4rem;
            background: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300%;
            animation: gradient 8s linear infinite;
            margin-right: 0.2rem;
			padding-right: .2rem;
        }

        .quote-section blockquote::after {
            content: '”';
            font-size: 4rem;
            background: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300%;
            animation: gradient 8s linear infinite;
            margin-left: 0.2rem;
			padding-right: .2rem;
        }

        .quote-section blockquote.visible {
            opacity: 1;
            transform: translateY(0);
        }	
		
		/* Links in Paragraphs */
        p a {
            font-family: 'Figtree', sans-serif;
            font-weight: 400;
            text-decoration: none;
            background: linear-gradient(45deg, #7EA2FF, #2EDFED, #21F69B);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300%;
            animation: gradient 8s linear infinite;
            transition: opacity 0.3s ease;
        }

        p a:hover, p a:focus {
            opacity: 0.8;
            text-decoration: underline;
            text-decoration-color: inherit;
            text-decoration-thickness: 2px;
        }
		
		/* Logo Section Styles */
        .logo-section {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 2rem 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .logo-section img {
            max-width: 375px;
            width: 75vw;
            height: auto;
            object-fit: contain;
            display: block;
        }
		
		.logo-section a:hover img {
   			 opacity: 0.75;
		}
		
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 2rem 0;
            position: relative;
        }

        .portfolio-item {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            cursor: pointer;
            border-radius: 10px;
            overflow: hidden;
            transform-origin: center;
        }

        .portfolio-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }

		     .portfolio-item.small {
            transform: rotate(2deg);
            transition: opacity 0.8s ease, transform 0.8s ease, rotate 0.3s ease;
        }

        .portfolio-item.small:nth-child(even) {
            transform: rotate(0deg);
        }
		
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            loading: lazy;
        }

     .portfolio-item:hover, .portfolio-item:focus-within {
            transform: scale(1.05) rotate(0deg) !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .portfolio-item img:focus {
            outline: 2px solid var(--primary500);
            outline-offset: 2px;
        }

        .portfolio-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        #photography-content {
            min-height: 100vh;
            color: #ffffff;
        }

        p {
            line-height: 1.6;
            margin-bottom: 1rem;
            font-family: 'Figtree', sans-serif;
            font-weight: 400;
        }

        .subsection {
            margin-bottom: 3rem;
        }

        #image-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        #image-overlay img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 10px;
        }

        #image-overlay .close-button {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: white;
            cursor: pointer;
        }

        #image-overlay .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: white;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            padding: 10px;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        #image-overlay .nav-button:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        #image-overlay .prev-button {
            left: 20px;
        }

        #image-overlay .next-button {
            right: 20px;
        }

        #contact {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        #contact .background-text {
            position: absolute;
            font-family: 'Red Hat Display', sans-serif;
            font-weight: 800;
            font-size: clamp(5rem, 15vw, 15rem);
            background: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300%;
            animation: gradient 8s linear infinite;
            opacity: 1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            pointer-events: none;
            user-select: none;
            aria-hidden: true;
        }

        .card {
			--blur: 12px;
            --width: 21.1em;
            --height: 12.8em;
            background-image: linear-gradient(90deg, var(--white200), var(--white50));
            backdrop-filter: blur(var(--blur));
            -webkit-backdrop-filter: blur(var(--blur));
            border-radius: 1em;
            box-shadow: 0 0.25em 0.375em hsla(0, 0%, 0%, 0.1);
            width: var(--width);
            height: var(--height);
            position: relative;
            color: #ffffff;
        }

        .card:before,
        .card:after {
            border-radius: inherit;
            content: "";
            display: block;
            position: absolute;
            inset: 0;
            border: 1px solid var(--white);
            mask-image: linear-gradient(135deg, var(--white), hsla(0, 0%, 100%, 0) 50%);
        }

        .card:after {
            border: 1px solid var(--primary500);
            mask-image: linear-gradient(135deg, hsla(0, 0%, 100%, 0) 50%, var(--white));
        }

        .card__content {
            font-family: 'Figtree', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            padding: 1.25em 1.5em;
            position: relative;
            height: 100%;
            z-index: 1;
        }

        .card__title {
            width: 75%;
            line-height: 1.5;
        }

        .card__url {
            font-size: 0.75em;
            align-self: flex-end;
            margin-inline-start: auto;
        }

        .card__url a {
            color: #ffffff;
            text-decoration: none;
        }

        .card__url a:hover, .card__url a:focus {
            text-decoration: underline;
        }

        footer {
            background: #000000;
            padding: 1rem;
            text-align: center;
            color: #ffffff;
            font-family: 'Figtree', sans-serif;
            font-weight: 400;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), #B3D4FF 0%, transparent 70%);
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            nav {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background: white;
                padding: 1rem;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-item.large {
                grid-column: span 1;
                grid-row: span 1;
            }

            .hero, .section-hero {
                height: 50vh;
                width: 100%;
            }

            .hero-content {
                padding: 1rem;
                border-radius: 10px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            #about {
                flex-direction: column;
                align-items: flex-start;
            }

            #about img {
                width: 100%;
                max-width: 300px;
            }

            #image-overlay .nav-button {
                font-size: 1.5rem;
                padding: 8px;
            }
			
            .logo img {
                width: 120px;
                height: 40px;
            }

            #about h2, #illustration h2, #photography-content h2 {
                font-size: 2rem;
            }

            #photography-content h2 {
                font-size: 3rem;
            }

            .subsection h3 {
                font-size: 1.5rem;
            }

            .card {
                --width: 18em;
                --height: 10.8em;
            }

            #contact .background-text {
                font-size: clamp(5rem, 15vw, 10rem);
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
			.quote-section blockquote {
                font-size: 1.2rem;
                padding: 1rem 1.5rem;
            }

            .quote-section blockquote::before,
            .quote-section blockquote::after {
                font-size: 1.5rem;
            }
			
			.logo-section {
                flex-direction: column;
                gap: 2rem;
            }

            .logo-section img {
                max-width: 300px;
                width: 50vw;
            }
        }