@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Jost", sans-serif;
    background-image: url(webbg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-color: beige;
}

/* Header */
.creations_header {
    padding: 30px 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 50%;
    margin: 20px auto;
}

.creations_header h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.creations_header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Section */
.creations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.creationtext {
    flex: 1;
    max-width: 500px;
    font-size: 18px;
    text-align: left;
}

/* Image */
.creationimg {
    flex: 1;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.creationimg img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .creations {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .creationtext {
        text-align: center;
        font-size: 16px;
        max-width: 90%;
    }

    .creationimg {
        max-width: 90%;
    }

    .creations_header {
        padding: 30px 15px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        max-width: 100%;
        margin: 20px auto;
    }
}
