/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Astra Child Theme for Colorify-like design
Author: Your Name
Author URI: https://yourwebsite.com
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
*/

/* Import parent theme styles */
@import url("../astra/style.css");

/* Custom styles for Colorify-like design */
:root {
    --primary-color: #6a11cb; /* Purple accent color */
    --secondary-color: #2575fc; /* Blue accent color */
    --highlight-color: #ffd166; /* Yellow highlight color */
    --text-color: #333333; /* Dark text color */
    --light-bg: #f8f8f8; /* Light background color */
    --gradient-primary: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --gradient-secondary: linear-gradient(135deg, #ffd166 0%, #ffb347 100%);
}

/* Global styles */
body {
    font-family: 'Poppins', 'Verdana', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px !important;
    font-weight: 700;
}

.ast-plain-container.ast-no-sidebar #primary {
    margin: 0px;
}

/* Header styles */
.site-header {
    /* background: var(--gradient-primary); */
    /* padding: 15px 0; */
    color: white;
}

.site-header .site-title a {
    color: black;
    font-weight: 700;
}

#ast-desktop-header {
  /* display: flex; */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  justify-content: space-between;
}
.ast-container {
    max-width: 100% !important;
    padding: 0px !important;
}
/* Hero section - Updated to match the hot air balloon design */
.hero-section {
    position: relative;
    height: 600px;
    background-image: url('../../../uploads/2025/08/banner-1.png'); /* Relative path from the CSS file location */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hero-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    color: #000;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

.hero-section .cta-button {
    background-color: #000;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero-section .cta-button .arrow {
    margin-left: 8px;
}

/* Add a pseudo-element for the clouds overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: home_url('/wp-content/uploads/2025/08/banner-1.png');
    /* background-image: url('images/clouds-overlay.png');  */
    background-size: cover;
    opacity: 0.7;
    z-index: 1;
}

/* Features section */
.features-section {
    display: flex;
    justify-content: space-between;
    padding: 60px 0 0px;
    background-color: white;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 30px 20px;
    margin: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-box img {
    max-width: 80px;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #3a3a3a;
    margin-bottom: 15px;
}

/* Custom Product Card Styling */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
}

.product-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    transition: transform 0.3s ease;
    list-style: none !important;
    margin: 0 !important;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-category {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin: 5px 0;
    font-weight: 600;
    line-height: 1.3;
}

.product-card h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.product-card .price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 8px 0 15px;
}

.product-card .price del {
    color: #999;
    font-weight: normal;
    font-size: 0.9rem;
    margin-right: 5px;
}

.product-card .price ins {
    text-decoration: none;
}

