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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FC7ACD;
    color: #000000;
    position: relative;
    overflow-x: hidden;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    width: 140px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    color: #ffff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

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

/* content above the blob */
#header, section, .footer, .glowing-cursor {
    position: relative;
    z-index: 1;  
}

#header {
    width: 100%;
    padding: 15px 0;
    background-size: cover;
    background-position: center;
}

.container {
    padding: 10px 10%;
}

#development-title {
    font-size: 60px;
    text-align: center;
    margin-top: 20px; 
    font-weight: bold;
    font-family: 'Times New Roman', serif;
    color: #DB48A5;
    text-shadow: 3px 3px 5px rgba(255, 255, 255, 0.7);
    margin-bottom: 0; 
}

.paragraph {
    text-align: center;
    font-size: 15px;    
    color: white;
}

h2 {
    font-size: 36px;
    color: #DB48A5;
    margin-top: 10px; 
    text-align: center;
    font-family: 'Times New Roman', serif;
}
h3 {
    font-size: 30px;
    color: #DB48A5 !important;
    margin-top: 10px; 
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Times New Roman', serif;
}


section {
    margin-top: 10px;
    padding: 10px 10%;
    margin-bottom: 50px; 
}

.content {
    display: flex;
    flex-direction: column;  
    align-items: center;  
    justify-content: center;  
    margin-top: 10px;
    width: 100%;
}
.content img {
    width: 25%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}
.stuff {
    margin-bottom: 3%;
    font-size: 18px;
    color: #000;
    position: relative;
    text-align: left;
    margin-left: 20px; 
    margin-right: 20px;
}


.section-image {
    width: 30%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 15px;
}

.glowing-cursor {
    position: fixed;
    width: 12px;
    height: 15px;
    border-radius: 100%;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.967), 
                0 0 30px rgba(232, 50, 141, 0.5); 
    transform: translate(-50%, -50%);
    z-index: 9999; 
    transition: transform 0.05s ease-out; 
}

.footer {
    background-color: #DB48A5; 
    color: #ffffff;
    text-align: center;
    padding: 20px 0; 
    font-size: 14px; 
    font-family: 'Poppins', sans-serif; 
    overflow: hidden; 
    position: relative; 
}

/* Blob Background */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background: #fff;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0; /* Blob stays behind content */
    animation: blob-animation 15s infinite;
}

@keyframes blob-animation {
    0% {
        transform: scale(1) translate(10%, 10%);
    }
    50% {
        transform: scale(1.5) translate(-10%, -20%);
    }
    100% {
        transform: scale(1) translate(10%, 10%);
    }
}


#portfolio .content {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#portfolio .content p {
    width: 60%;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

#portfolio .section-image {
    width: 30%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 15px;
}

.link-content {
    font-size: 18px;
    color: #DB48A5;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f8f0f0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.link-content:hover {
    background-color: #DB48A5;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Fullscreen modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#modal-caption {
    text-align: center;
    color: #ccc;
    padding: 10px 20px;
    font-size: 20px;
}

.figma-large-image {
    width: 300px; 
}

.modal-trigger {
    cursor: pointer;
}