css_content_whimsical = """/* Global Layout Settings */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Fredoka', sans-serif;
    background-color: #F7EFE5; /* Cream background canvas */
    color: #4A3E3D;
    padding: 20px 0;
    position: relative;
    overflow-x: hidden;
}

/* Decorative Background Paw Columns */
.paw-bg-left, .paw-bg-right {
    position: fixed;
    top: 50px;
    font-size: 1.8rem;
    color: #EEDCC6;
    line-height: 2.5;
    z-index: 1;
    user-select: none;
    opacity: 0.7;
}
.paw-bg-left { left: 30px; text-align: center; }
.paw-bg-right { right: 30px; text-align: center; }

/* Main Page Canvas Wrapper */
.main-container {
    max-width: 1050px;
    margin: 0 auto;
    background-color: #FFFDF9; /* Warm stark white card container */
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(186, 154, 122, 0.15);
    padding: 40px;
    position: relative;
    z-index: 5;
    border: 8px solid #FFF5EA;
}

/* Header Elements */
.site-header {
    text-align: center;
    margin-bottom: 20px;
}
.bear-header-art {
    margin-bottom: 10px;
}
.brand-names {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: #B07D54; /* Mocha brown */
    font-weight: 400;
}

/* Whimsical Nav Bar */
.navigation-menu {
    background-color: #2F4858; /* Premium Contrast Deep Navy/Slate from Mockup 1 */
    padding: 15px 30px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 45px;
}
.nav-item {
    text-decoration: none;
    color: #FFFDF9;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.nav-item:hover {
    color: #F4A261;
}

/* Hero Elements */
.hero-banner {
    text-align: center;
    margin-bottom: 70px;
}
.hero-frame {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 40px;
    background-color: #FFF;
    color: #4A3E3D;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #B07D54;
}
.welcome-heading-block {
    margin-top: 30px;
}
.welcome-title {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: #2F4858;
    margin-bottom: 8px;
    font-weight: 400;
}
.welcome-sub {
    font-size: 1.2rem;
    color: #A87C5A;
    font-weight: 600;
}

/* Section Shared Headers */
.section-title {
    font-family: 'Pacifico', cursive;
    text-align: center;
    font-size: 2.6rem;
    color: #2F4858;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Story Blocks & Polaroid Theme */
.whimsical-story {
    margin-bottom: 80px;
}
.story-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}
.story-block.reverse {
    flex-direction: row-reverse;
}
.story-text-container {
    flex: 1;
}
.story-text-container h3 {
    font-size: 1.6rem;
    color: #B07D54;
    margin-bottom: 12px;
}
.story-text-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5C524E;
}
.photo-polaroid {
    background-color: #FFF;
    padding: 15px 15px 25px 15px;
    box-shadow: 0 8px 20px rgba(186,154,122,0.15);
    border-radius: 4px;
    border: 1px solid #EEDCC6;
    transform: rotate(-1.5deg);
    transition: transform 0.3s;
}
.story-block.reverse .photo-polaroid {
    transform: rotate(1.5deg);
}
.photo-polaroid:hover {
    transform: rotate(0deg) scale(1.02);
}
.photo-polaroid img {
    width: 260px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}
.photo-polaroid .caption {
    font-family: 'Pacifico', cursive;
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    color: #4A3E3D;
}

/* Wedding Cards Grid */
.whimsical-details {
    margin-bottom: 80px;
}
.cards-layout {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.whimsical-card {
    background-color: #FFF5EA;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 440px;
    box-shadow: 0 4px 15px rgba(186,154,122,0.08);
}
.card-art {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.whimsical-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2F4858;
}
.highlight-text {
    color: #B07D54;
    font-weight: 600;
    margin-bottom: 10px;
}
.action-bubble-btn {
    background-color: #2F4858;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-family: inherit;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.action-bubble-btn:hover {
    background-color: #F4A261;
}

/* Registry Page Badges */
.whimsical-registry {
    text-align: center;
    margin-bottom: 80px;
}
.icon-badges-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.badge-item {
    background-color: #FFF;
    border: 2px solid #FFF5EA;
    border-radius: 16px;
    padding: 20px;
    width: 110px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.badge-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}
.action-bubble-btn.large {
    padding: 14px 40px;
    font-size: 1rem;
    border-radius: 30px;
}

/* RSVP Form Elements */
.whimsical-rsvp {
    margin-bottom: 40px;
}
.rsvp-subtext {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 40px;
    color: #A87C5A;
    font-weight: 600;
}
.rsvp-split-layout {
    display: flex;
    background-color: #FFF5EA;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}
.rsvp-art-side {
    background-color: #EEDCC6;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 35%;
}
.card-badge {
    background-color: #2F4858;
    color: white;
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.whimsical-form {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.whimsical-form input, .whimsical-form textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 2px solid #FFF;
    background-color: #FFFDF9;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}
.whimsical-form textarea {
    height: 100px;
    resize: none;
}
.whimsical-form input:focus, .whimsical-form textarea:focus {
    border-color: #B07D54;
}
.form-submit-bubble {
    background-color: #2F4858;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}
.form-submit-bubble:hover {
    background-color: #B07D54;
}

/* Footer Element */
.whimsical-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 2px dashed #FFF5EA;
    color: #A87C5A;
    font-size: 0.9rem;
}

/* Responsiveness Configurations */
@media (max-width: 850px) {
    .paw-bg-left, .paw-bg-right { display: none; }
    .story-block, .story-block.reverse { flex-direction: column; text-align: center; }
    .rsvp-split-layout { flex-direction: column; }
    .rsvp-art-side { width: 100%; }
    .main-container { padding: 20px; border: none; }
    .brand-names { font-size: 2.4rem; }
    .navigation-menu { gap: 15px; padding: 12px; }
}