/* Simple Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0E1325;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #F9A826;
    color: #0E1325;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Navigation - FIXED */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #F9A826;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease;
}

.logo {
    font-size: 1rem;
    font-weight: 800;
    color: #0E1325;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

nav .nav-links .language-switcher .lang-divider,
.nav-links .language-switcher .lang-divider {
    color: #0E1325 !important;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links a {
    color: #0E1325;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #0E1325;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #0E1325;
    cursor: pointer;
    z-index: 1001;
}

main {
    position: relative;
    padding-top: 80px;
    /* Account for fixed navbar */
}

.workshop-section {
    position: relative;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    animation: fadeIn 0.6s ease-out;
}

.section-header h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #F9A826;
    text-transform: lowercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F9A826, transparent);
}

.intro-section {
    margin-bottom: 80px;
}

.intro-section h2 {
    font-size: 2rem;
    color: #F9A826;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.intro-text {
    background: rgba(249, 168, 38, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 168, 38, 0.2);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.intro-text::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 168, 38, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

.intro-text:hover {
    transform: translateY(-5px);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Internal Links */
.internal-link {
    color: #F9A826;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.internal-link:hover {
    border-bottom-color: #F9A826;
}

.internal-link:focus {
    outline: 2px solid #F9A826;
    outline-offset: 2px;
}

/* Gallery Section */
.gallery-container {
    margin: 80px 0;
    position: relative;
}

.gallery-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #F9A826;
    margin-bottom: 40px;
    font-weight: 600;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.parallax-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.swiper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1f3a;
    position: relative;
    overflow: hidden;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 168, 38, 0.2) 0%, rgba(14, 19, 37, 0.8) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.swiper-slide:hover::before {
    opacity: 0.7;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    will-change: transform;
}

.swiper-slide-active img {
    animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1.2);
        opacity: 0.5;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.swiper-slide:hover img {
    transform: scale(1.15);
}

.slide-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s ease 0.3s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: #F9A826;
    background: rgba(14, 19, 37, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #F9A826;
    color: #0E1325;
    transform: scale(1.1);
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: 2px solid #F9A826;
    outline-offset: 2px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: #F9A826;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Services Section */
.services-section {
    margin-top: 80px;
}

.services-section>h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #F9A826;
    margin-bottom: 50px;
    font-weight: 600;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(135deg, rgba(249, 168, 38, 0.1) 0%, rgba(14, 19, 37, 0.5) 100%);
    border: 2px solid rgba(249, 168, 38, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    animation: fadeIn 0.6s ease-out both;
}

/* Staggered fade-in for service cards */
.service-card:nth-child(1) {
    animation-delay: 0.4s;
}

.service-card:nth-child(2) {
    animation-delay: 0.5s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.service-card:nth-child(4) {
    animation-delay: 0.7s;
}

.service-card:nth-child(5) {
    animation-delay: 0.8s;
}

.service-card:nth-child(6) {
    animation-delay: 0.9s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 168, 38, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #F9A826;
    box-shadow: 0 20px 40px rgba(249, 168, 38, 0.3);
}

.service-card h3 {
    font-size: 2rem;
    color: #F9A826;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: lowercase;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* Related Links Section */
.related-links {
    margin-top: 80px;
    padding: 40px;
    background: rgba(249, 168, 38, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(249, 168, 38, 0.2);
}

.related-links h2 {
    font-size: 2rem;
    color: #F9A826;
    margin-bottom: 30px;
    text-align: center;
}

.related-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.related-links li {
    padding: 15px;
    background: rgba(249, 168, 38, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.related-links li:hover {
    background: rgba(249, 168, 38, 0.2);
    transform: translateX(5px);
}

.related-links a {
    color: #F9A826;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
}

.related-links a:focus {
    outline: 2px solid #F9A826;
    outline-offset: 2px;
}

.decorative-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 168, 38, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.decorative-element-1 {
    top: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite;
}

.decorative-element-2 {
    bottom: -150px;
    right: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}

/* Parallax floating elements */
.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(249, 168, 38, 0.3);
    border-radius: 10px;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.floating-element-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite 2s;
}

.floating-element-3 {
    bottom: 30%;
    left: 20%;
    animation: float 7s ease-in-out infinite 1s;
}

/* Footer */
footer {
    background: #0E1325;
    color: white;
    padding: 80px 60px 30px;
    border-top: 2px solid #F9A826;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 168, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Footer Brand Logo */
.footer-brand-logo {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 1400px;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

.footer-brand-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(249, 168, 38, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-brand-logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(249, 168, 38, 0.4));
    opacity: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    color: #F9A826;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #F9A826;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.footer-description {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(249, 168, 38, 0.1);
    border: 2px solid rgba(249, 168, 38, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F9A826;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #F9A826;
    color: #0E1325;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(249, 168, 38, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    color: #F9A826;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
}

.contact-info strong {
    color: white;
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Working Hours */
.working-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(249, 168, 38, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.working-hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: white;
}

.time {
    color: #3FCFED;
    font-weight: 600;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-links a::before {
    content: '→';
    color: #F9A826;
    transition: transform 0.3s ease;
}

.quick-links a:hover {
    color: #F9A826;
    transform: translateX(5px);
}

.quick-links a:hover::before {
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(249, 168, 38, 0.2);
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-credits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-credits a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: #F9A826;
}

.footer-divider {
    color: rgba(249, 168, 255, 0.3);
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 968px) {
    footer {
        padding: 60px 30px 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 50px 25px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand-logo img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 50px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-brand-logo {
        margin-bottom: 35px;
    }

    .footer-brand-logo img {
        width: 40px;
        height: 40px;
    }

    .footer-section h3 {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .contact-icon {
        margin-top: 0;
    }

    .social-links {
        justify-content: center;
    }

    .working-hours-list li {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 15px 0;
    }

    .quick-links {
        text-align: center;
    }

    .quick-links a {
        justify-content: center;
    }

    .footer-credits {
        flex-direction: column;
        gap: 10px;
    }

    .footer-divider {
        display: none;
    }
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    nav {
        padding: 15px 30px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #F9A826;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 25px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    main {
        padding-top: 70px;
    }

    .workshop-section {
        padding: 60px 15px;
    }

    .section-header h1 {
        font-size: 2.5rem;
    }

    .intro-section h2,
    .gallery-container h2,
    .services-section>h2 {
        font-size: 2rem;
    }

    .intro-text {
        padding: 30px;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .swiper {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .slide-caption {
        font-size: 1.2rem;
        bottom: 20px;
        left: 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .floating-element {
        display: none;
    }

    .related-links ul {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 60px 30px 30px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 12px 20px;
    }

    .logo {
        font-size: 1rem;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .intro-text {
        padding: 20px;
    }

    .swiper {
        height: 250px;
    }

    .nav-links {
        width: 80%;
    }
}

/* Print Styles */
@media print {

    nav,
    .mobile-menu-btn,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination,
    footer .social-links {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    a {
        text-decoration: underline;
    }
}

/* ============================================
   ADDITIONAL CSS FOR SEO ENHANCEMENTS
   ============================================ */

/* External Authority Links (FIVA, Klassik Magazin) */
a[target="_blank"][rel*="nofollow"] {
    color: #4a9eff;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

a[target="_blank"][rel*="nofollow"]:hover {
    color: #6bb3ff;
    text-decoration-style: solid;
}

a[target="_blank"][rel*="nofollow"]::after {
    content: ' ↗';
    font-size: 0.8em;
    opacity: 0.7;
    margin-left: 3px;
}

/* Override lowercase to capitalize for H1 and H3 */
.section-header h1 {
    text-transform: capitalize;
}

.service-card h3 {
    text-transform: capitalize;
}

/* Enhanced spacing for external links paragraph */
.intro-text p:last-of-type {
    padding-top: 10px;
    border-top: 1px solid rgba(249, 168, 38, 0.1);
    margin-top: 30px;
}

/* Footer links hover effect */
.footer-credits a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #F9A826;
    transition: width 0.3s ease;
}

.footer-credits a {
    position: relative;
}

.footer-credits a:hover::after {
    width: 100%;
}