.product-card .button {
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-card .button:hover {
    background: #000;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card .new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--highlight-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-bg);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial .stars {
    color: var(--highlight-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Membership CTA */
.membership-cta {
    background: var(--gradient-secondary);
    color: var(--text-color);
    text-align: center;
    padding: 80px 0;
    margin: 60px 0;
    position: relative;
}

.membership-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.membership-cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.membership-cta .price {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.membership-cta .original-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 10px;
}

.membership-cta .cta-button {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.membership-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .features-section {
        flex-direction: column;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .membership-cta h2 {
        font-size: 2rem;
    }
}

/* Quality Time Section */
.quality-time-section {
    background-color: #e6f7ff;
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
}

.quality-time-section h2 {
    color: var(--primary-color);
}

.icon-wrapper svg {
  width: 40px;
  height: 40px;
  transform: rotate(0deg);
  box-sizing: content-box;
  fill: #333;
  filter: drop-shadow( 0px 0px 0px #00000070 );
}

.features-section .cta-button {
    background-color: #000;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.features-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.features-section .icon-wrapper-1 svg {
    width: 20px;
    height: 20px;
    fill: white;
    margin-bottom: -4px;
    padding-left: 5px;
    transform: rotate(0deg);
    box-sizing: content-box;
    filter: drop-shadow( 0px 0px 0px #00000070 );
}

/* Category Boxes Styles */
.category-boxes {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 30px 0;
}

.category-box {
    flex: 1;
    text-align: center;
    position: relative;
}

.category-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.category-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.explore-button {
    display: inline-block;
    background-color: #000;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.explore-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.explore-button .arrow {
    display: inline-block;
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-boxes {
        flex-direction: column;
    }
    
    .category-box {
        margin-bottom: 30px;
    }
}

.product-container {
    margin-top: 60px;
}

.button {
    border-color: #000 !important;
    background-color: #000 !important;
}

.button:hover {
    border-color: #646363 !important;
    background-color: #646363 !important;
}
/* Woocommerce Product */

/* Welcome Offer Banner with Parallax Effect */
.welcome-offer-parallax {
    position: relative;
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    margin: 60px 0 30px;
}

.welcome-offer-parallax::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: -0px;
  left: -0px;
  width: calc(100% + 0px + 0px);
  height: calc(100% + 0px + 0px);
  border-color: inherit;
  background: var(--ast-global-color-8);
  opacity: 0.1;
}

.welcome-offer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

.shop-now-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.welcome-offer-content h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    color: white;
}

.welcome-offer-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    /* max-width: 600px; */
    font-weight: 600;
}

.promo-code {
    background-color: black;
    color: white;
    padding: 2px 8px;
    font-weight: bold;
}

.shop-now-button {
    background-color: black;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.shop-now-button:hover {
    background-color: #333;
}

.shop-now-button .arrow {
    margin-left: 8px;
}

/* For mobile devices where fixed background doesn't work well */
@media (max-width: 768px) {
    .welcome-offer-parallax {
        background-attachment: scroll;
        height: auto;
        padding: 60px 0;
    }
    
    .welcome-offer-content h2 {
        font-size: 2.5rem;
    }
}

/* Screen-Free Moments Section */
.screen-free-moments {
    padding: 0px 0 60px;
    background-color: #fff;
}

.screen-free-content {
    /* max-width: 900px; */
    margin: 0 auto;
    text-align: center;
}

.screen-free-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.cta-text {
    font-size: 22px !important;
    font-weight: 600;
    margin: 30px 0 !important;
    color: #000 !important;
}

.button-container {
    margin-top: 30px;
}

.shop-now-large {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.shop-now-large:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cart-icon {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .screen-free-content p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .cta-text {
        font-size: 18px !important;
    }
}

/* New Arrivals Section */
.new-arrivals-section {
    padding: 60px 0;
    margin-bottom: 40px;
    background-color: #f9f9f9;
    width: 100%;
}

.new-arrivals-section .section-title {
    position: relative;
    margin-bottom: 40px !important;
}

.new-arrivals-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

@media (max-width: 768px) {
    .new-arrivals-section {
        padding: 40px 0;
    }
}

.mt-0 {
    margin-top: 0px !important;
}

.second-banner h2 {
    text-align: center !important;
    font-size: 3rem !important;
}

/* Membership Benefits Section */
.membership-benefits-section {
    background: linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.membership-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.fire-emoji {
    font-size: 2.5rem;
    vertical-align: middle;
}

.membership-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 5px;
    color: #3a3a3a;
    font-weight: 400;
}

.membership-cta-button-container {
    margin: 30px 0;
}

.get-membership-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.get-membership-button:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.arrow-icon {
    margin-left: 10px;
}

.save-text {
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0;
    color: #fff;
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.benefit-box {
    flex: 1;
    background-color: rgba(255, 255, 255);
    border-radius: 8px;
    padding: 30px 20px;
    margin: 0 15px;
    text-align: left;
}

.benefit-icon {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #4B4F58;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4B4F58;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B4F58;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .benefits-container {
        flex-direction: column;
    }
    
    .benefit-box {
        margin: 15px 0;
    }
}

@media (max-width: 768px) {
    .membership-title {
        font-size: 2.2rem;
    }
    
    .membership-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .benefit-box {
        padding: 20px 15px;
    }
}

.mb-0 {
    margin-bottom: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pt-0 {
    padding-top: 0px !important;
}

/* Happy Clients Section */
.happy-clients-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.happy-clients-section .section-title {
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.happy-clients-section .section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card .testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
}

.testimonial-card .client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-card .client-name {
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Powered By Section */
.powered-by-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.powered-by-title {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
    font-weight: 500;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.faq-section .section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    text-align: left;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-grid {
        gap: 20px;
    }
    
    .partner-logo {
        height: 25px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* WooCommerce Shop Page Styles */
.woocommerce-shop .site-content {
    padding-top: 0;
}

/* Breadcrumb navigation styles */
.woocommerce-breadcrumb,
.breadcrumbs,
.breadcrumb-trail,
.ast-breadcrumbs-wrapper,
.site-breadcrumbs {
    max-width: 1200px;
    margin: 0 auto 1em !important;
    padding: 20px 20px 0 !important;
    font-size: 0.9em;
    color: #666;
}

.woocommerce-breadcrumb a,
.breadcrumbs a,
.breadcrumb-trail a,
.ast-breadcrumbs-wrapper a,
.site-breadcrumbs a {
    color: #333;
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover,
.breadcrumbs a:hover,
.breadcrumb-trail a:hover,
.ast-breadcrumbs-wrapper a:hover,
.site-breadcrumbs a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Shop header styles */
.shop-header {
    /* background-color: var(--primary-color); */
    /* background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
    background-color: #f5f5f5;
    color: #000;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.shop-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.shop-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Container styles */
.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Product grid styles */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Shop controls */
.woocommerce-products-header {
    margin-bottom: 30px;
}

.woocommerce-result-count,
.woocommerce-ordering {
    margin-bottom: 20px;
}

/* Narrow container for shop-style pages */
.narrow-container {
    max-width: 900px; /* Reduced from 1200px */
    margin: 0 auto;
    padding: 0 20px;
}

/* Adjust shop header for narrow pages */
.narrow-container .shop-header-container {
    max-width: 900px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
}
