/* =========================================================
   ✅ GLOBAL / ROOT
========================================================= */

:root {
  --block-shadow: 0 4px 12px rgba(0,0,0,0.25), 
                  0 1px 3px rgba(0,0,0,0.15);

  --wood: url("https://i.imgur.com/jZr4c7Z.jpg");

  --section-space-mobile: 160px; /* Mobile */
}

body {
  margin: 0;
  background: linear-gradient(to bottom, #2f5e49 0%, #376e8a 100%);
  color: #f5f5f5;
  font-family: 'EB Garamond', serif;
  text-decoration: none;
}


html, body {
  overflow-x: hidden;
}

/* Utility */
[id] {
  scroll-margin-top: 120px;
}



/* =========================================================
   ✅ WETTER
========================================================= */

#weather{
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 20px;
  margin-top: 40px;
}

#weather-logo{
  margin-bottom: 20px;
  margin-top: 40px;

}

/* Wetter (erste Definition) */
.weather-room{
  display: flex;
  flex-direction: row;
  align-items: space-between;
  align-items: center;
  gap: 10px;
  margin-top: -14px;
}

/* Wetter (zweite Definition) */
.weather-room {
  display: flex;
  flex-direction: row;
  align-items: center;      /* vertikal zentriert */
  justify-content: center;  /* horizontal zentriert */
  margin-bottom: 20px;
}



/* =========================================================
   ✅ HEADER / NAV
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;

  display: flex;
  justify-content: space-between;   /* Logo links – Nav Mitte – Button rechts */
  align-items: center;

  padding: 0 24px;
  background-color: rgba(182,195,216,0.25);
  backdrop-filter: blur(6px);
  z-index: 1000;
  padding: 40px;
}

/* Logo LINKS */
#nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 2px solid #c5a44d; 
  border-radius: 50%;
  overflow: hidden;
  animation: goldPulse 5s ease-in-out infinite;
}

#logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wolfGlow 4s ease-in-out infinite;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  position: relative;
  flex: 1;
}

#navbar {
  display: flex;
  gap: 24px;
}

.nav-bar {
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(219,150,20,0.5);
  text-decoration: none;     /* wichtig! */
  text-shadow: 0 1px 2px rgba(0,0,0,0.4); /* sauberer, dezenter */
  position: relative;
}

.nav-home {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 999;
}




.nav-bar:hover {
  background: rgba(219,150,20,0.85);
  text-shadow: 0 1px 3px rgba(255,255,255,0.5); /* leicht heller, nicht übertrieben */
  text-decoration: none;   /* verhindert doppelt */
}


/* Unterstreich-Effekt */
.nav-bar::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 6px;
  width: 70%;
  height: 3px;
  background: #ffffff; /* weiß wirkt sauberer als gold */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-bar:hover::after {
  transform: scaleX(1);
}

#menu-btn {
  display: none;      /* Desktop ausgeblendet */
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}



/* =========================================================
   ✅ MOBILE MENU
========================================================= */

#mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 20px 28px;
  background: rgba(0, 0, 0, 0.733);
  backdrop-filter: blur(6px);

  display: none;        /* wird per JS ein/aus */
  flex-direction: column;
  gap: 18px;

  z-index: 2000;        /* über Header */
}

#mobile-menu a {
  color: #fff;
  background-color: #A9744A;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.05rem;    
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.15);
}



/* =========================================================
   ✅ HERO
========================================================= */

.hero {
  background-image: url('Immages,Videos/jason-miller-jPs0ZgfLRww-unsplash.jpg');
  padding: 180px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -65px;  /* NICHT nach unten schieben */
  height: 122dvh;
  background-color: rgba(0, 0, 0, 0.25);
  background-blend-mode: darken;
}

.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.name-box{
  background-color: rgba(182, 195, 216, 0.274);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1.5rem 2rem;
  border-radius: 15px;
}

