/* globals.css */
:root {
    --orange: #ff6600;
    --orange-dark: #e65c00;
    --white: #ffffff;
    --dark-gray: #333333;
    --dark-gray-800: #1a1a1a;
    --light-gray: #f5f5f5;
    --transition-speed: 300ms;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.px-4 {
  border-top: 1px solid #666;
  margin-top: 40px !important;
}
    .dsvgo-wrapper {
      width: 83%;
      margin: 0 auto;
      padding-top: 110px;
    }
a {
  color: #ccc;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Pathway Extreme", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark-gray);
    color: var(--white);
}

/* Header */
header {
    background-color: var(--orange);
    position: absolute;
    display: flex;
    top: 20px;                     /* Abstand nach oben */
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 85%;                   /* zentrierte Breite */
    max-width: 1200px;
    margin: 0 auto;               /* horizontal zentriert */
    border-radius: 12px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(8px);   /* optional für „Glass“-Effekt */
    left: 6%;
}

.container {
    max-width: 1200px;
    padding: 0 1rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}
h1, h2, h3, .mb-8 {
      font-family: "Noto Serif JP", serif;
}
h1, h2 {
      font-weight: 900;
}
h1, h2 {
      font-weight: 900;
}
.mb-8 {
    font-size: 20px;
}
h1 {
    font-size: 46px;
}
.startlogo {
    height: 40px;
    width: auto;
    margin-top: 8px;
}

/* Navigation Base */
#menu {
    width: 100%;
}

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: color var(--transition-speed);
}

.nav-link:hover {
    color: var(--light-gray);
}

/* Mobile Navigation */
@media (max-width: 1023px) {
    #menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--orange);
    }

    #menu.show {
        display: block;
    }

    #menu ul {
        flex-direction: column;
    }

    #menu li {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    #menu li a {
        padding: 1rem 2rem;
    }

    #menu-toggle {
        display: block;
        background: none;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
    }

    .burger-icon {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--white);
        position: relative;
        transition: background-color var(--transition-speed);
    }

    .burger-icon::before,
    .burger-icon::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: var(--white);
        left: 0;
        transition: transform var(--transition-speed);
    }

    .burger-icon::before {
        top: -6px;
    }

    .burger-icon::after {
        bottom: -6px;
    }

    /* Hamburger Animation */
    #menu-toggle[aria-expanded="true"] .burger-icon {
        background-color: transparent;
    }

    #menu-toggle[aria-expanded="true"] .burger-icon::before {
        transform: rotate(45deg) translate(2px, 3px);
    }

    #menu-toggle[aria-expanded="true"] .burger-icon::after {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #menu {
        display: block !important;
        position: static;
        width: auto;
        background: none;
    }

    #menu ul {
        flex-direction: row;
        align-items: center;
    }

    #menu li {
        border: none;
    }

    .nav-link {
        position: relative;
        padding: 1rem 1rem;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 1rem;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--white);
        transition: all var(--transition-speed);
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: calc(100% - 2rem);
    }

    #menu-toggle {
        display: none;
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Section Layout */
section {
    padding: 0rem 0;
}
#referenzen, #ueber-mich, #kontakt {
    padding: 5rem 0;
}
#leistungen, #ueber-mich {
    background: #fff;
}
#ueber-mich h2, #ueber-mich .section-text {
    color: #000;
}
.section-text ul {
  margin-left: 30px;
  margin-top: 11px;
}
section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    text-shadow: 1px 1px 1px #000;
}

.section-content {
    display: flex;
    gap: 2rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-image {
    flex: 1;
    max-width: 50%;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-text {
    flex: 1;
    padding: 1rem;
    text-align: left;
    text-shadow: 1px 1px 1px #555;
}
/* Responsive Design */
@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
    }

    .section-image {
        max-width: 100%;
    }

    .section-text {
        padding: 1rem 0;
    }
}
/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.bg-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 4px;
    background-color: var(--white);
    transition: all var(--transition-speed);
}

.form-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,102,0,0.1);
}
/* In der globals.css hinzufügen */
#form-status {
    transition: all 0.3s ease;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.hidden {
    display: none;
}

/* Status-Anzeige Styles */
.bg-green-100 {
    background-color: #dcfce7;
}

.text-green-700 {
    color: #15803d;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.text-red-700 {
    color: #b91c1c;
}

.rounded {
    border-radius: 4px;
}

.p-4 {
    padding: 1px 10px;
}
/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-400 {
    animation-delay: 400ms;
}

/* Utility Classes */
.bg-orange {
    background-color: var(--orange);
}

.bg-dark-gray {
    background-color: var(--dark-gray);
}

.text-white {
    color: var(--white);
}

.text-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.grid {
margin-top: 30px !important;
}
.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* Fix für iOS Safari */
input,
button,
textarea {
    -webkit-appearance: none;
    border-radius: 4px;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}
/* In globals.css hinzufügen */
.reveal {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Variationen für verschiedene Richtungen */
.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Optional: Verzögerungen für gestaffelte Animationen */
.delay-200 {
    transition-delay: 200ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-600 {
    transition-delay: 600ms;
}


/* Zoom Effect Styles */
.zoom-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

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

.zoom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    will-change: transform;
    position: absolute;
    top: 0;
    left: 0;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    z-index: 2;
}

.zoom-content {
    position: relative;
    z-index: 3;
    padding: 4rem 2rem;
    color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

/* CSS für globals.css */
/* In globals.css */
.expertise-section {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;  /* oder eine andere gewünschte Breite */
    margin: 0 auto;
}

.expertise-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
    width: 100%;
    text-align: center;
}

.expertise-list {
    list-style: none;
    padding: 0;
    width: 100%;
    max-width: 600px;  /* oder eine andere gewünschte Breite */
}

.expertise-item {
  font-size: 1.4rem;
  padding: 0.5rem 0;
  margin-bottom: 0rem;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s ease;
    transition-delay: 0s;
  align-items: left;
  justify-content: left;
}

/** .expertise-item::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--orange);
    border-radius: 50%;
    margin-right: 1rem;
    transform: scale(0);
    transition: transform 0.3s ease;
} **/

.expertise-item.active {
    opacity: 1;
    transform: translateX(0);
}

.expertise-item.active::before {
    transform: scale(1);
}

/* Animation delays für gestaffeltes Erscheinen */
.expertise-item:nth-child(1) { transition-delay: 0.1s; }
.expertise-item:nth-child(2) { transition-delay: 0.2s; }
.expertise-item:nth-child(3) { transition-delay: 0.3s; }
.expertise-item:nth-child(4) { transition-delay: 0.4s; }

/* Responsive Design */
.grid {
 margin:0 !important;
 padding:0 !important;
 display: flex !important;
 flex-wrap: wrap;
 margin-top: 30px !important;
}
.footer-section {
    width: 30%
}


@media (max-width: 768px) {
    .expertise-section {
        padding: 2rem 1rem;
    }
    
    .expertise-item {
        font-size: 1.2rem;
    }
}