@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Work+Sans:wght@300;400;500&display=swap');

:root {
    --cream: #FFF8F0;
    --mint: #C4E7D4;
    --lavender: #D4C4E7;
    --peach: #FFD6C2;
    --dusty-blue: #A2B9C2;
    --dark-blue: #2E5266;
}

body {
    background-color: var(--cream);
    font-family: 'Work Sans', sans-serif;
}

.bg-cream { background-color: var(--cream); }
.bg-mint { background-color: var(--mint); }
.bg-lavender { background-color: var(--lavender); }
.bg-peach { background-color: var(--peach); }
.bg-dusty-blue { background-color: var(--dusty-blue); }
.text-dark-blue { color: var(--dark-blue); }

/* Paper Texture Effect */
.bg-paper-texture {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Highlight effect */
.highlight {
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--mint);
    opacity: 0.4;
    z-index: -1;
    transform: rotate(-1deg);
}

/* Sketch Cards */
.sketch-card {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
}

.sketch-image {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 15px 30px -15px rgba(0,0,0,0.1);
    transform: rotate(0.5deg);
    border: 1px solid rgba(0,0,0,0.05);
    background-color: white;
    padding: 20px;
    background-image: linear-gradient(to bottom right, #fff, #f9f9f9);
}

.sketch-caption {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.sketch-caption::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--mint), var(--lavender), var(--peach));
}

/* Sticky Notes */
.sticky-note {
    padding: 1.5rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    position: relative;
    transform: rotate(-2deg);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: rgba(0,0,0,0.7);
}

.sticky-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 8px 8px 0 0;
}

.sticky-note:nth-child(even) {
    transform: rotate(2deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sketch-card {
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }
    
    .sketch-image {
        border-radius: 0;
    }
}