/* Custom Botox CSS - assets/css/custom-botox.css */

/* Import Tailwind base styles */
@import 'tailwind-compiled.css';

/* Custom Font Classes */
.font-manrope { 
    font-family: 'Manrope', sans-serif; 
}

.font-dm-serif { 
    font-family: 'DM Serif Display', serif; 
}

/* Custom Color Classes */
.text-primary-orange { 
    color: var(--primary-orange); 
}

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

.border-primary-orange { 
    border-color: var(--primary-orange); 
}

.text-primary-brown { 
    color: var(--primary-brown); 
}

.bg-primary-brown { 
    background-color: #6F685D; 
}

.bg-light-orange { 
    background-color: var(--light-orange); 
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-orange);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover { 
    background-color: var(--hover-orange); 
}

.btn-outline-primary {
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-primary:hover {
    background-color: var(--primary-orange);
    color: white;
}

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Process Numbers */
.process-number {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(238, 114, 3, 0.1);
    color: var(--primary-orange);
    border-radius: 50%;
    font-size: 1.375rem;
    font-weight: 600;
}

/* Accordion Styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

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

/* Container */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

/* Responsive Utilities */
@media (max-width: 1023px) {
    .lg\:hidden {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex !important;
    }
    
    .lg\:w-1\/2 {
        width: 50%;
    }
    
    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    
    .lg\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    
    .lg\:flex-row {
        flex-direction: row;
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Mobile Menu Styles */
@media (max-width: 1023px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .mobile-menu.active {
        right: 0;
    }
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6{
    font-weight: normal;
    line-height: 1.2;
}

p {
    line-height: 1.75;
    font-size: 1.0625rem;
}

/* Shadow Utilities */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Transition Utilities */
.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Z-Index Utilities */
.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}
/* Footer Logo Styling */
.h-16 { height: 4rem; }

.bg-testimonial-brown {
    background-color: #6F685D;
}

.testimonial-box {
    position: relative;
    padding-top: 2.5rem;
    color: white;
}

.testimonial-quote-solid {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    color: #EE7203;
    opacity: 1;
}

.testimonial-box h3,
.testimonial-box .testimonial-text {
    margin-left: 0.5rem;
    color: white;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .testimonial-quote-solid {
        font-size: 1.5rem;
        top: 0.75rem;
        left: 0.75rem;
    }
}

.testimonial-text {
    font-style: italic;
}

/* Hero Section Desktop Spacing - nur für größere Bildschirme */
@media (min-width: 1024px) {
    #home {
        padding-top: 8rem;
    }

    #home .lg\:w-1\/2:last-child {
        margin-top: 2rem;
    }
}

/* Gallery Grid Items */
.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: #f8f9fa;
}

.gallery-item img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(238, 114, 3, 0.85) 0%, rgba(238, 114, 3, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox Base Styles */
#lightbox {
    display: none;
    cursor: zoom-out;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#lightbox.show {
    display: flex;
}

/* Lightbox Content Container */
.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 4rem 2rem;
}

#lightbox-image {
    cursor: default;
    animation: lightboxFadeIn 0.3s ease-out;
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Close Button - Positioned Top Right */
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
    z-index: 10;
    cursor: pointer;
    border: none;
}

.lightbox-close:hover {
    background-color: rgba(238, 114, 3, 0.9);
    transform: rotate(90deg);
}

/* Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.lightbox-nav:hover {
    background-color: rgba(238, 114, 3, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Image Counter */
.lightbox-counter {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .gallery-item img {
        height: 16rem;
    }
    
    /* Remove hover effects on mobile */
    .gallery-item {
        cursor: default;
    }
    
    .gallery-item:hover img {
        transform: none;
    }
    
    .gallery-overlay {
        display: none;
    }
    
    /* Hide lightbox completely on mobile */
    #lightbox {
        display: none !important;
    }
}

/* Touch and Swipe Indicators */
@media (hover: none) {
    .lightbox-nav {
        background-color: rgba(238, 114, 3, 0.8);
    }
}

/* Loading State */
.gallery-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #EE7203;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.gallery-item.loading::before {
    opacity: 1;
    z-index: 1;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Prevent Image Selection */
#lightbox-image {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Transition for Image Changes */
#lightbox-image.fade-out {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.2s ease-out;
}

#lightbox-image.fade-in {
    opacity: 1;
    transform: scale(1);
    transition: all 0.2s ease-in;
}



.prices-wrap{
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
  width:100%;
}

.table-hairline th,
.table-hairline td{
  border-bottom:0.5px solid rgba(0,0,0,0.12);
}

.table-hairline thead th{
  border-bottom:1px solid #d1d5db;
}

.price-col{ text-align:right; padding-right:0; }


.tabular-nums{
  font-variant-numeric:tabular-nums;
  -webkit-font-feature-settings:"tnum";
  -moz-font-feature-settings:"tnum";
  font-feature-settings:"tnum";
}
