@charset "utf-8";
/* CSS Document */
        /* Hero Section */
   .container-introduction {
            display: flex;
            max-width: 100%;
			max-height: 36rem;
	        margin-top: 5rem;
        }

        .profile-image-column {
            flex: 1;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
			max-width: 100%;
}
			
			.profile-image-column img {
            flex: 1;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 36rem;
			width: 36rem;
			object-fit: cover;
				max-width: 100%;
				max-height: 100%;
			
        }

        .introduction-text-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 6rem 4rem;
            background-color: #ffffff;
			max-width: 100%
        }

        .profile-label {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: -1rem;
            letter-spacing: 0.05rem;
        }

        .profile-name {
            font-size: 4rem;
            font-weight: 600;
            color: #000;
            text-align: center;
        }

        /* Responsive design for tablets */
        @media (max-width: 1024px) {
            .text-column {
                padding: 50px 30px;
            }

            .profile-name {
                font-size: 40px;
            }
        }

        /* Responsive design for mobile */
        @media (max-width: 768px) {
            .container-introduction {
                flex-direction: column;
            }

            .profile-image-column img {
                min-height: 400px;
            }

            .introduction-text-column {
                padding: 40px 20px;
            }

            .profile-name {
                font-size: 36px;
            }

            .profile-label {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .profile-image-column img {
                min-height: 300px;
            }

            .profile-name {
                font-size: 28px;
            }

            .introduction-text-column {
                padding: 30px 20px;
            }
        }

        .tags {
			position: relative;
			max-width: 100%;
		    text-align: center;
			margin-bottom: 3rem;
			display: grid;
            grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr)); 
            gap: 0.6rem;
        }

        .tag {
			max-width: 100%;
            background: #2a2a2a;
            color: white;
            padding: 0.4rem 1rem;
            font-size: 0.6rem;
            border-radius: 0.2rem;
            text-transform: uppercase;
            letter-spacing: 0.05rem;
			font-family: helvetica;
        }

        .resume-btn {
			position: relative;
			max-width: 100%;
            background: #000;
            color: white;
            padding: 0.5rem 2rem;
            text-decoration: none;
            font-size: 0.8rem;
            border-radius: 0.2rem;
            text-transform: uppercase;
            letter-spacing: 0.1rem;
			font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
			justify-self:center;
        }

        /* Footer Info Bar */
        .info-bar {
			position: relative;
			display:flex;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background:#3a3a3a;
            font-size: 0.9rem;
			margin-top: 2rem;
        }

        .info-item {
			position: relative;
			display:flex;
		    text-align: center;
			color: whitesmoke;
			justify-self: center;
			margin-top: 1rem;
        }

        /* Bio Section */
        .bio-section {
			position: relative;
			max-width: 100%;
			background: #3a3a3a;
            color: whitesmoke;
            padding: 5rem 2rem;
            text-align: center; 
        }

        .bio-section h2 {
			position: relative;
			display:flex;
			max-width: 100%;
            font-size: 0.8rem;
            font-style: italic;
            letter-spacing: 0.1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
			justify-self: center;
        }

        .bio-section h3 {
			position: relative;
			display:flex;
			max-width: 100%;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: normal;
            font-style: italic;
			justify-self: center;
        }

        .bio-section p {
			position: relative;
			display: flex;
            font-size: 0.8rem;
            line-height: 1.5rem;
            max-width: 100%;
			margin-left: 10rem;
            margin-right: 10rem;
        }
