/*==================================
   Custom Theme Styles
===================================*/

/*------------------
    Variablen
-------------------*/
:root {
    /* Hauptfarben */
    --theme-color: #0E0A6E;    /* Tiefes Blau */
    --theme-color2: #D4AF37;   /* Gold */
    --yellow-color: #D4AF37;   /* Gold */
    --title-color: #0E0A6E;    /* Gleiches Blau wie theme-color für die Menüleiste */
    
    /* Hintergrundfarben */
    --smoke-color: #F8F8FF;    /* Sehr helles Blau */
    --smoke-color2: #E8E8F3;   /* Helles Blau */
    --smoke-color3: #F0F4FE;   /* Blasser blauer Farbton */
    
    /* Schatten */
    --box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    
    /* Übergänge */
    --transition: all 0.3s ease;
}

/*------------------
    Basis Styles
-------------------*/
body {
    font-family: 'DM Sans', sans-serif;
    color: #555;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--theme-color);
    font-weight: 600;
}

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

/*------------------
    Header Bereich
-------------------*/
.header-top {
    background: linear-gradient(to top, var(--title-color) 0%, var(--theme-color2) 100%);
    padding: 8px 0;
    position: relative;
    z-index: 4;
}

.sticky-wrapper.sticky .header-top {
    z-index: 5;
    margin-top: -60px;
    padding-top: 60px;
}

.header-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 30px;
}

.header-links ul li {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
}

.header-links ul li i {
    margin-right: 10px;
    color: var(--white-color);
}

.header-links ul li a,
.header-links ul li {
    color: var(--white-color);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.header-links ul li a:hover {
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.social-title {
    color: var(--white-color);
    margin-right: 15px;
    font-size: 14px;
    font-weight: 500;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    transition: 0.4s ease-in-out;
    border: 2px solid transparent;
}

.social-links a:hover {
    background-color: white;
    color: var(--theme-color);
    transform: translateY(-3px);
    border: 2px solid var(--theme-color);
}

/* Stellen Sie sicher, dass die Icons in Social-Links goldfarben werden */
.social-links a:hover i {
    color: var(--theme-color2);
}

/* Verbesserte Sichtbarkeit für den Header-Bereich */
.header-top a {
    transition: all 0.3s ease;
    position: relative;
}

/* Spezieller Hover für die Telefonnummer und E-Mail */
.header-links ul li a:hover {
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.menu-area {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 15px 0;
}

/* Logo Anpassungen */
.header-logo {
    position: relative;
    z-index: 10;
    margin-top: -20px;
}

/* Sticky Header Anpassungen */
.sticky-wrapper.sticky .header-logo {
    position: relative;
    z-index: 1050;
    margin-top: 0;
}

/* Spezielles Styling für das Logo im Header ganz oben */
.th-header .header-logo img {
    position: relative;
    z-index: 1050;
}

.main-menu > ul {
    display: flex;
    gap: 5px;
}

.main-menu > ul > li {
    position: relative;
}

.main-menu > ul > li > a {
    position: relative;
    padding: 8px 15px;
    font-weight: 500;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Eleganter Hover-Effekt mit Unterstrich */
.main-menu > ul > li > a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--theme-color2);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    z-index: -1;
}

.main-menu > ul > li > a:hover:before {
    width: 80%;
}

/* Leichter Zoom-Effekt mit Farbänderung */
.main-menu > ul > li > a:hover {
    color: var(--theme-color2);
    transform: scale(1.05);
}

/* Aktiver Menüpunkt */
.main-menu > ul > li.active > a {
    color: var(--theme-color2);
}

.main-menu > ul > li.active > a:before {
    width: 80%;
}

/* Zusätzlicher Effekt für eleganten Schimmer */
.main-menu > ul > li > a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0) 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: -2;
    border-radius: 30px;
}

.main-menu > ul > li > a:hover:after {
    opacity: 1;
    transform: scale(1);
}