.myName {
  color: #a7c2ff;
  font-size: 40px;
  padding: 1.4rem 2rem;
  border-radius: 15px;
  margin: 10px 0;
  text-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.hero-image {
  max-width: 360px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-desc {
  max-width: 600px;
  margin: 20px auto;
  font-size: 1.4rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  font-weight: bold;
  line-height: 40px;
  margin-top: 50px;
  margin-bottom: 30px;
}



/* ! BUTTONS*/

/* Blue Button (erste Version) */
.blue-button {
  border: 3px solid #1768d1;
  color: white;
  padding: 10px 15px;
  border-radius: 8px; 
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Blue Button (Bounce Version) */
.blue-button {
  border: 2px solid rgb(9, 9, 99);
  color: rgba(255, 255, 255, 0.87);
  padding: 10px 15px;
  border-radius: 8px; 
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;    
  display: inline-block;
  max-width: 100%;
  text-align: center;
  margin-top: 20px;
  animation: bounce-top 0.9s both;
}

.blue-button:hover {
  background-color: rgb(9, 9, 99);
  transform: translateY(-2px);
}



/* =========================================================
   ✅ MYVISION
========================================================= */

.h1-myvision{
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: bolder;
}

#MyVision {
  margin-top: 400px;
  margin-bottom: 400px;
  text-align: center;
  font-size: 24px;
  font-family: 'EB Garamond', serif;
  color: white;
  padding: 0 20px;
}



/* =========================================================
   ✅ VALUES
========================================================= */

.h1-myvalues {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  text-align: center;
  margin-top: 20px;
  color: #1420bc;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  text-align: center;
}

.value-item {
  font-size: 2rem;
  font-family: Oswald, sans-serif;
  color: #1420bc;
  margin-bottom: 20px;
  text-shadow: 0px 3px 6px rgba(0,0,0,0.25);
  -webkit-text-stroke: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  transform-origin: center;
  transition: transform 0.25s ease, text-shadow 0.25s ease;
  will-change: transform;
}

.value-item:hover {
  transform: scale(1.1);
  text-shadow: 0 12px 22px rgba(0,0,0,0.3);
}



/* =========================================================
   ✅ PROJECTS
========================================================= */

.projects-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4.8rem;
}

.projects-section {
  margin-top: 50px;     /* oder 120px */
  margin-bottom: 40px;
  width: 100%;
}

.projects-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 70px;
  font-family: Oswald;
}

/* GRID */
.projects-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.6rem;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* CARD */
.project-card {
  min-height: 400px; 
  background-color: #A9744A;
  border: 6px solid #653818;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--block-shadow);
  width: 100%;
  transition: transform 0.2s ease;
    max-width: 800px;
}


.project-card video {
}

.wildbret-card {
}




.visite-card img {
margin-bottom: 15px;}

.project-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.project-link:hover {
  transform: scale(1.02);
}

/* VIDEO */
.project-video{
  width: 100%;
  border-radius: 10px;
  display: block;
  margin: 0 auto 1rem;
  object-fit: cover;
  object-position: center;
}

#Wildbret-Video {
  height: 465px;              /* statt 280px */
  object-fit: contain !important;
  background: rgba(0,0,0,0.18);
  border-radius: 10px;
  aspect-ratio: 9 / 16;
}

/* Hover play */
.project-link:hover .project-video,
.project-card:hover .project-video {
  animation-play-state: running;
}

/* TEXT */
.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: Oswald;
  margin-top: 10px; 
}

.projects-hint{
  text-align: center;
  font-size: 18px;
  margin-top: -40px;
  margin-bottom: 60px;
  color: #e0e0e0;
}

.project-description {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Blue button (Projects Version) */
.blue-button {
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px; 
  font-size: 1rem;
  font-weight: bold;
  border: 3px solid #1768d1;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;  
  text-decoration: none;
  display: inline-block;
}

.blue-button:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

/* View all work */
.AllWorkdiv {
  display: flex;
  justify-content: center;
  margin-top: 46px;
  margin-bottom: 20px;
}



/* =========================================================
   ✅ SKILLS
========================================================= */

.skills-container {
  padding: 3rem;
  background-color: #A9744A;
  border: 6px solid #653818;
  border-radius: 20px;
  box-shadow: var(--block-shadow);

  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;

  max-width: 500px;
  margin: 400px auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.skills-container:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
      0 12px 28px rgba(0,0,0,0.28),
      0 4px 8px rgba(0,0,0,0.22);
}

/* Title */
.skills-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* List */
.skills-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}

