/* Custom Font - Add your Chloe font file to the website folder */
@font-face {
    font-family: 'Chloe';
    src: url('Chloe.woff2') format('woff2'),
         url('Chloe.woff') format('woff'),
         url('Chloe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --color-primary: #EF3A61;
    --color-primary-light: #FCAF17;
    --color-blue: #00BAF2;
    --color-yellow: #F6BE23;
    --color-orange: #FCAF17;
    --color-pink: #EF3A61;
    --color-cream: #FFF9F0;
    --color-warm-white: #FFFDFB;
    --color-text: #2D2926;
    --color-text-light: #5A524E;
    --color-accent: #F6BE23;
    --font-display: 'Chloe', 'Playfair Display', Georgia, serif;
    --font-serif: 'EB Garamond', Garamond, Georgia, serif;
    --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-warm-white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation - Hamburger Menu */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}

.main-nav > * {
    pointer-events: auto;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
}

.home-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 100%);
    text-decoration: none;
    transform: rotate(-3deg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow:
        2px 2px 4px rgba(0,0,0,0.15),
        inset 0 0 20px rgba(255,255,255,0.3);
    position: relative;
}

.home-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
}

.home-icon:hover {
    transform: rotate(-3deg) scale(1.1);
    box-shadow:
        3px 3px 8px rgba(0,0,0,0.2),
        inset 0 0 20px rgba(255,255,255,0.3);
}

.home-icon svg {
    width: 26px;
    height: 26px;
    stroke: #1a1a1a;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-logo {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.nav-links {
    display: none;
    position: fixed;
    top: 80px;
    right: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 24px 32px;
    gap: 16px;
    list-style: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    font-family: 'Caveat', cursive;
    font-size: 1.35rem;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #E91E63;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    color: #333;
    padding: 60px 24px;
}

/* Page Header (for non-home pages) */
.page-header {
    padding: 100px 24px 60px;
    background: #fff;
    text-align: center;
}

.page-header h1 {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #333;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-button {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #F48FB1 0%, #E91E63 100%);
    color: white;
    text-decoration: none;
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: #fff;
}

.page-content h2 {
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #E91E63;
    margin-bottom: 24px;
    font-weight: 700;
}

.page-content h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 16px;
    font-weight: 600;
}

.page-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* Section Divider */
.section-divider {
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: #333;
    margin: 0 auto;
}

/* Featured Image */
.featured-image {
    text-align: center;
    margin-bottom: 50px;
}

.featured-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #E91E63;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card h3 {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: #333;
    margin-bottom: 16px;
}