/*------------------
    Hero Bereich
-------------------*/
.th-hero-wrapper {
    background-color: var(--smoke-color);
    padding: 80px 0;
}

.hero-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
}

/*------------------
    Komponenten
-------------------*/
/* Buttons */
.th-btn {
    background-color: var(--theme-color);
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    transition: var(--transition);
}

.th-btn:hover {
    background-color: var(--theme-color2);
}

/* Service Boxen */
.service-box {
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    transition: var(--transition);
    margin-bottom: 20px;
    padding: 25px;
}

.service-box:hover {
    transform: translateY(-5px);
}

/* Blog Cards */
.blog-card {
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
}

.blog-card_date {
    background-color: var(--theme-color);
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
}

/* Counter */
.th-counterup {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 20px;
}

.counter {
    color: var(--theme-color);
    font-weight: bold;
}

/* Galerie */
.gallery-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/*------------------
    Formulare
-------------------*/
input, 
select, 
textarea {
    border: 1px solid #e0e0e0 !important;
    border-radius: 5px !important;
    padding: 12px 15px !important;
    background-color: white !important;
    width: 100%;
}

/*------------------
    Überschriften
-------------------*/
.sec-title {
    color: var(--theme-color);
    margin-bottom: 30px;
    position: relative;
}

.sec-title:after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background-color: var(--theme-color2);
    margin: 15px auto 0;
}

.title-area.text-lg-start .sec-title:after {
    margin-left: 0;
}

.sub-title {
    color: var(--theme-color2) !important;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/*------------------
    Footer
-------------------*/
.footer-wrapper {
    background-color: var(--title-color);
}

.footer-widget h3.widget_title {
    color: white;
    border-bottom: 2px solid var(--theme-color2);
    padding-bottom: 10px;
    display: inline-block;
}

/* Footer-Menü-Links Hover-Effekt */
.footer-widget a,
.footer-links a,
.copyright-text a,
.footer-info a {
    color: white;
    transition: color 0.3s ease;
}

.footer-widget a:hover,
.footer-links a:hover,
.copyright-text a:hover,
.footer-info a:hover {
    color: var(--theme-color2);
}

/* Footer Social Icons Hover-Effekt */
.footer-social a {
    color: white;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--theme-color2);
}

/* Verbesserte Sichtbarkeit für Footer-Links */
.footer-wrapper a,
.footer-widget a,
.footer-menu a,
.widget_nav_menu a,
.copyright-links a,
.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.3s ease;
}

.footer-wrapper a:hover,
.footer-widget a:hover,
.footer-menu a:hover,
.widget_nav_menu a:hover,
.copyright-links a:hover,
.footer-links li a:hover {
    color: var(--theme-color2);
    text-decoration: none;
}

/* Spezieller Effekt für Footer-Menülinks */
.footer-menu a,
.widget_nav_menu a {
    display: inline-block;
    padding: 3px 0;
}

.footer-menu a:before,
.widget_nav_menu a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme-color2);
    transition: width 0.3s ease;
}

.footer-menu a:hover:before,
.widget_nav_menu a:hover:before {
    width: 100%;
}

/* Spezieller Fix für Footer-Navigation (Home-Link Problem) */
.footer-widget.widget_nav_menu a {
    width: auto;
    padding-left: 20px;
    text-transform: none;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget.widget_nav_menu a:hover {
    color: var(--theme-color2) !important;
    background-color: transparent;
}

.footer-widget.widget_nav_menu a:before {
    font-family: var(--icon-font);
    content: "\f30b";
    width: auto;
    height: auto;
    background-color: transparent;
    top: 2px;
}

.footer-widget.widget_nav_menu a:hover:before {
    color: var(--theme-color2);
}

/*------------------
    Popup
-------------------*/
#popup-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    width: 300px;
}

#popup-message button {
    margin-top: 10px;
    background: #001aff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

