/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #f5efe6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* === UTILITY CLASSES === */
.font-script {
    font-family: 'Dancing Script', cursive;
}

.font-sans {
    font-family: 'Montserrat', sans-serif;
}

/* === BOTANICAL CORNER DECORATIONS === */
.botanical {
    position: absolute;
    opacity: 0.7;
}

.botanical-top-right {
    top: 5px;
    right: 5px;
    width: 90px;
    height: 90px;
}

.botanical-bottom-left {
    bottom: 5px;
    left: 5px;
    width: 90px;
    height: 90px;
    transform: rotate(180deg);
}

.botanical-top-left {
    top: 5px;
    left: 5px;
    width: 70px;
    height: 70px;
    transform: scaleX(-1);
}

.botanical-bottom-right {
    bottom: 5px;
    right: 5px;
    width: 70px;
    height: 70px;
    transform: scaleX(-1) rotate(180deg);
}

/* === CONTROLS === */
.card-controls {
    text-align: center;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2s forwards;
}

.flip-hint {
    font-family: 'Dancing Script', cursive;
    color: #a09080;
    font-size: 1.5rem;
    cursor: pointer;
    white-space: nowrap;
    background: none;
    border: none;
    margin-bottom: 0.8rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.flip-hint:hover {
    color: #8a7968;
}

.share-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #8a7968;
    background: #faf6ef;
    border: 1px solid #d4c4a8;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.share-btn:hover {
    background: #f0e8d8;
    border-color: #b8a890;
}

/* === CALENDAR MODAL === */
.calendar-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.calendar-modal-overlay.show {
    display: flex;
}

.calendar-modal {
    background: #faf6ef;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    max-width: 300px;
    width: 85%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.calendar-modal-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: #3a3028;
    margin-bottom: 1.2rem;
}

.calendar-choice-btn {
    display: block;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #3a3028;
    background: #fff;
    border: 1px solid #d4c4a8;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 0.6rem;
    transition: all 0.2s;
}

.calendar-choice-btn:hover {
    background: #f0e8d8;
    border-color: #b8a890;
}

.calendar-modal-close {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #a09080;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 0.4rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}