@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Playfair+Display:wght@400;700&display=swap');

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

body {
    background-color: black;
    display: flex;
    justify-content: center;
    font-family: 'Inter', 'Helvetica', 'Arial', sans-serif;
    color: #cccccc;
    font-weight: 300;
}

.main-heading {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.text,
.text p,
.text ul li,
p {
    font-family: 'Inter', 'Helvetica', 'Arial', sans-serif;
    color: #cccccc;
}

.text p,
.text ul li,
p {
    font-size: 0.98rem;
    line-height: 1.5;
    text-align: left;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.text ul {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 0 0;
}

.text ul li {
    position: static;
    padding-left: 0;
}

.text ul li::before {
    content: none;
    display: none;
}

.main {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 100px;
}

.main .text img {
    width: 180px;
    height: auto;
    margin: 24px 0 0 0;
    align-self: flex-end;
}

.profil {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main .profil img {
    border: solid 2px rgb(28, 28, 28);
    border-radius: 40%;
    width: 100px;
    height: auto;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    margin: 20px 0 20px 0;
}

.social-media {
    gap: 18px;
    display: flex;
    align-items: center;
    margin: 1px 0 0 0;
}

.social-media img {
    width: 40px !important;
    height: 40px !important;
    filter: grayscale(0%);
    transition: filter 0.3s;
}

.social-media img:hover {
    filter: grayscale(100%);
}

.linkedin img:hover,
.x img:hover {
    zoom: 1;
    /* Remove zoom effect */
}

.main .profil :hover img {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;

    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    

@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
}

/* Add responsiveness for small screens */
@media screen and (max-width: 900px) {
    .main {
        width: 90%;
        margin: 40px auto;
    }
    .main .text img {
        width: 120px;
    }
}

@media screen and (max-width: 600px) {
    .main {
        margin: 20px;
        width: auto;
    }
    .main .text img {
        width: 90px;
    }
    .text {
        gap: 16px;
    }
}

/* Fun Facts Section */
.fun-facts-section {
    width: 100%;
    max-width: 700px;
    margin: 80px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fun-facts-heading {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 3.2rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.fun-facts-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    width: 100%;
}

.fun-facts-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    color: #e0e0e0;
    font-size: 1.15rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
}

.fun-facts-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 2px #fff5;
    transform: translateY(-50%);
}

@media screen and (max-width: 600px) {
    .fun-facts-section {
        margin: 40px 0 0 0;
        padding: 0 10px;
    }
    .fun-facts-heading {
        font-size: 2.1rem;
        margin-bottom: 20px;
    }
    .fun-facts-list li {
        font-size: 1rem;
    }
}

.dash-list {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 0 0;
}

.dash-list li {
    color: #cccccc;
    font-size: 0.98rem;
    font-family: 'Inter', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    margin-bottom: 6px;
    padding-left: 0;
    list-style-type: none;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Remove any potential bullet styling */
.dash-list li::before {
    content: none;
    display: none;
}

strong {
    color: #ffffff;
    font-weight: 600;
}