#popup-message button:hover {
    background: var(--theme-color);
}

/*------------------
    Utilities
-------------------*/
.lazy-load {
    transition: opacity 0.3s ease-in;
}

/* Ausblenden von Dekoelementen */
.shape-mockup img[src*="flower"], 
.shape-mockup img[src*="leaves"],
.hero_flower,
.sec-shape,
img[src*="flower"],
.th-hero-shape,
.th-hero-shape2,
.shape-mockup,
img[src*="title_shape"],
img[src*="title_left"],
img[src*="title_right"],
img[src*="shape"] {
    display: none !important;
}

/*------------------
    Media Queries
-------------------*/
/* Desktop & Tablet */
@media (max-width: 991px) {
    .hero-title {
        font-size: 32px;
    }
    
    .sec-title {
        font-size: 28px;
    }
    
    .appointment-content {
        padding: 25px 15px;
    }
    
    .th-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .th-hero-wrapper {
        padding: 60px 0;
        text-align: center;
    }
    
    .title-area {
        text-align: center !important;
    }
    
    .title-area.text-lg-start .sec-title:after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-box, 
    .blog-card, 
    .th-counterup {
        margin: 10px;
    }
}

/* Tablet */
@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }
    
    .space, 
    .space-top, 
    .space-bottom {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-style1 {
        padding: 0 15px;
    }
    
    .th-carousel {
        margin: 0 -10px;
    }
    
    .footer-wrapper {
        padding: 50px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .hero-title {
        font-size: 24px;
    }
    
    .service-box, 
    .blog-card {
        padding: 15px;
    }
    
    .space, 
    .space-top, 
    .space-bottom {
        padding: 40px 0;
    }
    
    .th-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .header-button .th-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .counter-sec {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }
    
    .th-counterup {
        border: none;
        padding: 10px;
    }
    
    .th-counterup .inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        margin: auto;
    }
    
    .th-counterup .content {
        text-align: center;
    }
    
    .th-counterup .content .counter {
        font-size: 30px;
        line-height: 32px;
        justify-content: center;
        margin-top: 5px;
    }
    
    .th-counterup .content .counter-card_text {
        font-size: 13px;
        line-height: 16px;
        margin-top: 2px;
    }
    
    .th-counterup .icon {
        margin-bottom: 5px;
    }
    
    .th-counterup .icon img {
        width: 28px;
        height: auto;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-menu {
        padding: 15px;
    }
    
    .header-button .th-btn {
        width: auto;
        padding: 8px 15px;
    }
}

/* Touch Devices */
@media (hover: none) {
    .service-box:hover {
        transform: none;
    }
}

/* Custom Button Styles */
.custom-button {
    background: var(--theme-color);
    color: white;
    border: 2px solid var(--theme-color);
    transition: all 0.3s ease;
}

.custom-button:hover {
    background: var(--theme-color2);
    border-color: var(--theme-color2);
}

/*------------------
    Gutschein-Karten
-------------------*/
.gift-card {
    background-color: white;
    border: 2px solid var(--theme-color2);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.gift-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--theme-color);
}

.gift-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--theme-color), var(--theme-color2));
}

.gift-card:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-image: url('../img/icons/gift-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    transform: rotate(15deg);
    transition: all 0.4s ease;
}

.gift-card:hover:after {
    opacity: 0.2;
    transform: rotate(0deg);
}

/* Icon-Styling mit verbesserter Sichtbarkeit */
.gift-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--smoke-color2);
    border-radius: 50%;
    color: var(--theme-color);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gift-card:hover .gift-card-icon {
    background-color: var(--theme-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Verbesserung der Icon-Sichtbarkeit */
.gift-card-icon img {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(12%) sepia(81%) saturate(6149%) hue-rotate(236deg) brightness(93%) contrast(98%);
}

.gift-card:hover .gift-card-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    transform: scale(1.2);
}

.gift-card-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--theme-color);
    text-align: center;
    font-weight: 600;
}