.card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E3F2FD;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #81D4FA;
    box-shadow: 0 0 0 3px rgba(129, 212, 250, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    display: inline-block;
    background: linear-gradient(135deg, #F48FB1 0%, #E91E63 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Caveat', cursive;
    font-size: 1.35rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #E3F2FD 0%, #FCE4EC 100%);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-date {
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: #E91E63;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.read-more {
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    color: #E91E63;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Tag Filter Bar */
.tag-filter-bar {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

.filter-label {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: #666;
    margin-right: 12px;
}

.filter-tags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.filter-tag {
    padding: 6px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tag:hover {
    border-color: #E91E63;
    color: #E91E63;
}

.filter-tag.active {
    background: linear-gradient(135deg, #F48FB1 0%, #E91E63 100%);
    border-color: #E91E63;
    color: white;
}

/* Blog Posts - Full Width Layout */
.blog-posts {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.blog-post:first-child {
    padding-top: 0;
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-post-title a:hover {
    color: #E91E63;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.blog-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #E91E63;
    background: #FCE4EC;
    padding: 4px 12px;
    border-radius: 20px;
}

.blog-post-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-left: 5px;
}

.blog-post-image {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-preview {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.continue-reading {
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    color: #E91E63;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.continue-reading:hover {
    color: #C2185B;
    text-decoration: underline;
}

/* Blog List Images */
.blog-post-image-link {
    display: block;
    margin: 16px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-post-image-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-list-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

@media (max-width: 600px) {
    .blog-list-image {
        height: 360px;
    }
}

/* Individual Blog Post Page */
.blog-post-header {
    background: linear-gradient(135deg, #E3F2FD 0%, #FCE4EC 50%, #FFF9C4 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.blog-post-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-text);
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.3;
}

.blog-post-header .blog-post-meta {
    justify-content: center;
    margin-bottom: 0;
}

.blog-post-content {
    padding: 60px 0;
    background: var(--color-warm-white);
}

.blog-post-body {
    max-width: 700px;
    margin: 0 auto;
}

.blog-featured-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-body p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 24px;
}

.blog-post-body h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-text);
    margin: 48px 0 24px;
}

.blog-post-body h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-text);
    margin: 36px 0 16px;
}

.blog-post-body strong {
    color: var(--color-text);
    font-weight: 600;
}

.blog-post-body ul, .blog-post-body ol {
    margin: 20px 0 24px 24px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.9;
}

.blog-post-body li {
    margin-bottom: 12px;
}

.blog-post-body blockquote {
    border-left: 4px solid #E91E63;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--color-text-light);
}

.blog-post-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px dashed #E3F2FD;
    text-align: center;
}

.blog-post-footer p {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #E91E63;
}

.blog-post-navigation {
    margin-top: 48px;
    text-align: center;
}

.blog-nav-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.back-to-blog,
.share-button {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #E91E63;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.back-to-blog {
    color: #E91E63;
}

.share-button {
    background: linear-gradient(135deg, #F48FB1 0%, #E91E63 100%);
    color: white;
    border-color: #E91E63;
}

.back-to-blog:hover {
    background: #E91E63;
    color: white;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.blog-subscribe-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #E3F2FD 0%, #FCE4EC 100%);
    border-radius: 16px;
    text-align: center;
}

.blog-subscribe-section h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-subscribe-section p {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #666;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blog-subscribe-section .newsletter-form {
    max-width: 420px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .blog-post-header {
        padding: 100px 0 40px;
    }

    .blog-post-body p,
    .blog-post-body ul,
    .blog-post-body ol {
        font-size: 1.05rem;
    }
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.news-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #E3F2FD 0%, #FCE4EC 100%);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-content {
    padding: 20px;
}

.news-card-content h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.news-card-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* News Items (legacy) */
.news-item {
    padding: 30px 0;
    border-bottom: 2px dashed #E3F2FD;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: #E91E63;
    margin-bottom: 8px;
}

.news-item h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 12px;
}

.news-item p {
    color: var(--color-text-light);
}

.hero-content {
    max-width: 900px;
}

.preheader {
    font-family: 'Caveat', cursive;
    font-size: 1.75rem;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    color: #555;
    font-weight: 500;
}

/* Sticky Notes Title */
.sticky-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.sticky-word {
    display: flex;
    gap: 10px;
}

.sticky-container {
    perspective: 800px;
    width: clamp(70px, 18vw, 130px);
    height: clamp(70px, 18vw, 130px);
    transform: rotate(var(--rotation, 0deg));
    cursor: pointer;
}

.sticky {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #333;
    box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.18);
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
}

.sticky-front {
    transform: rotateY(0deg);
}

.sticky-back {
    transform: rotateY(180deg);
    font-size: clamp(0.7rem, 2.5vw, 1rem);
    text-align: center;
    padding: 8px;
    line-height: 1.2;
}

.sticky-container:hover .sticky-front {
    transform: rotateY(-180deg);
}

.sticky-container:hover .sticky-back {
    transform: rotateY(0deg);
}

.sticky.yellow {
    background: linear-gradient(135deg, #FFF59D 0%, #FFEE58 100%);
}

.sticky.pink {
    background: linear-gradient(135deg, #F8BBD9 0%, #F48FB1 100%);
}

.sticky.blue {
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 100%);
}

.subtitle {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: #444;
    letter-spacing: 0.01em;
}

.sketched-underline {
    position: relative;
    display: inline-block;
}

.sketched-underline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'%3E%3Cpath d='M0,5 Q50,3 100,5 T200,4' stroke='%23333' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
}

.tagline {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 48px;
    color: #666;
    line-height: 1.6;
    font-weight: 500;
}

.coming-date {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #666;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 100%);
    color: #333;
    padding: 18px 48px;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.02em;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(129, 212, 250, 0.5);
}

/* Book Section */
.book-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.book-section::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 12' preserveAspectRatio='none'%3E%3Cpath d='M0,6 Q100,4 200,7 T400,5' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    top: 0;
}

.alt-book-section {
    background: #ffffff;
}

.alt-book-section::before,
.alt-book-section::after {
    display: none;
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.book-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-retailers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.book-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.book-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    color: white;
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.book-placeholder small {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 8px;
}

.book-description h2 {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.25rem, 5vw, 3rem);
    color: #E91E63;
    margin-bottom: 24px;
    font-weight: 700;
}

.order-button {
    display: inline-block;
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 100%);
    color: #333;
    padding: 14px 36px;
    font-family: 'Caveat', cursive;
    font-size: 1.35rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(129, 212, 250, 0.4);
}

.order-button.small {
    padding: 10px 24px;
    font-size: 1.1rem;
    margin-top: 16px;
}

/* Other Books Grid */
.other-books-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.other-book-card {
    width: calc(25% - 23px);
}

.other-book-card {
    text-align: center;
}

.other-book-cover {
    display: block;
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, #E3F2FD 0%, #FCE4EC 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 16px;
    text-decoration: none;
}

.other-book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-book-card h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.35rem;
    color: #333;
    margin-bottom: 4px;
    font-weight: 600;
}

