/* Modern Color Palette */
:root {
    --primary: #5D9CEC; /* Soft blue */
    --secondary: #FF6B6B; /* Coral accent */
    --dark: #2C3E50; /* Navy */
    --light: #F8F9FA;
    --accent: #FFD166; /* Yellow accent */
    --text: #333333;
    --text-light: #6C757D;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: #ffffff;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Header & Navigation */
.navbar {
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background-color: white !important;
}

.nav-item, .btn {
    min-width: 44px;
    min-height: 44px;
}

.navbar-brand {
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.logo {
    height: 42px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
    color: var(--primary) !important;
    background-color: rgba(93, 156, 236, 0.1);
}

.navbar-nav .nav-item .nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-item .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #4a8be0;
    border-color: #4a8be0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(93, 156, 236, 0.3);
}

/* Base Banner Styles (shared by all pages) */
.banner-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.banner-bg {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    aspect-ratio: 16/9;
}

/* Homepage Specific Banner */
.homepage .banner-bg {
    background-image: url('../images/tushbaby-homepage-banner.png');
}

/* Products Page Specific Banner */
.products-page .banner-bg {
    background-image: url('../images/tushbaby-product-banner.png');
}

/* About Page Specific Banner */
.about-page .banner-bg {
    background-image: url('../images/tushbaby-about-banner.png');
    background-position: center 25%;
}

/* Blog Page Specific Banner */
.blog-page .banner-bg {
    background-image: url('../images/baby-carrier-guide-banner.png');
}

/* Travel Page Specific Banner */
.travel-page .banner-bg {
    background-image: url('../images/travel-baby-carrier-banner.jpeg');
}

/* FAQ Page Specific Banner */
.faq-page .banner-bg {
    background-image: url('../images/baby-carrier-faq-banner.png');
}

/* Contact Page Specific Banner */
.contact-page .banner-bg {
    background-image: url('../images/baby-carrier-contact-banner.jpg');
    background-position: center 35%;
}
/* About Page Specific Banner */
.about-page .banner-bg {
    background-image: url('../images/tushbaby-about-banner.jpg');
    background-position: center 35%;
}

.banner-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
}
/* Contact Page Specific Styles */
.contact-page .banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.contact-methods .fa-primary {
    color: var(--primary);
}

#contactForm label {
    font-weight: 500;
}

#contactForm .form-control,
#contactForm .form-select {
    padding: 0.75rem;
    border: 1px solid #ddd;
}

#contactForm .form-control:focus,
#contactForm .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(93, 156, 236, 0.25);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .contact-methods > div {
        margin-bottom: 1.5rem;
    }
}

/* FAQ Page Specific Styles */
.faq-page .accordion-button {
    font-weight: 500;
    padding: 1.25rem;
}

.faq-page .accordion-body {
    padding: 1.25rem;
}

.faq-page .accordion-button:not(.collapsed) {
    background-color: rgba(93, 156, 236, 0.1);
    color: var(--primary);
}

.faq-page h2 {
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid #eee;
}

.faq-page h2:first-of-type {
    border-top: none;
}

/* Content Styling */
.container {
    max-width: 1140px;
}

h1 {
    color: var(--dark);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

h2 {
    color: var(--dark);
    font-size: 2.2rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

h3 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.1rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark);
}

/* Product Page Specific Styles */
.testimonial-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating-stars {
    font-size: 1.2rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), #4a8be0);
}

/* Travel Page Specific Styles */
.feature-card {
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    color: var(--primary);
}

.use-case-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.use-case-card .icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(93, 156, 236, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Animation for product features */
.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.highlight-feature {
    animation: float 3s ease-in-out infinite;
}

/* Feature Cards */
.row > div[class^="col-"] {
    transition: all 0.3s ease;
}

.row > div[class^="col-"]:hover {
    transform: translateY(-5px);
}

.row > div[class^="col-"] h3 {
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--dark);
    padding: 3rem 0;
    margin-top: 4rem;
}

footer p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

footer a:hover {
    color: white;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

/* About Page Specific Styles */
.about-page .banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(93, 156, 236, 0.1);
    border-radius: 50%;
}

.team-card {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    border: 3px solid var(--primary);
    object-fit: cover;
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0);
    opacity: 1;
}

.fa-ul {
    margin-left: 2rem;
}

@media (max-width: 767.98px) {
    .team-card {
        margin-bottom: 2rem;
    }
    
    .press-logo {
        margin-bottom: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container > * {
    animation: fadeIn 0.6s ease forwards;
}

.container > *:nth-child(1) { animation-delay: 0.1s; }
.container > *:nth-child(2) { animation-delay: 0.2s; }
.container > *:nth-child(3) { animation-delay: 0.3s; }
.container > *:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .banner-bg {
        height: 60vh;
        aspect-ratio: 3/2;
    }
    
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .banner-bg {
        height: 50vh;
        min-height: 400px;
    }
    
    .products-page .banner-bg {
        background-position: 60% center;
    }
    
    .navbar-nav .nav-item .nav-link {
        padding: 0.75rem 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .banner-bg {
        height: 40vh;
        min-height: 300px;
    }
}

@media (max-width: 992px) {

}

