/*@font-face {
          font-family: 'Roboto';
          src: url('/assets/roboto-regular.woff2') format('woff2');
          font-weight: normal;
          font-style: normal;
        }*/

@font-face {
  font-family: "Roboto";
  src: local("Roboto"), local("Roboto Regular"), local("Roboto-Regular"), url('/assets/roboto-regular.woff2') format("woff2");
  font-style: normal;
  font-weight: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    /*background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);*/
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    color: #f5f5f5;
    padding: 1.2rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #d4af37;
    backdrop-filter: blur(20px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.0rem;
    /*font-weight: 400;*/
    /*font-family: 'Roboto', sans-serif;*/
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    color: #d4af37;
    /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);*/
}

.logo::before {
    content: "💅";
    margin-right: 12px;
    font-size: 1.6em;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    font-family: 'Roboto', sans-serif;
}

nav a {
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    color: #d4af37;
}

nav a:hover::before {
    width: 80%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    margin-left: 1.5rem;
}

.language-switcher a {
    padding: 0.4rem 0.9rem;
    font-size: 0.95rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.4);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.language-switcher a.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 148, 31, 0.3) 100%);
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.language-switcher a:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 148, 31, 0.25) 100%);
    border-color: #d4af37;
    transform: translateY(-1px);
    color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(26, 26, 26, 0.7)),
                url('/images/slide1.webp');
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(26, 26, 26, 0.7)),
                url('/images/slide2.webp');
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(26, 26, 26, 0.7)),
                url('/images/slide3.webp');
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 2rem;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(245, 241, 235, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.slider-arrow {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000000;
    border: 2px solid #000000;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: #000000;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 400;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease 0.4s both;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid #000000;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(45deg, #b8941f, #d4af37);
    border-color: #d4af37;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(45deg, #d4af37, #b8941f);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #8b6f47);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 111, 71, 0.2);
    border-color: #d4af37;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: #8b6f47;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.price {
    font-size: 1.5rem;
    font-weight: 300;
    color: #d4af37;
    margin-top: 1rem;
    font-family: 'Roboto', sans-serif;
}

/* Statistics Section */
.stats {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
    color: #f5f5f5;
    padding: 4rem 0;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    position: relative;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Progress Circles for Stats */
.progress-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    position: relative;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.progress-background {
    stroke: rgba(255, 255, 255, 0.2);
}

.progress-fill {
    stroke: #d4af37;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    animation: fillProgress 2s ease-in-out forwards;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
}
/*
.gallery-item.item-1 {
    background-image: url('/images/gallery1.webp');
}

.gallery-item.item-2 {
    background-image: url('/images/gallery2.webp');
}

.gallery-item.item-3 {
    background-image: url('/images/gallery3.webp');
}

.gallery-item.item-4 {
    background-image: url('/images/gallery4.webp');
}

.gallery-item.item-5 {
    background-image: url('/images/gallery5.webp');
}

.gallery-item.item-6 {
    background-image: url('/images/gallery6.webp');
}

.gallery-item.item-7 {
    background-image: url('/images/gallery7.webp');
}

.gallery-item.item-8 {
    background-image: url('/images/gallery8.webp');
}
*/

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 26, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item::after {
    content: 'Nageldesign';
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #d4af37;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
    opacity: 1;
}

/* Process Timeline */
.process {
    padding: 5rem 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #8b6f47, #5d4037);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: linear-gradient(135deg, #f8f6f0, #f5f1eb);
    padding: 1.5rem;
    border-radius: 15px;
    width: 45%;
    position: relative;
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.1);
}

.timeline-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #d4af37, #8b6f47);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

/* Contact Section */
.contact {
    /*background: linear-gradient(135deg, #1a1a2e, #16213e);*/
    /*background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);*/
    Background: white;
    /*color: white;*/
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    /*background: rgba(255, 255, 255, 0.1);*/
    background: linear-gradient(135deg, #f8f6f0, #f5f1eb);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-info p {
  margin: 1rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    flex-shrink: 0;
}

.contact a {
	color:initial;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    /*backdrop-filter: blur(10px);*/
    /*color: #fff;*/
}

.about-info p {
  margin: 0 0 1rem 0;
}

.about-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.about-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    flex-shrink: 0;
}

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

@keyframes fillProgress {
    to {
        stroke-dashoffset: 0;
    }
}

/* Floating Elements
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}
 */

/* Footer */
footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-content p {
  margin-top: 0.9rem;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p, .footer-section ul {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 400px) {
	.logo {
		font-size:1.5rem
	}

	.logo::before {
		font-size: 1em;
	}
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

/*
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
*/
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-number {
        left: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }
}

@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

}


/* Nur zum TEsten, muss in andere Bereiche und umbenannt werden */
.gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

a {
  color: #fff;
}

.service_hours {
  width: 40px;
  display: inline-block;
}

.contact-info h3 {
  margin-bottom: 1rem;
}


/* Test */

.gallery-grid {
  /*overflow: hidden;*/
  min-width: 240px;
  /*max-width: 320px;*/
  width: 100%;
}

.gallery-test-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
}

.gallery-test-item {
  transition: all 0.3s;
  box-sizing: border-box;
  max-width: 100%;
}

.gallery-test-item:hover {
  transform: scale(1.05) rotate(1deg);
}

.gallery-test-item .desc {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #d4af37;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    opacity: 0;
    /*transition: opacity 0.3s ease;*/
}

.gallery-test-item:hover .desc {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-test-item:hover {
    /*transform: scale(1.05);*/
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}



.xx_services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.xx_services-grid p {
  margin: 0 0 1rem 0;
}

.xx_service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.1);
}

.xx_service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #8b6f47);
}

.xx_service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 111, 71, 0.2);
    border-color: #d4af37;
}

.xx_service-card h2 {
    color: #8b6f47;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}


.hero .as-h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo a {
  color: #d4af37;
  text-decoration: none;
}