/* Garden Page Styles */
.garden-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem;
}

.garden-note {
    background: linear-gradient(160deg, 
        rgba(34, 45, 35, 0.95) 0%,
        rgba(48, 64, 48, 0.9) 25%,
        rgba(40, 55, 40, 0.92) 75%,
        rgba(28, 38, 30, 0.95) 100%);
    border: 3px solid rgba(85, 107, 87, 0.6);
    border-radius: 8px;
    padding: 1rem 2.5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    backdrop-filter: blur(8px);
    font-family: 'Cormorant Garamond', serif;
    transform: rotate(-0.5deg);
    animation: paper-sway 8s ease-in-out infinite;
}



.note-header {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}

.note-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    color: #c8d4ca;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.note-title::before {
    content: '🌱';
    font-size: 1.8rem;
    opacity: 0.7;
}

.note-title::after {
    content: '🌿';
    font-size: 1.8rem;
    opacity: 0.7;
}

.note-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.note-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #b8c4ba;
    margin: 0.5rem 0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
    padding-left: 1.5rem;
    position: relative;
}
    
.note-decoration {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 1rem;
    padding-top: 0.5rem;
}

.garden-signature {
    font-family: 'Allura', cursive;
    font-size: 2.2rem;
    color: rgba(155, 139, 189, 0.8);
    font-style: italic;
    text-align: right;
    margin: 0;
}

@keyframes paper-sway {
    0%, 100% {
        transform: rotate(-0.5deg);
    }
    50% {
        transform: rotate(0.3deg);
    }
}

@media (max-width: 768px) {
    .garden-note {
        padding: 1rem 2rem;
        margin: 1rem;
        transform: rotate(0deg);
    }
    
    .note-title {
        font-size: 2rem;
        gap: 1rem;
    }
    
    .note-title::before,
    .note-title::after {
        font-size: 1.5rem;
    }
    
    .note-content p {
        font-size: 1.2rem;
        padding-left: 1rem;
    }
    
    .garden-signature {
        font-size: 1.8rem;
    }
} 