.mobile-nav-toggle {
    background: rgba(204, 204, 204, 0.62);
}

.back-button #category {
    color: #ff6b9d;
    text-shadow: 0 0 10px #ffffff, /* Horizontal offset, Vertical offset, Blur radius, Color */
    0 0 20px #ffffff,
    0 0 30px #ffffff; /* Stack multiple shadows for a stronger glow */
}

.back-button a {
    font-size: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px #ff6b9d, /* Horizontal offset, Vertical offset, Blur radius, Color */
    0 0 20px #ff6b9d,
    0 0 30px #ff6b9d; /* Stack multiple shadows for a stronger glow */
}

/* About Page */
.about-content {
    max-width: 50%;
    margin-top: 130px;
    margin-left: 8%;
    line-height: 1.8;
    font-size: 16px;
    color: #ffffff; /* Set the text color, often a bright color */
    text-shadow: 0 0 10px #ff6b9d, /* Horizontal offset, Vertical offset, Blur radius, Color */
    0 0 20px #ff6b9d,
    0 0 30px #ff6b9d; /* Stack multiple shadows for a stronger glow */
}

.about-content p {
    margin-bottom: 20px;
}

.about-photo {
    position: fixed;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-links {
    margin-top: 40px;
}

.social-links a {
    display: block;
    color: #333;
    text-decoration: none;
    margin: 10px 0;
    font-size: 14px;
}

.social-links a:hover {
    color: #ff6b9d;
}

/* Contact Page */
.contact-content {
    max-width: 600px;
}

.contact-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #333;
}

.contact-info {
    font-size: 18px;
    line-height: 2;
}

.contact-info a {
    color: #ff6b9d;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}


@media (max-width: 1400px) {

    .about-content {
        margin-left: 30%;
    }
}

@media (max-width: 1200px) {
    .about-content {
        margin-left: 33%;
        width: 80%;
    }
}

@media (max-width: 768px) {


    .about-content {
        max-width: 100%;
        margin-top: 50px;
        margin-left: 2%;
        margin-right: 1%;
        height: auto;
        overflow: visible;
        position: relative;
        color: #ff1a75;
    }

    /* Create a quarter-circle cutout in the top-right corner for mobile */
    .about-content::before {
        content: '';
        float: right;
        width: 450px;
        height: 450px;
        shape-outside: circle(50% at 100% 0%);
        clip-path: circle(50% at 100% 0%);
    }


    .concave-text {
        background-color: #f0f0f0; /* Background of your text area */
        border-radius: 0 0 100% 100% / 0 0 50% 50%; /* Creates the concave shape */
        height: 300px; /* Make it taller than the container to hide the top */
        position: absolute;
        top: -40%; /* Adjust to position the text within the visible area */
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        color: #333;
        text-align: center;
    }
}