/* Custom CSS for Angela Karoh Shiatsu Website */

/* Google Sans Flex Font Import */
@font-face {
    font-family: 'Google Sans Flex';
    src: url('../fonts/GoogleSansFlex-VariableFont_GRAD,ROND,opsz,slnt,wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Qwitcher';
    src: url('../fonts/QwitcherGrypen-Regular.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Qwitcher-Bold';
    src: url('../fonts/QwitcherGrypen-Bold.ttf') format('truetype');
    font-weight: 100 900;
    font-style: bold;
    font-display: swap;
}



/* Font Awesome Local Import */
@import url('../fonts/fontawesome-free-6.4.0-web/css/all.min.css');

/* Color Variables - Updated Theme */
:root {
    --white: #ffffff;
    --dark-gray: #414141;
    --cream: #fbf6f2;
    --light-cream: #fbf6f2;
    --orange: #e78025;
    --burgundy: #861f29;
    --primary: #861f29;
    --secondary: #e78025;
    --accent: #fbf6f2;
    --transition-primary: linear-gradient(135deg, #e78025 0%, #861f29 100%);
    --transition-secondary: linear-gradient(45deg, #861f29 0%, #e78025 100%);
    --transition-tertiary: linear-gradient(180deg, #e78025 30%, #861f29 70%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Google Sans Flex', 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1060;
    display: flex;
    gap: 5px;
}

.language-switcher .btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-switcher .btn:hover,
.language-switcher .btn.active {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Language Switcher in Nav */
.mobile-language-switcher {
    display: none;
    padding: 10px 0;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.mobile-language-switcher .btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.mobile-language-switcher .btn:hover,
.mobile-language-switcher .btn.active {
    background: var(--secondary);
    color: var(--white);
}

/* Navigation */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: auto;
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 120px;
    transition: transform 0.3s ease, height 0.3s ease;
}

.navbar-brand img.logo-normal {
    height: 60px;
}

.navbar-brand img.logo-big {
    height: 120px;
}

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

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    font-size: 22px;
    margin: 0 1px;
    padding: 10px 20px !important;
    position: relative;
    transition: all 0.6s ease;
    border-right: none;
    border-radius: 25px;
    text-transform: uppercase;
}

.nav-item:last-child .nav-link {
    border-right: none;
}

.nav-link:hover {
    background: var(--transition-primary);
    color: white !important;
}

.nav-link.active,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    background-color: var(--secondary) !important;
    color: white !important;
}

/* Hero Section */
.hero-section {
     min-height: 60vh; 
    margin-top: 80px; 
    padding-top:65px;
    background-image: url('../images/Wellen_diagonal1.jpg');
    background-repeat: no-repeat;
    background-size: 1100px;
    background-position: bottom left;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Custom Buttons */
.custom-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary.custom-btn {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary.custom-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(90, 107, 79, 0.3);
}

.btn-outline-primary.custom-btn {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary.custom-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(90, 107, 79, 0.3);
}

.btn-light.custom-btn {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-light.custom-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.behandlung-page.rhythm-section p {
    margin-bottom: 0 !important;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--transition-primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Shiatsu Info Cards */
.shiatsu-card .card {
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
    border-left: 4px solid var(--secondary);
}

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

.shiatsu-icon {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.shiatsu-icon .fa-yin-yang {
    background: var(--transition-tertiary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

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

/* Font Awesome Icons - Global Primary Color */
.fas, .far, .fab, .fa,
i[class*="fa-"],
.fa-certificate:before, .fa-graduation-cap:before, .fa-fa-users:before {
    color: var(--primary) !important;
}

/* Exception for footer social links to maintain white color */
footer .social-links i {
    color: white !important;
}

/* Exception for specific contexts where white icons are needed */
.text-white i,
.navbar-toggler-icon i {
    color: white !important;
}

.shiatsu-card:hover .shiatsu-icon {
    transform: scale(1.1);
}

#musik {
    background-image: url('../images/Wellen_horizontal.jpg');
    background-repeat: repeat;
    background-size: auto;
    background-position: 0px -300px;
}

#musik .musik1 {
    max-width: 330px !important;
    margin-top: -100px;
}

.blockquote-footer {
    background: none;
}

blockquote {
    text-shadow: 1px 1px #7e644c;
    margin-bottom: 0 !important;
}

.inline-quote {
    font-family: 'Qwitcher';
    font-size: 50px;
    color: var(--secondary);
    text-align: center;
    line-height: 1;
    text-shadow: 2px 1.5px #efe5c9;
}

#add_services {
    background-image: url('../images/Wellen_horizontal.jpg');
    background-repeat: repeat;
    background-size: auto;
    background-position: 0px -363px;
}

.welle_horizontal_bg {
    background-image: url('../images/Wellen_horizontal.jpg');
    background-repeat: repeat;
    background-size: auto;
    background-position: 0px -291px;
}

.welle_horizontal1_bg {
    background-image: url('../images/Wellen_horizontal.jpg');
    background-repeat: repeat;
    background-size: auto;
    background-position: 0px -491px;
}

.welle_diagonal_bg {
    background-image: url('../images/Wellen_diagonal1.jpg');
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: left bottom;
}

.welle_diagonal1_bg {
    background-image: url('../images/Wellen_diagonal.jpg');
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: left bottom;
}

.welle_diagonal2_bg {
    background-image: url('../images/Wellen_diagonal2.jpg');
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: right;
}

/* Rhythm Quote Section */
.rhythm-section {
    background: var(--transition-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.rhythm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/photos/ufer1.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.rhythm-section .container {
    position: relative;
    z-index: 2;
}

/* Parallax Section */
.parallax-section {
    height: 200px;
    background-image: url('../images/Wellen_horizontal.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--transition-primary);
    opacity: 0.7;
    z-index: 1;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        height: 150px;
    }
}

.rhythm-quote {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Support Benefits */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.3rem;
}

.benefits-list li::before {
    content: "🌿";
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Personal Touch Section */
.personal-section {
    background: var(--cream);
    position: relative;
}

.personal-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary);
}

.personal-card1 {
    text-transform: uppercase;
}

.personal-highlight {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-in {
    animation: slideIn 1s ease-out 0.3s both;
}

.animate-float {
    animation: gentleFloat 3s ease-in-out infinite;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Background Sections */
.bg-light {
    background-color: var(--cream) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

/* Footer */
footer {
    background: var(--transition-secondary);
    color: white;
}

footer a {
    color: white;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.social-links i {
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-links i:hover {
    transform: translateY(-3px) scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .rhythm-quote {
        font-size: 1.8rem;
    }
    
    /* Hide fixed language switcher on mobile */
    .language-switcher {
        display: none !important;
    }
    
    /* Show mobile language switcher in burger menu */
    .mobile-language-switcher {
        display: block !important;
    }
    
    .custom-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Mobile logo should always stay small - override JavaScript classes */
    .navbar-brand img,
    .navbar-brand img.logo-big,
    .navbar-brand img.logo-normal {
        height: 50px !important;
    }

    /* Mobile hero section adjustments */
    .hero-section {
        min-height: 45vh;
        margin-top: 75px;
        padding-top: 58px;
        background-size: 600px;
    }
    .hero-section.index-page {
        min-height: 80vh;
        margin-top: 75px;
        padding-top: 58px;
        background-size: 700px;
        background-position: left -42px;
        text-align: center;
    }
    .index-page .hero-image {
        margin-top: 64px;
    }
    
    .index-page.rhythm-section p, .behandlung-page.rhythm-section p {
        font-size: 1.2rem !important;
    }       

    .motivation-quote {
        padding-top: 10px;
    }

    .mobile_margin_top {
        margin-top: 15px;
    }

    .privacy-policy h3{
        font-size: 15px;
    }

    .hide_on_mobile {
        display: none;
    }

    .center_on_mobile {
        text-align: center;;
    }

    .main-about {
        padding-top: 8px !important;
        padding-bottom: 10px !important;
    }

    .ueber-mich-hero-img {
        margin-bottom: 30px;
    }

    blockquote p {
        font-size: 1.3rem !important;
    }

    .benefits-list li {
        font-size: 1.1rem;
    }

    #musik .musik1 {
        max-width: 60% !important;
        margin-top: 30px;
    }

    footer .container {
        text-align: center;
    }

    .social-links {
        padding-top:20px;
    }

    .social-links i {
        margin: 0px 25px;
    }

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .rhythm-quote {
        font-size: 1.5rem;
    }
    
    .personal-card {
        padding: 1.5rem;
    }

    /*custom styles for mobile version*/
    

}

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

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects for Images */
img {
    transition: all 0.3s ease;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-green);
}

/* Focus States for Accessibility */
.custom-btn:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Zen Elements */
.zen-element {
    position: relative;
}

.zen-element::before {
    content: "◯";
    position: absolute;
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.3;
    top: -10px;
    right: -10px;
}
