.elementor-1074 .elementor-element.elementor-element-3f77d31b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for container, class: .elementor-element-3f77d31b *//* Global Header Styles - Meinschwimm Swimming Instructor */

/* Import Google Fonts for Header */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600&display=swap');

/* Global Header Container */
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Section */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(62, 191, 255, 0.3);
    transition: all 0.3s ease;
}

.header-logo-icon:hover {
    border-color: #3EBFFF;
    background: rgba(62, 191, 255, 0.2);
}

.header-logo-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.header-logo-text {
    color: white;
    font-size: 18px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    display: none; /* Hidden by default, can be shown if needed */
}

/* Navigation Menu */
.header-nav {
    display: flex;
    align-items: center;
    background: rgba(19, 19, 21, 0.8);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 6px;
    gap: 4px;
}

.header-nav-item {
    padding: 12px 24px;
    border-radius: 25px;
    color: rgba(181, 178, 177, 0.9);
    font-size: 16px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.header-nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.header-nav-item.active {
    background: rgba(51, 50, 50, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3) inset;
}

/* CTA Button */
.header-cta {
    padding: 12px 24px;
    background: linear-gradient(180deg, #3EBFFF 0%, #0073C5 100%);
    border-radius: 25px;
    border: 2px solid rgba(231, 235, 244, 0.2);
    color: white;
    font-size: 16px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 191, 255, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 191, 255, 0.5);
    background: linear-gradient(180deg, #4AC3FF 0%, #0080D9 100%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-nav-item {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(181, 178, 177, 0.9);
    font-size: 16px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: rgba(62, 191, 255, 0.2);
    color: white;
}

.mobile-cta {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(180deg, #3EBFFF 0%, #0073C5 100%);
    border-radius: 25px;
    color: white;
    font-size: 16px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 191, 255, 0.3);
}

.mobile-cta:hover {
    background: linear-gradient(180deg, #4AC3FF 0%, #0080D9 100%);
}

/* Page Padding for Fixed Header */
.page-content {
    padding-top: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-nav {
        gap: 2px;
        padding: 4px;
    }
    
    .header-nav-item {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .header-cta {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .global-header {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .global-header {
        height: 70px;
        padding: 0 10px;
    }
    
    .page-content {
        padding-top: 70px;
    }
    
    .mobile-menu {
        top: 70px;
        padding: 15px;
    }
    
    .header-logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .header-logo-icon img {
        width: 24px;
        height: 24px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Header animation on scroll */
.global-header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Active page highlighting */
.header-nav-item[href*="courses"].active,
.mobile-nav-item[href*="courses"].active {
    background: rgba(62, 191, 255, 0.2);
    color: #3EBFFF;
}

.header-nav-item[href*="about"].active,
.mobile-nav-item[href*="about"].active {
    background: rgba(62, 191, 255, 0.2);
    color: #3EBFFF;
}

.header-nav-item[href*="contact"].active,
.mobile-nav-item[href*="contact"].active {
    background: rgba(62, 191, 255, 0.2);
    color: #3EBFFF;
}/* End custom CSS */