/* ===================================
   Precious Ones Nanny Care
   Kid-Friendly Blue & Pink Theme
   =================================== */

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
    --primary-blue: #2B7DE9;
    --skyline-blue: #1A5FAA;
    --light-blue: #E8F4FD;
    --pretty-pink: #FF69B4;
    --deep-pink: #E91E90;
    --soft-pink: #FFF0F5;
    --bg-light: #f0f8ff;
    --bg-white: #ffffff;
    --text-dark: #111;
    --text-medium: #444;
    --text-light: #555;
    --font-main: 'Nunito', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    font-weight: bold;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: var(--deep-pink);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-main);
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HEADER
   =================================== */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 55px;
    width: auto;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-blue);
}

.brand span {
    font-size: 0.85rem;
    color: var(--pretty-pink);
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-info {
    text-align: right;
    font-size: 0.9rem;
}

.contact-info a {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-info a:hover {
    color: var(--pretty-pink);
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* ===================================
   SKYLINE BLUE BAND (above img3)
   =================================== */
.skyline-band {
    background: #E8F4FD;
    padding: 2.5rem 0;
    text-align: center;
}

.skyline-band h2 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
    padding-bottom: 1.5rem;
}

/* ===================================
   HERO IMAGE (img3)
   =================================== */
.hero-image-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    line-height: 0;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(43, 125, 233, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.08);
    display: block;
    transform: scale(1.05);
}

/* ===================================
   PINK BAND (below img3)
   =================================== */
.pink-band {
    background: linear-gradient(180deg, #F8B4D9 0%, #F4A0C8 100%);
    padding: 2rem 0;
    text-align: center;
}

/* ===================================
   LOCATION HEADING
   =================================== */
.location-heading {
    text-align: center;
    padding: 2.5rem 1rem;
    background-color: var(--soft-pink);
}

.location-heading h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--skyline-blue);
    line-height: 1.4;
    margin-bottom: 0;
    text-transform: none;
}

/* ===================================
   CONTENT PARAGRAPHS
   =================================== */
.content-section {
    padding: 3rem 1rem;
    text-align: center;
}

.content-section .container {
    max-width: 800px;
}

.content-section p {
    font-size: 1.35rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* ===================================
   CANDYLAND / IMG4 SECTION
   =================================== */
.candyland-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, #d6ecff 100%);
    padding: 3rem 0;
    text-align: center;
}

.candyland-section .container {
    max-width: 800px;
}

.candyland-image {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(43, 125, 233, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 0 auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.candyland-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(43, 125, 233, 0.3),
        0 6px 15px rgba(0, 0, 0, 0.1);
}

.candyland-image img {
    width: 100%;
    display: block;
    transform: scale(1.18);
}

/* ===================================
   GOOGLE REVIEWS
   =================================== */
.reviews-section {
    background-color: #fff;
    padding: 3rem 1rem;
    text-align: center;
}

.reviews-section .container {
    max-width: 600px;
}

.reviews-stars {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
}

.reviews-section h2 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.reviews-section p {
    margin-bottom: 1.5rem;
}

.reviews-btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.reviews-btn:hover {
    background-color: var(--deep-pink);
    color: #fff;
    transform: translateY(-2px);
}

/* ===================================
   TRAVEL / CONTACT SECTION
   =================================== */
.travel-contact {
    background: linear-gradient(135deg, var(--soft-pink) 0%, #ffe0f0 100%);
    padding: 3rem 1rem;
    text-align: center;
}

.travel-contact .container {
    max-width: 700px;
}

.travel-contact p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.travel-contact .contact-details {
    margin-top: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(233, 30, 144, 0.12);
    display: inline-block;
}

.travel-contact .contact-details h3 {
    color: var(--deep-pink);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.travel-contact .contact-details a {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    background-color: var(--light-blue);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 0.6rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.travel-contact .contact-details a:hover {
    background-color: var(--soft-pink);
    transform: translateY(-2px);
}

.payment-info {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}


/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background-color: #fff;
    padding: 3rem 1rem;
    text-align: center;
}

.about-section .container {
    max-width: 800px;
}

.about-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===================================
   BRANDING IMAGE
   =================================== */
.branding-section {
    background-color: var(--bg-white);
    padding: 3rem 20px;
    text-align: center;
}

.branding-image {
    max-width: 90%;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

/* ===================================
   FAMILY PHOTO (img2)
   =================================== */
.family-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, #d6ecff 100%);
    padding: 3rem 0;
    text-align: center;
}

.family-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(43, 125, 233, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.family-image:hover {
    transform: translateY(-4px);
}

.family-image img {
    width: 100%;
    display: block;
}

/* ===================================
   VIDEO SECTION
   =================================== */
.video-section {
    background: #fff;
    text-align: center;
    padding: 3rem 0;
}

.video-section h2 {
    color: var(--skyline-blue);
    margin-bottom: 1.5rem;
}

.video-wrapper {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

video {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.footer-contact h3 {
    color: var(--pretty-pink);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.3rem;
}

.footer-contact a {
    color: #fff;
    font-weight: 700;
}

.footer-contact a:hover {
    color: var(--pretty-pink);
}

.social-links img {
    width: 42px;
    transition: opacity 0.3s, transform 0.3s;
    border-radius: 50%;
}

.social-links img:hover {
    opacity: 0.85;
    transform: scale(1.1);
}

.copyright {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright p {
    color: inherit;
}

/* ===================================
   RESPONSIVE — MOBILE
   =================================== */
@media (max-width: 768px) {

    header {
        padding: 0.5rem 0;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.5rem;
    }

    .logo {
        height: 40px;
    }

    .brand h1 {
        font-size: 1.3rem;
        line-height: 1.1;
        margin-bottom: 0;
    }

    .brand span {
        font-size: 0.7rem;
        display: block;
        margin-top: 2px;
    }

    .contact-info {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
        width: 100%;
    }

    .contact-info p {
        display: none;
    }

    .contact-info a {
        display: block;
    }

    .skyline-band h2 {
        font-size: 1.2rem;
    }

    .location-heading h2 {
        font-size: 1.3rem;
    }

    .content-section p {
        font-size: 1.35rem;
    }

    .candyland-image {
        border-radius: 12px;
    }

    .travel-contact .contact-details {
        padding: 1.2rem 1.5rem;
    }
}