:root {
    --primary-color: #0066cc;      /* Blau für normale Links */
    --accent-color: #fa8838;       /* Orange für CTA-Buttons */
    --secondary-color: #333333;
    --text-color: #555555;
}

/* ========================================
   ONLINE TERMINBUCHUNG SECTION
   ======================================== */
h2{
	    font-family: "Roboto Condensed", sans-serif, "google";
    font-size: 48px;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fa8838;
}
.online-booking-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
}

.booking-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

/* Icon Container */
.booking-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #fb9f5e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    box-shadow: 0 4px 16px rgba(255, 153, 0, 0.3);
}

.booking-icon svg {
    width: 48px;
    height: 48px;
}

/* Typography */
.booking-title {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.booking-subtitle {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.booking-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.booking-hint {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Button Spacing */
.booking-card .btn {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .online-booking-section {
        padding: 3rem 0;
    }
    
    .booking-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .online-booking-section {
        padding: 2rem 0;
    }
    
    .booking-card {
        padding: 2rem;
    }
    
    .booking-icon {
        width: 70px;
        height: 70px;
    }
    
    .booking-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .booking-title {
        font-size: 1.6rem;
    }
    
    .booking-subtitle {
        font-size: 1.1rem;
    }
    
    .booking-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .booking-card {
        padding: 1.5rem;
    }
    
    .booking-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .booking-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .booking-title {
        font-size: 1.4rem;
    }
    
    .booking-subtitle {
        font-size: 1rem;
    }
    
    .booking-text {
        font-size: 0.95rem;
    }
    
    .booking-hint {
        font-size: 0.85rem;
    }
}


/* ========================================
   LINK STYLING - Orange als Standard
   ======================================== */

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #e68a00; /* Dunkleres Orange beim Hover */
    text-decoration: underline;
}

a:focus {
    color: #e68a00;
    outline: 2px solid rgba(255, 153, 0, 0.3);
    outline-offset: 2px;
}

a:active {
    color: #cc7a00; /* Noch dunkler beim Klick */
}

/* Besuchte Links */
a:visited {
    color: #d68500;
}

/* Links in Texten */
p a,
.lead a,
.card-text a {
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

p a:hover,
.lead a:hover,
.card-text a:hover {
    border-bottom-color: var(--accent-color);
    text-decoration: none;
}

/* Ausnahmen: Buttons und Navigation behalten ihre Farben */
.btn,
.nav-link,
.navbar-brand,
.breadcrumb-item a {
    /* Diese überschreiben die Standard-Link-Farbe */
}


/* ========================================
   KONTAKT INFO BLOCK
   ======================================== */

.contact-info-block {
    padding: 3rem 0;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Icon Container */
.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #fb9f5e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

/* Content */
.contact-content {
    flex: 1;
}

.contact-content h5 {
    color: var(--secondary-color);
    font-size: 12pt;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.contact-content p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.8;
    font-size: font-size: 11pt;
}

.contact-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: #e68a00;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-block {
        padding: 2rem 0;
    }
    
    .contact-info-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-content h5 {
        font-size: 1rem;
    }
    
    .contact-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}

/* Button Icon Styling */
.btn-icon {
    margin-right: 8px;
    vertical-align: middle;
}

/* Responsive Icon */
@media (max-width: 576px) {
    .btn-icon {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
}

/* ========================================
   GOOGLE MAPS CONTAINER
   ======================================== */

#maps-container {
    width: 100%;
    margin: 20px auto;
    position: relative;
}

#maps-placeholder {
    background: linear-gradient(135deg, var(--accent-color) 0%, #fb9f5e 100%);
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#maps-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.3);
}

/* Map Icon */
.maps-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: white;
}

/* Map Title */
.maps-title {
    color: white;
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

/* Map Address */
.maps-address {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    font-size: 16px;
}

/* Load Button */
.maps-load-btn {
    background: white;
    color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.maps-load-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.maps-load-btn:active {
    transform: scale(0.98);
}

/* Hint Text */
.maps-hint {
    color: rgba(255, 255, 255, 0.7);
    margin: 15px 0 0 0;
    font-size: 12px;
}

/* iFrame Container */
#maps-iframe-container {
    display: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#maps-iframe-container.active {
    display: block;
}

#maps-iframe-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    #maps-placeholder {
        height: 350px;
    }
    
    .maps-icon {
        width: 60px;
        height: 60px;
    }
    
    .maps-title {
        font-size: 20px;
    }
    
    .maps-address {
        font-size: 14px;
        text-align: center;
        padding: 0 20px;
    }
    
    .maps-load-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    #maps-iframe-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    #maps-placeholder {
        height: 300px;
    }
    
    .maps-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .maps-title {
        font-size: 18px;
    }
    
    #maps-iframe-container iframe {
        height: 300px;
    }
}



/* TERMIN BUTTON */
.btn-custom-orange {
   background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white!important;
    border-radius: 8px;           /* Leicht abgerundet */
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
	font-size:14pt;
	font-family: "Roboto Condensed", sans-serif, "google";
	padding: 15px 25px;
}

.btn-custom-orange:hover {
    background-color: #e68a00;    /* Etwas dunkler beim Hover */
    border-color: #e68a00;
    color: white;
	
	
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
}

.btn-custom-orange:active {
    background-color: #cc7a00;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-custom-orange {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
}

    
	.img_praxis{
	background-image: url(images/praxis_header.jpg);
    background-position: 37.5833% 16.6917%;
	background-repeat: no-repeat;
    background-size: cover;
	}
	
	
	
/* SOCIAL LINKS */
.social-shares {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-shares .share-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background-color: #fa8838;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
  transform: translateX(calc(100% - 48px));
  font-family: 'Roboto', sans-serif;
}

.social-shares .share-item:hover {
  background-color: #fb9d57;
  box-shadow: -3px 3px 12px rgba(0, 0, 0, 0.3);
  transform: translateX(0);
}

.social-shares .share-item svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}

.social-shares .share-item span {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.social-shares .phone {
  background-color: #fa8838;
}

.social-shares .phone:hover {
  background-color: #fb9d57;
}

.social-shares .calendar {
  background-color: #fa8838;
}

.social-shares .calendar:hover {
  background-color: #fb9d57;
}

@media (max-width: 768px) {
  .social-shares .share-item span {
    display: none;
  }
  
  .social-shares .share-item svg {
    margin-right: 0;
  }
  
  .social-shares .share-item {
    padding: 10px;
  }
}