/* --- FLYER STYLE CSS FOR NEW PAGES --- */

/* Reset & Fonts overlay */
.flyer-body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    box-sizing: border-box;
}

/* 1. Pre-Wedding Diet */
.pre-wedding-bg {
    background: url('assets/pre_wedding_bg.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    align-items: center;
    position: relative;
}

.pre-wedding-header {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 50px;
    margin-top: 20px;
}

.pre-wedding-header h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    margin: 0;
}
.pre-wedding-header h2 {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 5px;
    margin: 10px 0 0 0;
}

.pre-wedding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 900px;
}

.diet-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    min-height: 200px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s;
    text-decoration: none;
}
.diet-shape:hover { transform: scale(1.05); }

.glow-diet {
    background-color: #EF5A68;
    color: white;
    border-radius: 50% 50% 20px 20px; /* Mock heart */
}
.the-one-diet {
    background-color: #ffffff;
    color: #4a285d;
    transform: rotate(5deg); /* Slight tilt imitating diamond */
}
.next-chapter-diet {
    background-color: #663A7A;
    color: white;
    border-radius: 40px;
}
.inspiring-shape {
    background-color: #D1BFAB;
    color: black;
    border-radius: 20px 20px 20px 0; /* Mock chat bubble */
}

/* 2. Senior Citizens */
.senior-bg {
    background: url('assets/senior_bg.png') no-repeat center center/cover;
    padding: 60px 20px;
    text-align: center;
    color: #445;
}

.senior-header h1 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    color: #5d6f6e;
    margin-bottom: 40px;
}

.senior-section-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin: 40px 0 15px 0;
}

.senior-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.senior-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.senior-bubble {
    background-color: #Fce0d2;
    padding: 20px;
    border-radius: 20px 20px 20px 5px;
    font-weight: 600;
    color: #555;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.senior-footer {
    font-size: 2rem;
    margin-top: 60px;
    font-weight: 300;
}

/* 3. Non-Hospital Care */
.nhc-bg {
    background: url('assets/non_hospital_bg.png') no-repeat center center/cover;
    padding: 40px 20px;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.nhc-header h1 {
    font-size: 2rem;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
}

.nhc-header h2 {
    font-size: 2.5rem;
    color: #f7a992;
    font-weight: 600;
}

.nhc-middle-text {
    font-size: 1.6rem;
    max-width: 900px;
    margin: 40px auto;
    font-weight: 300;
}

.nhc-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.nhc-img-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    color: black;
    text-shadow: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.nhc-img-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 4px solid #f7a992;
}

.nhc-img-card p {
    padding: 15px;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

.nhc-footer {
    margin-top: 50px;
}

.nhc-footer h3 {
    font-family: 'Great Vibes', cursive;
    color: #f7a992;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 30px;
}

.nhc-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #f7a992;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 40px;
    text-shadow: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive */
@media(max-width: 768px) {
    .pre-wedding-grid, .senior-grid, .nhc-images-grid { grid-template-columns: 1fr; }
    .pre-wedding-header h1 { font-size: 3rem; }
}