/* Item */
.skill-item {
  background: #faf8f6;
  border: 2px solid #4b2a14;
  border-radius: 10px;
  color: #1e120a;
  padding: 0.9rem 0;
  font-weight: 600;
  font-family: Oswald, sans-serif;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s ease forwards;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skill-item {
  position: relative;
}

/* Icons */
.skill-item::before {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  font-size: 1.2rem;
  opacity: 0.9;
  font-family: "Fira Code", monospace;
}

.skill-html::before { content: "</>"; color: #E44D26; }
.skill-css::before  { content: "{ }"; color: #2965F1; }
.skill-js::before   { content: "();"; color: #ffd900; }
.skill-react::before{ content: "⚛";  color: #61DBFB; }
.skill-git::before  { content: "⤤";  color: #F1502F; }
.skill-responsive::before { content: "📱"; color: #9D4EDD; }

.skill-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.18);
}

/* Delays */
.skill-item:nth-child(1){animation-delay:0.2s;}
.skill-item:nth-child(2){animation-delay:0.4s;}
.skill-item:nth-child(3){animation-delay:0.6s;}
.skill-item:nth-child(4){animation-delay:0.8s;}
.skill-item:nth-child(5){animation-delay:1s;}
.skill-item:nth-child(6){animation-delay:1.2s;}



/* =========================================================
   ✅ CONTACT
========================================================= */

#contact-form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px;
}

.form-row {
  margin-bottom: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  font-size: 20px;
}

#email{
  padding:8px;
  color: black;
  border: #653818 2px solid;
  border-radius: 15px;
}

.contact-button {
  border: 2px solid rgb(9, 9, 99);
  color: rgba(255, 255, 255, 0.87);
  padding: 10px 15px;
  border-radius: 8px; 
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;    
  display: inline-block;
  max-width: 100%; 
  text-align: center;
  animation: bounce-top 0.9s both;
  text-align: center;
  margin-top: 20px;
}

.contact-button:hover {
  background-color: rgb(9, 9, 99);
  transform: translateY(-2px);
}

.form-input {
  width: 25%;
  height: 40px;
  padding: 10px;
  border-radius: 5px;
  padding:8px;
  color: black;
  border: #653818 2px solid;
  margin-bottom: 20px;
  color: black;
  display: block;
}

.form-input,
.contact-textarea,
#contact-form-message {
  box-shadow: var(--block-shadow);
}

.form-error {
  color: red;
}

.contact-textarea {
  width: 25%;
  height: 150px;
  padding: 10px;
  border-radius: 5px;
  padding:8px;
  color: black;
  border: #653818 2px solid;
  margin-bottom: 20px;
  color: black;
}

#contact-form-message {
  width: 25%;
  height: 150px;
  padding: 10px;
  border-radius: 5px;
  padding:8px;
  color: black;
  border: #653818 2px solid;
  margin-bottom: 20px;
  color: black;
}

.contact-section {
  margin-top: 4rem;
  text-align: center;
  margin-top: 700px; 
  margin-bottom: 40px;
}

.contact-title { 
  font-size: 2rem;
  font-weight: 600;
  font-family: oswald, sans-serif;
  margin-bottom: 40px;
}

.captcha-style {
  margin-top: 90px;
  text-align: center;
  color: black;
}

.form-input,
.contact-textarea,
#contact-form-message {
  margin-left: auto;
  margin-right: auto;
}

.captcha-style input {
  width: 15%;
  height: 40px;
  padding: 10px;
  border-radius: 5px;
  padding:8px;
  color: black;
  border: #653818 2px solid;
  color: black;
  margin-left: 10px;
}



/* =========================================================
   ✅ FOOTER / SOCIAL / TERMS
========================================================= */