.gift-card-price {
    font-size: 22px;
    color: var(--theme-color2);
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.gift-card-description {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.gift-card-button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background-color: var(--theme-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.gift-card-button:hover {
    background-color: var(--theme-color2);
    color: white;
}

/* Stellt sicher, dass alle Kindelemente den Hover-Effekt übernehmen */
.gift-card-button i,
.gift-card-button * {
    position: relative;
    z-index: 2;
    color: inherit;
    transition: all 0.3s ease;
}

/* Zusätzlicher Fix für den Hover-Bereich */
.gift-card-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 0;
    border-radius: 5px;
}

/* Ribbon für spezielle Angebote */
.gift-card-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 150px;
    background-color: var(--theme-color2);
    color: white;
    text-align: center;
    transform: rotate(45deg);
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Animation für neue Gutscheine */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.gift-card.new {
    animation: pulse 2s infinite;
}

.gift-card.new:hover {
    animation: none;
    transform: translateY(-10px);
}

/*------------------
    Preisliste
-------------------*/
.price-list {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.price-list-header {
    background: linear-gradient(to right, var(--theme-color), var(--theme-color2));
    color: white;
    padding: 20px 30px;
    text-align: center;
}

.price-list-header h3 {
    color: white;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.price-list-body {
    padding: 0;
}

.price-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.price-list-item:last-child {
    border-bottom: none;
}

.price-list-item:hover {
    background-color: var(--smoke-color);
}

.price-list-item.featured {
    background-color: rgba(212, 175, 55, 0.1);
}

.price-list-item.featured:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

.price-list-item-left {
    display: flex;
    align-items: center;
}

.price-list-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--smoke-color2);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--theme-color);
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.price-list-item:hover .price-list-icon {
    background-color: var(--theme-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Verbesserung der Icon-Sichtbarkeit in der Preisliste */
.price-list-icon img {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(12%) sepia(81%) saturate(6149%) hue-rotate(236deg) brightness(93%) contrast(98%);
}

.price-list-item:hover .price-list-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    transform: scale(1.2);
}

.price-list-info h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: var(--theme-color);
}

.price-list-info p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.price-list-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-color2);
}

.price-list-badge {
    background-color: var(--theme-color2);
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 15px;
    font-weight: 600;
}

.price-list-action {
    margin-top: 20px;
    padding: 0 30px 30px;
    text-align: center;
}

.price-list-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--theme-color);
    color: white;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.price-list-button:hover {
    background-color: var(--theme-color2);
    color: white;
}

/*------------------
    Gutschein-Karten (kleine Variante)
-------------------*/
.gift-card-small {
    padding: 20px 15px;
    margin-bottom: 20px;
}

.gift-card-small .gift-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.gift-card-small .gift-card-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.gift-card-small .gift-card-description {
    font-size: 14px;
    margin-bottom: 10px;
}

.gift-card-small .gift-card-price {
    font-size: 18px;
    margin-bottom: 12px;
}

.gift-card-small .gift-card-button {
    padding: 8px 10px;
    font-size: 14px;
}

.gift-card-small .gift-card-ribbon {
    font-size: 12px;
    top: 15px;
    right: -25px;
    width: 120px;
}

/* Media Queries für die Gutscheinkarten */
@media (max-width: 1199px) {
    .col-lg-2.col-md-4 {
        width: 33.33%;
    }
}

@media (max-width: 991px) {
    .col-lg-2.col-md-4 {
        width: 33.33%;
    }
}

