/**
* Template Name: Elegant Model Portfolio
* Hochwertige Model-Portfolio Website
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Premium Fonts */
:root {
  --default-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --heading-font: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Elegante Farbpalette - Luxus Model Portfolio */
:root { 
  --background-color: #fafafa;
  --default-color: #2d2d2d;
  --heading-color: #0a0a0a;
  --accent-color: #b8976f; /* Elegant Gold/Bronze */
  --accent-secondary: #d4af37; /* Luxus Gold */
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --border-color: #e8e8e8;
}

/* Navigation Colors */
:root {
  --nav-color: #959595;
  --nav-hover-color: #b8976f;
  --nav-mobile-background-color: #0a0a0a;
  --nav-dropdown-background-color: #0a0a0a;
  --nav-dropdown-color: #959595;
  --nav-dropdown-hover-color: #b8976f;
}

/* Color Presets */
.light-background {
  --background-color: #f8f8f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0a0a0a;
  --default-color: #fafafa;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.7;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--accent-secondary);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

::selection {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: linear-gradient(135deg, #df1529 0%, #c41020 100%);
  color: #ffffff;
  text-align: center;
  padding: 18px;
  margin-bottom: 24px;
  font-weight: 400;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: linear-gradient(135deg, #059652 0%, #047a42 100%);
  text-align: center;
  padding: 18px;
  margin-bottom: 24px;
  font-weight: 400;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 18px;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
  letter-spacing: 0.5px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 2px solid var(--accent-color);
  border-top-color: transparent;
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Global Header - Elegant Sidebar
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 40px 30px;
  width: 320px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  z-index: 997;
  border-right: 1px solid var(--border-color);
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.03);
}

/* Mobile Overlay */
@media (max-width: 1199px) {
  .header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .header.header-show::before {
    opacity: 1;
    visibility: visible;
  }
}

.header::-webkit-scrollbar {
  width: 6px;
}

.header::-webkit-scrollbar-track {
  background: transparent;
}

.header::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

.header .profile-img {
  text-align: center;
  margin-bottom: 30px;
}

.header .profile-img img {
  margin: 0 auto;
  display: block;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  box-shadow: 0 8px 30px rgba(184, 151, 111, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.header .profile-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(184, 151, 111, 0.35);
}

.header .logo {
  line-height: 1;
  margin-bottom: 30px;
  text-align: center;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.header .logo h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.header .social-links {
  margin: 30px 0;
  text-align: center;
}

.header .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent-color);
  margin: 0 8px;
  border: 1.5px solid var(--accent-color);
  border-radius: 50%;
  text-align: center;
  width: 44px;
  height: 44px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header .social-links a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--accent-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.header .social-links a:hover:before {
  width: 100%;
  height: 100%;
}

.header .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--accent-secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(184, 151, 111, 0.3);
}

@media (min-width: 1200px) {
  .header~main,
  .header~#footer {
    margin-left: 320px;
  }
}

@media (max-width: 1199px) {
  .header {
    left: -320px;
    box-shadow: none;
  }
  
  .header.header-show {
    left: 0;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
  }
}

.header .header-toggle {
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
  font-size: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 25px rgba(184, 151, 111, 0.4);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

@media (max-width: 1199px) {
  .header .header-toggle {
    display: flex;
  }
}

.header .header-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 35px rgba(184, 151, 111, 0.5);
}

.header .header-toggle:active {
  transform: rotate(90deg) scale(0.95);
}

/*--------------------------------------------------------------
# Navigation Menu - Elegant Style
--------------------------------------------------------------*/
.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 18px 20px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  border-left: 3px solid transparent;
  position: relative;
}

.navmenu a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(184, 151, 111, 0.08) 0%, transparent 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--accent-color);
  border-left-color: var(--accent-color);
}

.navmenu a:hover:before,
.navmenu .active:before {
  width: 100%;
}

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
  color: var(--accent-color);
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 13px;
  padding: 50px 0;
  position: relative;
  border-top: 1px solid var(--border-color);
  letter-spacing: 0.5px;
}

