@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: linear-gradient(135deg, #cca46d, #fcebd2);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    color: #3d2b1f;
}

/* Header */
.creations_header {
    padding: 30px 20px;
    background: rgba(255, 245, 230, 0.95); /* soft beige with opacity */
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 850px;
    margin: 40px auto 20px;
    border: 1px solid #eb963530;
    margin-top: 100px;
    margin-bottom: 150px;
}

.creations_header h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: #eb9635;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.creations_header p {
    font-size: 1.1rem;
    color: #5c4a33;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.6;
}

.creationtitle {
    font-size: 1rem;
    text-align: center;
    font-weight: 700;
    color: #d27f2c; /* a rich warm orange */
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: capitalize; /* or uppercase if you want it more bold */
    font-family: "Jost", sans-serif;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Main Content Section */
.creations {
    display: flex;
    flex-direction: column;
    gap: 50px; /* spacing between creation blocks */
    margin-top: 50px;
    padding: 0 30px 60px;
}

.creation-block {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.creationtext, .creationimg {
    flex: 1;
}


.creationtext {
    flex: 1;
    max-width: 500px;
    font-size: 18px;
    text-align: left;
    color: #3d2b1f;
    line-height: 1.7;
    background-color: rgba(255, 245, 230, 0.85);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0d2a3;
}

.creationimg {
    flex: 1;
    max-width: 420px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid #f5d9b3;
}

.creationimg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .creations {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .creationtext {
        text-align: center;
        font-size: 16px;
        max-width: 95%;
    }

    .creationimg {
        max-width: 90%;
    }

    .creations_header {
        max-width: 95%;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .creations_header {
        padding: 20px 15px;
        border-radius: 12px;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .creations_header h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .creations_header p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .creations {
        gap: 20px;
        padding: 0 15px 40px;
    }

    .creationtext {
         max-width: 100%;
        font-size: 16px;
        padding: 15px;
    }

    .creationimg {
        max-width: 90%;
        border-radius: 10px;
    }

    .creationimg img {
        border-radius: 10px;
    }
    .creation-block {
        flex-direction: column;
        text-align: center;
    }
}