@media (max-width: 767px) {
    .col-lg-2.col-md-4 {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .col-lg-2.col-md-4 {
        width: 100%;
    }
    
    .gift-card-small {
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*------------------
    Über Mich Bereich
-------------------*/
.about-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.about-image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10,34,143,0) 70%, rgba(10,34,143,0.8));
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

.about-image-wrapper:hover:before {
    opacity: 1;
}

.about-image {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

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

.about-name-badge {
    position: absolute;
    left: 20%;
    bottom: 0%;
    transform: translateX(0);
    background: var(--theme-color2);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    z-index: 4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    transition: all 0.5s ease;
}

.about-image-wrapper:hover .about-name-badge {
    opacity: 1;
    bottom: 1%;
}

.about-content {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-content h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.about-content h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--theme-color2);
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-quote {
    position: relative;
    padding: 20px 25px;
    background: var(--smoke-color2);
    border-left: 4px solid var(--theme-color);
    margin: 30px 0;
    font-style: italic;
    color: var(--theme-color);
    border-radius: 0 5px 5px 0;
}

.about-quote:before {
    content: "\201C";
    font-size: 60px;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: Georgia, serif;
    color: rgba(10,34,143,0.2);
}

.about-signature {
    max-width: 150px;
    margin-top: 20px;
    opacity: 0.9;
}

.about-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--theme-color2);
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
}

.about-decoration-1 {
    top: -100px;
    right: -100px;
}

.about-decoration-2 {
    bottom: -50px;
    left: -100px;
}

/* Animation für den Über Mich Bereich */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.5s;
}

/* Hover-Effekt für About Buttons */
.about-btn {
    background-color: var(--theme-color);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    border: 2px solid var(--theme-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-btn:hover {
    background-color: transparent;
    color: var(--theme-color);
    transform: translateY(-3px);
}

/* Ergänzung für die Bilderdarstellung im Über Mich Bereich */
.about-image-group {
    position: relative;
    margin-bottom: 30px;
}

.about-image-primary {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.about-image-secondary {
    position: absolute;
    bottom: -5%;
    right: -10%;
    width: 65%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    border: 5px solid white;
    z-index: 3;
    transform: rotate(5deg);
    transition: all 0.5s ease;
}

.about-image-group:hover .about-image-secondary {
    transform: rotate(0deg) translateY(-10px);
}

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

.about-image {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.about-image-group .about-name-badge {
    left: 50%;
    bottom: 20px;
    z-index: 4;
}

/* Spezieller Stil für den letzten Satz im Über mich-Bereich */
.about-content .fw-medium {
    font-size: 16px;
    color: var(--theme-color);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Spezielles Styling für den Sticky-Wrapper im normalen Zustand */
.sticky-wrapper:not(.sticky) {
    position: relative;
    z-index: 6;
}

/* Anpassung des Menüs im Sticky-Zustand */
.sticky-wrapper.sticky .menu-area {
    position: relative;
    z-index: 1060;
}

/*------------------
    Link Korrekturen für bessere Sichtbarkeit
-------------------*/
/* Links auf dunklem Hintergrund */
.bg-theme a, 
[data-overlay="theme"] a, 
.bg-title a, 
.bg-black a, 
.bg-black2 a,
.th-btn a {
    color: var(--white-color);
}

.bg-theme a:hover, 
[data-overlay="theme"] a:hover, 
.bg-title a:hover, 
.bg-black a:hover, 
.bg-black2 a:hover,
.th-btn a:hover {
    color: var(--yellow-color);
}

/* Generelle Link-Hover-Verbesserung */
a:hover {
    color: var(--theme-color);
    text-decoration: none;
}

/* Bessere Sichtbarkeit für Links in Navigationsmenüs */
.main-menu a:hover,
.header-links a:hover,
.th-mobile-menu a:hover {
    color: var(--theme-color2);
    opacity: 1;
}

/* Verbesserung der Sichtbarkeit von Links bei Mausinteraktion */
a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover, 
a:focus, 
a:active {
    opacity: 0.85;
}

/* Spezielle Anpassungen für kleine Gutscheinkarten */
.gift-card-small .gift-card-icon img {
    width: 28px;
    height: 28px;
} 