/* Homepage Specific Styles - Tada' Yoga Studio */
/* Extracted from index.html for better maintainability */

/* Google Translate Styles */
.goog-te-banner-frame.skiptranslate {display: none !important;}
body {top: 0px !important;}
#google_translate_element {display: inline-block; z-index: 100; position: relative;}
.goog-te-gadget {color: #333 !important;}
.goog-te-gadget .goog-te-combo {margin: 0; border: 1px solid #ddd; border-radius: 4px; padding: 5px 10px; background: white !important;}
.goog-te-gadget-simple {background: rgba(255,255,255,0.9) !important; border: 1px solid #ddd; border-radius: 4px; padding: 5px;}
.goog-te-gadget-simple .goog-te-menu-value span:first-child {color: #333 !important;}
.goog-te-gadget-simple .goog-te-menu-value {color: #333 !important;}

/* Animation Keyframes */
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
    50% { transform: scale(1.02); box-shadow: 0 15px 50px rgba(0,0,0,0.4); }
}

/* Banner Section Layout Fixes */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section-image {
    position: relative;
    z-index: 2;
}

.banner-section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Decorative Shapes Positioning */
.banner_left_top_shape,
.banner_left_bottom_shape,
.banner_right_top_shape,
.banner_right_bottom_shape {
    position: absolute;
    z-index: 1;
    opacity: 0.8;
}

.banner_left_top_shape {
    top: 10%;
    left: 5%;
    max-width: 120px;
}

.banner_left_bottom_shape {
    bottom: 10%;
    left: 8%;
    max-width: 100px;
}

.banner_right_top_shape {
    top: 15%;
    right: 10%;
    max-width: 80px;
}

.banner_right_bottom_shape {
    bottom: 15%;
    right: 5%;
    max-width: 90px;
}

/* Content Visibility */
.banner-section-content {
    position: relative;
    z-index: 3;
    padding: 40px 20px;
}

.banner-section-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    min-height: 80px;
}

.banner-section-content h1 .ityped {
    display: inline-block;
    min-width: 200px;
    color: #FFD700;
    font-weight: 700;
}

.banner-section-content h1 .ityped::after {
    content: '';
    display: inline-block;
}

.banner-section-content h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.banner-section-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

/* Header Section White Overlay */
.main_header {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    backdrop-filter: blur(10px);
}

.main_header .container-fluid {
    background: transparent !important;
}

.navbar {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar-collapse {
    background: transparent !important;
}

/* Banner Section Background */
.banner-section-outer {
    background-image: url('./assets/images/Hero2_image.png?v=20241025') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative !important;
}

/* Force background image with higher specificity */
div.banner-section-outer {
    background-image: url('./assets/images/Hero2_image.png?v=20241025') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.banner-section-outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
    z-index: 1;
}

.banner-section {
    background: transparent !important;
    position: relative;
    z-index: 2;
}

.main_header {
    position: relative;
    z-index: 3;
}

/* Navigation Visibility on Purple Background */
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.navbar-nav .nav-link:hover {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.navbar-brand {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-section-content h1 {
        font-size: 2.2rem;
    }
    
    .banner-section-content {
        padding: 20px 15px;
    }
    
    .banner_left_top_shape,
    .banner_left_bottom_shape,
    .banner_right_top_shape,
    .banner_right_bottom_shape {
        max-width: 60px;
        opacity: 0.6;
    }
    
    .navbar-collapse {
        background: rgba(0,0,0,0.1) !important;
        border-radius: 10px !important;
        padding: 15px !important;
        margin-top: 10px !important;
    }
}
