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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0066cc 0%, #00cccc 100%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sapphire/Aqua Background Mix for All Sections */
.sapphire-aqua-bg {
    background: linear-gradient(135deg, #0066cc 0%, #00cccc 100%);
}

/* White Text for All Elements */
.white-text,
.main-nav a,
.hero-title,
.hero-subtitle,
.about-text,
.about-text h3,
.about-text p,
.value-item h4,
.value-item p,
.team-member h4,
.team-role,
.team-bio,
.testimonial-card p,
.testimonial-card cite,
.book-card h3,
.book-description,
.announcement-text p,
.kids-and-moms-video-content h3,
.kids-and-moms-video-content p,
.bedtime-intro,
.feature-content h3,
.feature-content p,
.curriculum-header h3,
.curriculum-description,
.curriculum-list li,
.vision-header h3,
.vision-content p,
.download-item h3,
.download-item p,
.contact-info h3,
.contact-info p,
.newsletter-signup h3,
.newsletter-signup p,
.footer-links h4,
.footer-links a,
.footer-social h4,
.footer-bottom p,
.footer-bottom a {
    color: #ffffff !important;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #0066cc 0%, #00cccc 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-logo {
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-image {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* About Section - UPDATED: Photo above content */
.about-section {
    padding: 4rem 0;
}

.about-section h2 i {
    margin-right: 10px;
}

/* UPDATED: Reordered layout - photo above content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    order: 1;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.about-text {
    order: 2;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.about-team {
    margin-top: 4rem;
}

.about-team h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-10px);
}

/* UPDATED: Team member image to fit circle with centered face */
.team-member-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transform: scale(1.1);
}

.centered-portrait {
    object-position: center 30%;
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-role {
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 1rem;
    line-height: 1.6;
}

/* Grid Layouts */
.testimonials-grid,
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.downloads-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Cards */
.testimonial-card,
.book-card,
.download-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover,
.book-card:hover,
.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.testimonial-img,
.book-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Book Announcement Section */
.book-announcement {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.book-announcement h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.announcement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.announcement-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* UPDATED: Announcement image to show full image */
.announcement-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.announcement-full-image {
    object-fit: contain !important;
}

/* Announcement Video Section */
.announcement-video {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumbnail {
    display: none;
}

/* Rainbow Books Collection */
.books-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.book-cover {
    height: 350px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.book-description {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0.5rem 0 1.5rem 0;
    min-height: 2.5rem;
}

/* Buttons */
button {
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-purchase,
.btn-download-free,
.btn-subscribe,
.btn-purchase-bedtime,
.btn-bundle,
.btn-subscribe-channel {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.3);
}

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

.book-actions .btn-purchase {
    width: 100%;
    max-width: 200px;
}

/* Sections */
section {
    padding: 4rem 0;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Footer */
.main-footer {
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #ffffff;
}

.social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    text-decoration: none;
    font-weight: 600;
}

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

/* Icons */
i {
    margin-right: 0.5rem;
    color: #ffffff;
}

/* Bedtime Stories Section */
.bedtime-stories-section {
    padding: 4rem 0;
}

.bedtime-stories-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.bedtime-stories-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.bedtime-stories-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.bedtime-stories-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.bedtime-stories-image:hover {
    transform: scale(1.02);
}

/* UPDATED: Bedtime stories image to show full image */
.bedtime-stories-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.bedtime-stories-full-image {
    object-fit: contain !important;
}

.bedtime-stories-intro {
    display: flex;
    align-items: center;
}

.bedtime-intro {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.8;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left: 5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.bedtime-stories-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-content p {
    line-height: 1.7;
    font-size: 1.1rem;
}

.bedtime-stories-curriculum {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.curriculum-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.curriculum-header i {
    font-size: 2rem;
}

.curriculum-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.curriculum-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.curriculum-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.curriculum-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.curriculum-list li:hover {
    transform: translateX(10px);
}

.curriculum-list i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.bedtime-stories-vision {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vision-header i {
    font-size: 2rem;
}

.vision-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.vision-content {
    display: grid;
    gap: 1.5rem;
}

.vision-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

/* Bedtime Stories Actions */
.bedtime-stories-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-purchase-bedtime,
.btn-bundle {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Videos For Kids And Moms Section */
.videos-for-kids-and-moms-section {
    padding: 4rem 0;
}

.videos-for-kids-and-moms-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.kids-and-moms-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.kids-and-moms-video-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.kids-and-moms-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.kids-and-moms-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.kids-and-moms-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.kids-and-moms-video-content {
    padding: 2rem;
}

.kids-and-moms-video-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.kids-and-moms-video-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Subscribe Channel Button Container */
.subscribe-channel-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.btn-subscribe-channel {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.btn-subscribe-channel:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.3);
}

/* Downloads Section */
.downloads-section {
    padding: 4rem 0;
}

.downloads-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.download-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-item i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.download-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    min-height: 3.5rem;
}

.download-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 6rem;
}

.download-item .btn-download-free {
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        gap: 2rem;
    }
    
    .about-img {
        height: 300px;
    }
    
    .bedtime-stories-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bedtime-stories-img {
        max-height: 400px;
    }
    
    .bedtime-stories-features {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .logo-section {
        align-items: center;
    }
    
    .site-logo {
        max-width: 300px;
    }
    
    .main-nav ul {
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .announcement-content {
        grid-template-columns: 1fr;
    }
    
    .announcement-img {
        height: auto;
        max-height: 400px;
    }
    
    .book-cover {
        height: 300px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bedtime-stories-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
    }
    
    .kids-and-moms-videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kids-and-moms-video-content {
        padding: 1.5rem;
    }
    
    .bedtime-stories-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-subscribe-channel {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid,
    .books-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .site-logo {
        max-width: 250px;
    }
    
    .footer-logo-img {
        max-width: 250px;
    }
    
    .book-cover {
        height: 250px;
    }
    
    .kids-and-moms-video-content h3 {
        font-size: 1.2rem;
    }
    
    .kids-and-moms-video-content p {
        font-size: 1rem;
    }
    
    .bedtime-intro {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .bedtime-stories-curriculum,
    .bedtime-stories-vision {
        padding: 2rem;
    }
    
    .curriculum-list {
        grid-template-columns: 1fr;
    }
    
    .btn-subscribe-channel {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
}