.footer .copyright p {
  margin-bottom: 0;
  font-weight: 300;
}

.footer .credits {
  margin-top: 8px;
  font-size: 12px;
  text-align: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.footer .credits a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Preloader - Elegant Animation
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  border: 3px solid transparent;
  border-top-color: var(--accent-color);
  border-right-color: var(--accent-secondary);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: animate-preloader 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg) scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: -20px;
  z-index: 99999;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 25px rgba(184, 151, 111, 0.4);
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(184, 151, 111, 0.5);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles - Luxuriös
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 80px;
  position: relative;
  text-align: center;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Hero Section - Cinematic
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.75) contrast(1.1);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.hero:before {
  content: "";
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.4) 0%, rgba(45, 45, 45, 0.3) 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero h2 {
  margin: 0;
  font-size: 80px;
  font-weight: 200;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease-out;
}

.hero p {
  margin: 20px 0 0 0;
  font-size: 32px;
  font-family: var(--heading-font);
  font-weight: 300;
  letter-spacing: 3px;
  color: #ffffff;
  text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.4s ease-out;
}

.hero p span {
  letter-spacing: 3px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 5px;
}

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

@media (max-width: 768px) {
  .hero h2 {
    font-size: 42px;
    letter-spacing: 4px;
  }
  .hero p {
    font-size: 22px;
    letter-spacing: 2px;
  }
}