.mdl-mini-footer__link-list {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  margin: 20px 0;
}


.mdl-mini-footer__link-list :hover {
  text-decoration: underline;
}

.body h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  text-align: center;
  margin-top: 20px;
}

.social-buttons {
  margin-top: 0px;
  margin-right:25px;
  margin-top: 5px;
}

.social-btn {
  font-size: 2rem;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.social-btn:hover {
  color: #4f6fd8;
}

/* =========================================================
   ! TERMS / AGB – STANDARD CSS
========================================================= */

.terms {
  margin: 0;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #2f5e49 0%, #376e8a 100%);
  color: #f5f5f5;
  font-family: "EB Garamond", serif;
  line-height: 1.7;
}

/* Zentrierter Textblock */
.terms > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Haupttitel */
.terms h1 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

/* Abschnittstitel */
.terms h2 {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 1.35rem;
  font-weight: 600;
}

/* Fließtext */
.terms p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Links */
.terms a {
  color: #a7c2ff;
  text-decoration: underline;
}

.terms a:hover {
  color: #dbe4ff;
  text-decoration: none;
}

/* Zurück-Link */
.terms > a {
  display: inline-block;
  margin-top: 40px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 600px) {
  .terms {
    padding: 60px 16px;
  }

  .terms h1 {
    font-size: 2rem;
  }
}

/* =========================================================
   ! IMPRESSUM – STANDARD CSS
========================================================= */

.bodyimpressum {
  margin: 0;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #2f5e49 0%, #376e8a 100%);
  color: #f5f5f5;
  font-family: "EB Garamond", serif;
  line-height: 1.7;
  text-align: center;
  min-height: 100vh;
}

/* Zentrierter Textblock */
.bodyimpressum > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Titel */
.bodyimpressum h1 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

/* Text */
.bodyimpressum p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Links */
.bodyimpressum a {
  color: #a7c2ff;
  text-decoration: underline;
}

.bodyimpressum a:hover {
  color: #dbe4ff;
  text-decoration: none;
}

/* Zurück-Link */
.bodyimpressum > a {
  display: inline-block;
  margin-top: 40px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 600px) {
  .bodyimpressum {
    padding: 60px 16px;
  }

  .bodyimpressum h1 {
    font-size: 2rem;
  }
}



/* =========================================================
   ! PRIVACY POLICY – STANDARD CSS
========================================================= */

.bodypolicy {
  margin: 0;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #2f5e49 0%, #376e8a 100%);
  color: #f5f5f5;
  font-family: "EB Garamond", serif;
  line-height: 1.7;
}

/* Container-Gefühl ohne extra Wrapper */
.bodypolicy > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hauptüberschrift */
.Policy {
  font-size: 2.6rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

/* Abschnittsüberschriften */
.bodypolicy h2 {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Fließtext */
.bodypolicy p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Links */
.bodypolicy a {
  color: #a7c2ff;
  text-decoration: underline;
}

.bodypolicy a:hover {
  color: #dbe4ff;
  text-decoration: none;
}

/* Zurück-Link */
.bodypolicy > a {
  display: inline-block;
  margin-top: 40px;
  font-weight: 600;
  margin-left: 40px;
}

/* Mobile */
@media (max-width: 600px) {
  .Policy {
    font-size: 2rem;
  }

  .bodypolicy {
    padding: 60px 16px;
  }
}


.terms {
  text-align: center;
  font-size: 20px;
}

.Termsverschieben {
  margin-left: 40px;
}

.footer-section {
  text-align: center;
  margin-top: 150px;
  padding-bottom: 20px;
  background-color: #2f3f2e;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  color: #f5f5f5;
}



/* =========================================================
   ✅ THANKS PAGE
========================================================= */

.thanks-container {
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 20px;
  text-align: center;
}

.thanks-box {
  background-color: rgba(182, 195, 216, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border: 4px solid rgba(197, 164, 77, 0.7);
  border-radius: 20px;
  box-shadow: var(--block-shadow);

  max-width: 720px;
  width: 92%;
  padding: 60px 40px;
}

.thanks-title {
  font-size: 3rem;
  font-family: Oswald, sans-serif;
  margin-bottom: 20px;
  color: #a7c2ff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.thanks-text {
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 45px;
  color: #f5f5f5;
}

.thanks-btn {
  margin-top: 0;
  text-decoration: none;
}



/* =========================================================
   ✅ RESPONSIVE (ALLE @media GANZ UNTEN)
========================================================= */

@media(max-width: 768px) {

  /* NAV */
  #navbar { display: none; }
  #menu-btn { display: block; }

  .nav-bar {
    padding: 10px 14px;
    font-size: 1rem;
  }

  nav-all-projects{
    margin-bottom: 140px;
  }

  /* HERO */
  .hero { padding: 120px 20px; height: auto; }
  .hero-inner { flex-direction: column; gap: 40px; }
  .myName { font-size: 30px; }
  .hero-image { max-width: 240px; }

  /* SECTIONS */
  #MyVision,
  .projects-section,
  .skills-container,
  .contact-section {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  /* PROJECT GRID */
  .projects-grid {
    grid-template-columns: repeat(1,  1fr);
  }

  .project-card {
    max-width: 90%;
        height: auto;

  }

  .visite-card{
    height: auto;
  } 

  /* SKILLS */
  .skills-list {
    grid-template-columns: 1fr;
  }

    .skills-container{
    padding: 1rem 1.2rem;   /* weniger breit, mehr mobile */
    margin: 140px auto;     /* 400 ist zu viel auf mobile */
    max-width: 52%;
  }

  .skills-list{
    grid-template-columns: 1fr;
    gap: 2.4rem;            /* 3rem ist zu viel */
    margin-bottom: 25px;
  }

  .skill-item{
    padding: 1.1rem 1rem 1.1rem 3.6rem; /* LINKS Platz für Icon */
  }

  .skill-item::before{
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%); /* vertikal zentriert */
    font-size: 1.35rem;
  }

  .form-input,
  #contact-form-message,
  .contact-textarea {
    width: 90%;
  }

  /* Abstand der ganzen Section */
  .contact-section {
    margin-top: 140px;
    margin-bottom: 140px;
  }

  .weather-room{
    margin-top: 20px;
  }

  /* Jede Zeile im Formular */
  .form-input,
  #contact-form-message,
  .contact-textarea {
    width: 85% !important;
    max-width: 420px !important;
    padding: 12px !important;
    font-size: 1.1rem !important;
  }

  .form-row {
    margin-bottom: 26px !important;
  }

  .contact-button {
    width: 50% !important;
    max-width: 260px !important;
    padding: 12px !important;
    font-size: 1.1rem !important;
  }

}



  @media (min-width: 769px) and (max-width: 1024px) {
  .skills-container {
    max-width: 720px;
    padding: 0rem;
    gap: 220px;

  }

  .projects-grid {
    grid-template-columns: repeat(1, 1fr);
        gap: 100px;

  }

    #navbar { display: none; }
  #menu-btn { display: block; }

  .nav-bar {
    padding: 10px 14px;
    font-size: 1rem;
  }

  nav-all-projects{
    margin-bottom: 140px;
  }

  /* HERO */
  .hero { padding: 120px 20px; height: auto; }
  .hero-inner { flex-direction: column; gap: 65px; }
  .myName { font-size: 30px; }
  .hero-image { max-width: 240px; }

  /* SECTIONS */
  #MyVision,
  .projects-section,
  .skills-container,
  .contact-section {
    margin-top: 80px;
    margin-bottom: 80px;
  }



  .project-card {
    max-width: 80%;
        height: auto;

  }
    .projects-section {
    margin-top: 280px;
  }

  .projects-section-all-projects {
    margin-top: 80px;
  }

    #MyVision {
    margin-top: 280px;
  }


    #values {
    margin-bottom: 280px;
    margin-top: 280px;
  }




  .visite-card{
    height: auto;
  } 

  /* SKILLS */


  .skills-title {
    margin-top: 30px;
  }
  .skills-list {
    grid-template-columns: 1fr;
  }

    .skills-container{
    padding: 1rem 1.2rem;   /* weniger breit, mehr mobile */
    margin: 120px auto;
    max-width: 52%;
    margin-bottom: 180px;
  }

  .skills-list{
    grid-template-columns: 1fr;
    gap: 3.4rem;            /* 3rem ist zu viel */
    margin-bottom: 35px;
    margin-top: -175px;
  }

  .skill-item{
    padding: 1.1rem 5rem 1.1rem 3.6rem; /* LINKS Platz für Icon */
    text-align: center;
    margin-left: 0px;
  }


  .skill-item::before{
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%); /* vertikal zentriert */
    font-size: 1.35rem;
  }

  .form-input,
  #contact-form-message,
  .contact-textarea {
    width: 90%;
  }

  /* Abstand der ganzen Section */
  .contact-section {
    margin-top: 140px;
    margin-bottom: 140px;
  }

  .weather-room{
    margin-top: 20px;
  }

  /* Jede Zeile im Formular */
  .form-input,
  #contact-form-message,
  .contact-textarea {
    width: 85% !important;
    max-width: 420px !important;
    padding: 12px !important;
    font-size: 1.1rem !important;
  }

  .form-row {
    margin-bottom: 26px !important;
  }

  .contact-button {
    width: 50% !important;
    max-width: 260px !important;
    padding: 12px !important;
    font-size: 1.1rem !important;
  }

}



@media (max-width: 600px) {
  .nav-home {
    left: 50%;
    transform: translateX(-50%);
  }
}


@media(max-width: 420px) {

  .myName {
    font-size: 26px;
  }

  .project-card {
    max-width: 80%;
  }

  /* altes überschreiben */
  .skills-container {
    width: 90%;
    padding: 16px;
    margin: 90px auto;
  }

  /* Form */
  .form-input,
  #contact-form-message,
  .contact-textarea {
    width: 90% !important;
    max-width: 340px;
    font-size: 1rem;
  }

  .form-row {
    margin-bottom: 24px;
  }

  .contact-button {
    width: 60%;
    max-width: 260px;
    padding: 12px;
    font-size: 1rem;
  }

  /* Abstand von allen sections */
  #MyVision,
  #projects,
  .skills-container,
  .contact-section {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
}

/* Thanks mobile */
@media (max-width: 480px) {

  .thanks-box {
    padding: 45px 22px;
  }

  .thanks-title {
    font-size: 2.2rem;
  }

  .thanks-text {
    font-size: 1.15rem;
  }

  .skills-container {
    padding: 1.5rem;
    margin: 120px auto;
    max-width: 72%;
  }
}



/* =========================================================
   ✅ ANIMATIONS (ALLE @keyframes GANZ UNTEN)
========================================================= */

/* Premium Gold-Pulsation */
@keyframes goldPulse {
  0% {
    filter: brightness(1.1);
    box-shadow: 0 0 4px rgba(255, 215, 130, 0.35);
  }
  50% {
    filter: brightness(1.28);
    box-shadow: 0 0 14px rgba(255, 215, 130, 0.75);
  }
  100% {
    filter: brightness(1.1);
    box-shadow: 0 0 4px rgba(255, 215, 130, 0.35);
  }
}

/* Sanfte Wolf-Aufhellung */
@keyframes wolfGlow {
  0% {
    filter: brightness(1) contrast(1.3);
  }
  50% {
    filter: brightness(1.25) contrast(1.5);
  }
  100% {
    filter: brightness(1) contrast(1.3);
  }
}

@keyframes bounce-top {
  0% {
    transform: translateY(-45px);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    transform: translateY(-24px);
    animation-timing-function: ease-in;
  }
  65% {
    transform: translateY(-12px);
    animation-timing-function: ease-in;
  }
  82% {
    transform: translateY(-6px);
    animation-timing-function: ease-in;
  }
  93% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    transform: translateY(0px);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateY(0px);
    animation-timing-function: ease-out;
    opacity: 1;
  }
}

/* Fade-In Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
