  /* Navigation Bar */
        nav {
            width: 100%;
            background-color: #4d2e95;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 8px 0;
            flex-wrap: wrap;
        }

        nav a {
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            text-align: center;
        }

        nav a:hover {
            background-color: #9bc444;
        }

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            justify-content: flex-start;
            align-items: center;
            background: url('https://mkadolls.com/images/side1.png') left top repeat-y, 
                        url('https://mkadolls.com/images/side2.png') right top repeat-y, 
                        url('https://mkadolls.com/images/dollbk.JPG') center center no-repeat;
            background-size: 150px auto, 150px auto, cover;
        }

        .content-wrapper {
            width: 93%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px;
            background-color: transparent;
        }

        header {
            background-color: rgba(255, 98, 161, 0.9);
            color: white;
            padding: 0.5rem;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: 100%;
        }

header img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}
        .container {
            background-color: #9bc444;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            text-align: center;
        }

        .coming-soon {
            font-size: 2rem;
            font-weight: bold;
            color: #df5981;
            text-shadow: 2px 2px 10px #FF62A1;
        }

        .copyright {
            text-align: center;
            padding: 10px;
            font-size: 0.9rem;
            color: #fff;
            background: #4d2e95;
            width: 100%;
            margin-top: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .instagram-links {
            display: flex;
            gap: 10px;
            justify-content: center;
            align-items: center;
            margin-top: 10px;
        }

        .instagram-links a img {
            width: 30px;
            height: 30px;
        }
        .info-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
            max-width: 1000px;
            width: 100%;
            margin-top: 10px;
            margin-bottom: 10px;
        }
.info-content {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap into multiple rows */
    justify-content: center; /* Align items to the left */
    gap: 15px; /* Space between items */
    width: 100%;
    margin: 0 auto; /* Center content */
}

.gallery-item {
    flex: 0 0 calc(20% - 15px); /* Each item takes up 20% of the container width minus gap */
    text-align: center; /* Center text under images */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the images and text */
    justify-content: center;
}

.info-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.info-content img {
    max-width: 150px;
    height: auto;
}

.info-text {
            text-align: center;
            width: 100%;
            font-size: 14px;
        }
        .links {
            margin-top: 20px;
            text-align: center;
        }

        .links a {
            display: inline-block;
            padding: 10px 20px;
            margin: 10px;
            text-decoration: none;
            background-color: #4d2e95;
            color: white;
            font-weight: bold;
            border-radius: 5px;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .links a:hover {
            background-color: #df5981;
        }        .video {
            margin-top: 10px;
            width: 100%;
        }
        .video iframe {
            width: 50%;
            height: 300px;
            border-radius: 10px;
        }
          .go-back-container {
            text-align: center;
            margin-top: 20px;
        }

        .go-back-button {
            background-color: #9bc444;
            color: white;
            padding: 10px 20px;
            font-size: 1.2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        .go-back-button:hover {
            background-color: #df5981;
        }
.search-container {
            text-align: center;
            margin-bottom: 30px;
        }

        .search-bar {
            padding: 15px;
            font-size: 15px;
            width: 100%;
            max-width: 300px;
            border: 2px solid #f39c12;
            border-radius: 50px;
            background-color: #ffeb3b;
            color: #333;
            outline: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .search-bar:focus {
            border-color: #f39c12;
            box-shadow: 0 4px 10px rgba(243, 156, 18, 0.4);
            background-color: #fff7e6;
        }

        .results {

            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .result-item {
            margin: 10px 0;
            display: flex;
            align-items: center;
            background-color: #ffffff;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            width: 90%;
            max-width: 500px;
            cursor: pointer;
        }

        .result-item:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .result-item img {
            max-width: 130px;
            margin-right: 15px;
            border-radius: 8px;
        }

        .result-item a {
            font-size: 18px;
            font-weight: bold;
            color: #f39c12;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .result-item a:hover {
            color: #e67e22;
        }

@media (max-width: 768px) {
    img[src="https://mkadolls.com/dolls/02/accessories/mk/images/accessories_portal.png"] {
        max-width: 80%; /* Adjust as needed */
        height: auto;
        display: block;
        margin: 0 auto; /* Center the image */
    
}
/* Target all images inside .info-content and make them smaller */
.info-content img {
    max-width: 150px; /* Adjust this value as needed */
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Ensure indentifier.png remains full size */
.info-container img[src*="indentifier.png"] {
    max-width: 100%; /* Keep its full size */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the image */
}    .video iframe {
        width: 100%; /* Makes video responsive */
        height: 200px;
    }
.small-image {
    max-width: 150px;
    height: auto;
}
    .container {
        padding: 1rem; /* Reduce padding on mobile for better spacing */
    }

.gallery-item p {
    margin: 2px 0 !important; /* Force smaller spacing */
    line-height: 1.1; /* Adjusts text spacing */
    display: block; /* Ensures paragraphs stay together */
    text-align: center; /* Keeps it visually appealing */
}