/*--------------------------------------------------------------
# About Section - Elegant Layout
--------------------------------------------------------------*/
.about {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.about .content h2 {
  font-weight: 300;
  font-size: 38px;
  letter-spacing: 3px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.about .content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.about .content .fst-italic {
  font-style: normal;
  font-weight: 300;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding: 25px 0;
  border-left: 3px solid var(--accent-color);
  padding-left: 25px;
  margin: 25px 0;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.about .content ul li:hover {
  transform: translateX(5px);
  color: var(--accent-color);
}

.about .content ul strong {
  margin-right: 12px;
  color: var(--heading-color);
  font-weight: 500;
  min-width: 140px;
  letter-spacing: 0.5px;
}

.about .content ul i {
  font-size: 18px;
  margin-right: 8px;
  color: var(--accent-color);
  line-height: 0;
}

.about img {
  border-radius: 0;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about img:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Stats Section - Modern Design
--------------------------------------------------------------*/
.stats {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.stats .stats-item {
  padding: 40px;
  width: 100%;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.stats .stats-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats .stats-item:hover:before {
  width: 80%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 52px;
  margin: 0 auto 20px;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats .stats-item:hover i {
  transform: scale(1.15) rotate(5deg);
  color: var(--accent-secondary);
}

.stats .stats-item .purecounter {
  color: #ffffff;
  font-size: 56px;
  line-height: 1;
  display: block;
  font-weight: 200;
  font-family: var(--heading-font);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.stats .stats-item p {
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  margin: 0;
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stats .stats-item p strong {
  display: block;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 5px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Portfolio Section - Gallery Style
--------------------------------------------------------------*/
.portfolio {
  background: #ffffff;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 60px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 400;
  margin: 0 8px 15px 8px;
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid var(--border-color);
  letter-spacing: 2px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-filters li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--accent-color);
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  z-index: 0;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.portfolio .portfolio-filters li:hover:before,
.portfolio .portfolio-filters li.filter-active:before {
  width: 300px;
  height: 300px;
}

.portfolio .portfolio-filters li span {
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  background: #000;
}

.portfolio .portfolio-content img {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.portfolio .portfolio-content .portfolio-info p {
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 30px;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.portfolio .portfolio-content .portfolio-info .preview-link {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  width: 60px;
  height: 60px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px) scale(0.8);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover {
  background: var(--accent-color);
  border-color: var(--accent-secondary);
  transform: translateY(20px) scale(1) rotate(90deg);
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover .portfolio-info h4,
.portfolio .portfolio-content:hover .portfolio-info p,
.portfolio .portfolio-content:hover .portfolio-info .preview-link {
  transform: translateY(0) scale(1);
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(0.6);
}

/*--------------------------------------------------------------
# Services Section - Premium Style
--------------------------------------------------------------*/
.services {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.services .service-item {
  position: relative;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  background: var(--surface-color);
  margin-bottom: 30px;
}

.services .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-color), var(--accent-secondary));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.services .service-item:hover:before {
  height: 100%;
}

.services .service-item .icon {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--accent-color);
  margin-right: 25px;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 28px;
  line-height: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.services .service-item:hover .icon:before {
  transform: scale(1);
}

.services .service-item:hover .icon i {
  color: var(--contrast-color);
  transform: scale(1.1);
}

.services .service-item .title {
  font-weight: 400;
  margin-bottom: 18px;
  font-size: 22px;
  font-family: var(--heading-font);
  letter-spacing: 1.5px;
}

.services .service-item .title a {
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

.services .service-item .description {
  line-height: 1.8;
  font-size: 15px;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  letter-spacing: 0.3px;
}

/*--------------------------------------------------------------
# Contact Section - Modern Form
--------------------------------------------------------------*/
.contact {
  background: #ffffff;
}

.contact .info-wrap {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
  padding: 50px 40px;
  border: 1px solid var(--border-color);
}

.contact .info-item {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact .info-item:hover {
  transform: translateX(10px);
}

.contact .info-item i {
  font-size: 22px;
  color: var(--accent-color);
  background: transparent;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 20px;
  flex-shrink: 0;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  letter-spacing: 0.3px;
}

.contact .info-item:hover i {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--contrast-color);
  border-color: transparent;
  transform: rotate(5deg) scale(1.05);
}

.contact .php-email-form {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  height: 100%;
  padding: 50px 40px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.contact .php-email-form label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 15px;
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 300;
  letter-spacing: 0.3px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 151, 111, 0.1);
}

.contact .php-email-form textarea {
  resize: vertical;
  min-height: 180px;
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
  border: 0;
  padding: 15px 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(184, 151, 111, 0.3);
  position: relative;
  overflow: hidden;
}

.contact .php-email-form button[type=submit]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(184, 151, 111, 0.4);
}

.contact .php-email-form button[type=submit]:hover:before {
  width: 300px;
  height: 300px;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 36px;
  }
  
  section, .section {
    padding: 60px 0;
  }
  
  /* Mobile Navigation anpassen */
  .header~main,
  .header~#footer {
    margin-left: 0;
  }
  
  /* Hero-Section für Tablet */
  .hero h2 {
    font-size: 48px;
    letter-spacing: 4px;
  }
  
  .hero p {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }
  
  .about .content h2 {
    font-size: 28px;
  }
  
  .services .service-item {
    padding: 30px 20px;
  }
  
  .portfolio .portfolio-filters li {
    padding: 10px 20px;
    font-size: 11px;
    margin: 0 5px 10px 5px;
  }
  
  /* Hero-Section für Mobile */
  .hero h2 {
    font-size: 36px;
    letter-spacing: 2px;
  }
  
  .hero p {
    font-size: 20px;
    letter-spacing: 1px;
  }
  
  /* Stats für Mobile optimieren */
  .stats .stats-item {
    padding: 30px 20px;
  }
  
  .stats .stats-item .purecounter {
    font-size: 42px;
  }
  
  /* Contact Form für Mobile */
  .contact .info-wrap,
  .contact .php-email-form {
    padding: 25px 20px;
  }
  
  /* Service Items für Mobile */
  .services .service-item {
    flex-direction: column;
    text-align: center;
  }
  
  .services .service-item .icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  /* Extra kleine Smartphones */
  .hero h2 {
    font-size: 28px;
    letter-spacing: 1px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .header .logo h1 {
    font-size: 24px;
    letter-spacing: 2px;
  }
  
  .header .profile-img img {
    width: 120px;
    height: 120px;
  }
  
  .portfolio .portfolio-filters li {
    padding: 8px 15px;
    font-size: 10px;
    margin: 0 3px 8px 3px;
  }
}