.other-book-card .book-author {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: #E91E63;
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .other-book-card {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 600px) {
    .other-books-grid {
        gap: 20px;
    }

    .other-book-card {
        width: calc(50% - 10px);
    }

    .other-book-card h3 {
        font-size: 1.1rem;
    }
}

.availability-text {
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    color: #E91E63;
    margin-top: 24px;
    font-weight: 600;
    font-style: italic;
}

.availability-text.centered {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 16px;
}

.book-description p {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.book-description p strong {
    color: var(--color-text);
}

.book-features {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px dashed #81D4FA;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--color-text);
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
}

.feature-icon {
    color: #F48FB1;
    font-size: 1rem;
    margin-top: 2px;
}

/* As Seen In Section - Scrolling Marquee */
.hand-drawn-divider {
    width: 80%;
    max-width: 900px;
    height: 12px;
    margin: 0 auto;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 12' preserveAspectRatio='none'%3E%3Cpath d='M0,6 Q100,4 200,7 T400,5' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
}

.as-seen-in {
    padding: 60px 0 20px;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.as-seen-in h2 {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.logo-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.logo-marquee:hover {
    animation-play-state: paused;
}

.logo-marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.media-logo {
    text-decoration: none;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.media-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.media-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Fallback grid for older browsers */
@supports not (animation: marquee 1s linear infinite) {
    .logo-marquee-wrapper {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .logo-marquee {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        width: 100%;
    }

    .logo-marquee-content:nth-child(2) {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo-marquee-content {
        gap: 40px;
        padding: 0 20px;
    }

    .media-logo img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-marquee-content {
        gap: 30px;
    }

    .media-logo img {
        height: 45px;
    }
}

/* Authors Section */
.authors-section {
    padding: 20px 0 100px;
    background: linear-gradient(180deg, #FFF 0%, #E3F2FD 100%);
}

.authors-section h2 {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

.authors-photo {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.authors-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.author-card {
    text-align: center;
}

.author-card h3 {
    font-family: 'Caveat', cursive;
    font-size: 2.25rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
}

.author-title {
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    color: #E91E63;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-align: center;
}

.author-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-align: left;
}

.author-card p.author-title {
    text-align: center;
}

.author-card p.author-link {
    font-family: 'Caveat', cursive;
    color: #666;
    font-size: 1.75rem;
    margin-top: 20px;
    text-align: center;
}

.author-link a {
    color: #E91E63;
    text-decoration: none;
}

.author-link a:hover {
    text-decoration: underline;
}

.together {
    max-width: 900px;
    margin: 20px auto 0;
    text-align: center;
    padding-top: 0;
    border-top: none;
}

.together p {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.gma-image {
    max-width: 100%;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFEE58 0%, #F48FB1 50%, #81D4FA 100%);
    color: #333;
}

.quote-section blockquote {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 600;
}

.quote-section blockquote cite {
    display: block;
    margin-top: 16px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: normal;
}

/* Older Posts Section */
.older-posts-section {
    padding: 60px 0;
    background: var(--color-warm-white);
}

/* Pre-order Section */
.preorder-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-warm-white) 0%, #FCE4EC 100%);
    text-align: center;
}

.preorder-section h2 {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: #E91E63;
    margin-bottom: 12px;
    font-weight: 700;
}

.preorder-text {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 40px;
}

.retailers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.retailer-button {
    padding: 14px 32px;
    background: linear-gradient(135deg, #81D4FA 0%, #4FC3F7 100%);
    color: #333;
    text-decoration: none;
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.12);
}

.retailer-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.18);
}

.newsletter {
    max-width: 500px;
    margin: 0 auto;
    padding-top: 40px;
}

/* Hide Kajabi form's default title and description */
.newsletter .kajabi-form__title,
.newsletter .kajabi-form__subtitle,
.page-content .kajabi-form__title,
.page-content .kajabi-form__subtitle {
    display: none !important;
}

/* Style Kajabi form to match website */
.newsletter .kajabi-form,
.newsletter .kajabi-form__wrapper,
.newsletter .kajabi-form__container,
.newsletter .kajabi-form-block,
.newsletter form,
.newsletter div[data-kjb-form],
.newsletter iframe,
.newsletter > div,
.page-content .kajabi-form,
.page-content .kajabi-form__wrapper,
.page-content .kajabi-form__container,
.page-content .kajabi-form-block,
.page-content form,
.page-content div[data-kjb-form],
.page-content iframe {
    background: transparent !important;
    background-color: transparent !important;
    font-family: var(--font-sans) !important;
}

.newsletter .kajabi-form__form-item input,
.newsletter .kajabi-form input[type="text"],
.newsletter .kajabi-form input[type="email"],
.page-content .kajabi-form__form-item input,
.page-content .kajabi-form input[type="text"],
.page-content .kajabi-form input[type="email"],
.page-content .kajabi-form textarea {
    background: var(--color-warm-white) !important;
    border: 2px solid #F48FB1 !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 1rem !important;
    font-family: var(--font-sans) !important;
    color: var(--color-text) !important;
}

.newsletter .kajabi-form__form-item input:focus,
.newsletter .kajabi-form input[type="text"]:focus,
.newsletter .kajabi-form input[type="email"]:focus,
.page-content .kajabi-form__form-item input:focus,
.page-content .kajabi-form input[type="text"]:focus,
.page-content .kajabi-form input[type="email"]:focus,
.page-content .kajabi-form textarea:focus {
    outline: none !important;
    border-color: #E91E63 !important;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1) !important;
}

.newsletter .kajabi-form__btn,
.newsletter .kajabi-form button[type="submit"],
.page-content .kajabi-form__btn,
.page-content .kajabi-form button[type="submit"] {
    background: linear-gradient(135deg, #F48FB1 0%, #E91E63 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 28px !important;
    font-size: 1.1rem !important;
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.newsletter .kajabi-form__btn:hover,
.newsletter .kajabi-form button[type="submit"]:hover,
.page-content .kajabi-form__btn:hover,
.page-content .kajabi-form button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.3) !important;
}

/* Style form labels */
.newsletter .kajabi-form label,
.page-content .kajabi-form label {
    font-family: var(--font-sans) !important;
    color: var(--color-text) !important;
}

.newsletter h3 {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 700;
}

.newsletter p {
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #F48FB1;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Caveat', cursive;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.newsletter-form button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #F48FB1 0%, #E91E63 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: 'Caveat', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.3);
}

/* Footer */
footer {
    padding: 40px 0;
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: white;
    transition: opacity 0.2s ease;
}

.footer-social a:hover {
    opacity: 0.8;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.footer-subscribe {
    margin-top: 16px;
}

.footer-subscribe-btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #F48FB1 0%, #E91E63 100%);
    color: white;
    text-decoration: none;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

/* Responsive Design */
@media (max-width: 900px) {
    .book-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-content > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .book-image {
        display: flex;
        justify-content: center;
    }

    .book-image img,
    .book-placeholder {
        max-width: 280px;
    }

    .authors-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .author-card p {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: auto;
        padding: 60px 16px;
    }

    .sticky-title {
        gap: 8px;
    }

    .sticky-word {
        gap: 6px;
    }

    .sticky-container {
        width: 60px;
        height: 60px;
    }

    .sticky-front {
        font-size: 2rem;
    }

    .sticky-back {
        font-size: 0.55rem;
        padding: 4px;
    }

    .book-section,
    .authors-section,
    .preorder-section {
        padding: 60px 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .retailers {
        flex-direction: column;
        align-items: center;
    }

    .retailer-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    padding: 30px 0;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 2px solid #E3F2FD;
    border-radius: 8px;
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #E3F2FD;
    border-color: #81D4FA;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #81D4FA 0%, #4FC3F7 100%);
    border-color: #4FC3F7;
    color: #333;
}

.pagination-prev,
.pagination-next {
    font-size: 1.1rem;
    font-weight: bold;
}

.pagination-ellipsis {
    padding: 0 8px;
    color: #999;
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
}

@media (max-width: 600px) {
    .pagination {
        gap: 4px;
    }

    .pagination-btn {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 1.1rem;
    }

    .pagination-numbers {
        gap: 2px;
    }
}

/* Free Guide Badge */
.free-guide-badge {
    position: absolute;
    bottom: 20px;
    right: calc(50% - 550px + 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transform: rotate(3deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

.free-guide-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.free-guide-badge img {
    width: 115px;
    height: auto;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0,0,0,0.15);
}

.free-guide-badge .badge-label {
    font-family: 'Caveat', cursive;
    font-size: 16px;
    color: #E91E63;
    margin-top: 8px;
    font-weight: 600;
}

/* Free App Badge (left side, mirrored) */
.free-app-badge {
    position: absolute;
    bottom: 20px;
    left: calc(50% - 550px + 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transform: rotate(-3deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

.free-app-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.free-app-badge img {
    width: 94px;
    height: auto;
    border-radius: 6px;
    box-shadow: -2px 3px 10px rgba(0,0,0,0.15);
}

.free-app-badge .badge-label {
    font-family: 'Caveat', cursive;
    font-size: 16px;
    color: #E91E63;
    margin-top: 8px;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .free-guide-badge {
        right: 80px;
    }
    .free-app-badge {
        left: 80px;
    }
}

@media (max-width: 768px) {
    .free-guide-badge {
        bottom: 15px;
        right: 20px;
    }

    .free-guide-badge img {
        width: 70px;
    }

    .free-guide-badge .badge-label {
        font-size: 12px;
    }

    .free-app-badge {
        bottom: 15px;
        left: 20px;
    }

    .free-app-badge img {
        width: 57px;
    }

    .free-app-badge .badge-label {
        font-size: 12px;
    }
}

/* Better Couple Questions App Section */
.bcq-app-section {
    padding: 80px 0;
    background: var(--color-cream);
}

.bcq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bcq-content h2 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: #5BA3C6;
    margin-bottom: 20px;
    line-height: 1.1;
}

.bcq-content p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.bcq-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.bcq-content ul li {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text);
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.bcq-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #FFB347 0%, #FF6B6B 50%, #5BA3C6 100%);
    border-radius: 50%;
}

.bcq-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bcq-images a {
    display: block;
    transition: transform 0.3s ease;
}

.bcq-images a:hover {
    transform: scale(1.02);
}

.bcq-images img {
    max-width: 280px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .bcq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bcq-content {
        order: 2;
        text-align: center;
    }

    .bcq-images {
        order: 1;
    }

    .bcq-content h2 {
        font-size: 2.2rem;
    }

    .bcq-content ul li {
        text-align: left;
    }

    .bcq-images img {
        max-width: 220px;
    }
}

/* Epic Date Night Guide Section */
.date-night-guide-section {
    padding: 80px 0;
    background: var(--color-cream);
}

.date-night-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.date-night-content h2 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: #5BA3C6;
    margin-bottom: 20px;
    line-height: 1.1;
}

.date-night-content p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.date-night-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.date-night-content ul li {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text);
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.date-night-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #FFB347 0%, #FF6B6B 50%, #5BA3C6 100%);
    border-radius: 50%;
}

.date-night-image {
    display: flex;
    justify-content: center;
}

.date-night-image a {
    display: block;
    transition: transform 0.3s ease;
}

.date-night-image a:hover {
    transform: scale(1.02);
}

.date-night-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .date-night-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .date-night-content {
        order: 2;
        text-align: center;
    }

    .date-night-image {
        order: 1;
    }

    .date-night-content h2 {
        font-size: 2.2rem;
    }

    .date-night-content ul li {
        text-align: left;
    }
}
