* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

.blog-section {
  background-color: #000000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5vw;
  padding: 5vh 8vw;
  flex-wrap: wrap;
}
.blog-left {
  flex: 1;
  min-width: 280px;
  margin-top: 50px;
}
.image-placeholder-blog {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: #d3d3d3;
  background-image: url("AR.png");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}
.blog-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 50px;
}
.blog-label {
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.8;
}
.blog-right h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.blog-right p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.blog-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-form label {
  font-weight: bold;
}
.blog-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: white;
  font-family: inherit;
}
.blog-form input::placeholder {
  color: #ccc;
}
.blog-button {
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
  font-family: "Montserrat", sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}
.blog-button:hover {
  background-color: white;
  color: #723737;
}

.footer {
  background-color: #000000;
  color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5vh 8vw;
  gap: 3rem;
  font-size: 1rem;
}
.footer-service {
  width: 1200px;
  margin-top: 50px;
}
.footer-social {
  margin-top: 50px;
  margin-right: -100px;
}
.footer-col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: #dddddd;
}
.footer-service p {
  margin: 0.2rem 0;
  font-size: 0.7rem;
}
.footer-address ul {
  list-style: none;
  margin-left: 1rem;
  padding: 0;
}
.footer-social .icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer-social img {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
}
@media (max-width: 1024px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer-service,
  .footer-social {
    width: 100%;
    margin-top: 2rem;
    margin-right: 0;
  }

  .footer-social .icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 4vh 5vw;
    font-size: 0.9rem;
  }

  .footer-col a {
    font-size: 0.95rem;
  }

  .footer-social img {
    width: 32px;
    height: 32px;
  }

  .footer-service p {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }
}

.hero-section-gravuren {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('sgravur1.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero-section-gravuren .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.hero-section-gravuren .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
}
.hero-section-gravuren h1 {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-section-gravuren p {
  font-size: 1.25rem;
  color: #ddd;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* Scroll-Pfeil */
.scroll-down {
  display: inline-block;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.scroll-down .arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin: 0 auto;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-section-gravuren h1 {
    font-size: 2.2rem;
  }
  .hero-section-gravuren p {
    font-size: 1rem;
  }
}

.gravure-story-section {
  background-color: #fff;
  color: #000;
  padding: 8rem 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.story-wrapper {
  max-width: 900px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}
.story-line {
  width: 80px;
  height: 1px;
  background-color: #000;
  margin-bottom: 2rem;
}
.story-content h2 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222;
}
/* FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}
.fade-in.delay {
  transition-delay: 0.4s;
}
.fade-in.delay-2 {
  transition-delay: 0.8s;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .story-content h2 {
    font-size: 2rem;
  }
  .story-content p {
    font-size: 1rem;
  }
}

.gravure-gallery-section {
  position: relative;
  background-color: #000000;
  color: #ffffff;
  padding: 8rem 6%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
#gallery-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.gallery-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.gallery-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.gallery-wrapper p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 3rem;
}
.gallery-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery-item {
  flex: 1 1 40%;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1) contrast(1.1);
}
.gallery-caption {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.8rem;
  font-style: italic;
}
/* ------------------------------------------------------ */
/*              MOBILE OPTIMIZATION — GRAVURE GALLERY     */
/* ------------------------------------------------------ */

@media (max-width: 992px) {

  .gravure-gallery-section {
    padding: 6rem 5%;
  }

  .gallery-wrapper h2 {
    font-size: 2.1rem;
    letter-spacing: 0.04em;
  }

  .gallery-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }

  .gallery-grid {
    gap: 1.6rem;
  }

  .gallery-item {
    flex: 1 1 48%;
  }
}

@media (max-width: 768px) {

  .gravure-gallery-section {
    padding: 5rem 5%;
  }

  .gallery-wrapper {
    gap: 2.2rem;
  }

  .gallery-wrapper h2 {
    font-size: 1.8rem;
  }

  .gallery-wrapper p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    gap: 1.4rem;
  }

  .gallery-item {
    flex: 1 1 100%;
  }

  .gallery-item img {
    filter: brightness(0.9) contrast(1.03);
  }

  /* Hover abschwächen für Touchscreens */
  .gallery-item:hover img {
    transform: scale(1.015);
    filter: brightness(0.95) contrast(1.05);
  }

  .gallery-caption {
    font-size: 0.9rem;
    margin-top: 0.6rem;
  }
}


@media (max-width: 480px) {

  .gravure-gallery-section {
    padding: 4rem 4%;
  }

  .gallery-wrapper {
    gap: 1.8rem;
  }

  .gallery-wrapper h2 {
    font-size: 1.55rem;
    letter-spacing: 0.03em;
  }

  .gallery-wrapper p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.6rem;
  }

  .gallery-grid {
    gap: 1.2rem;
  }

  .gallery-item img {
    filter: brightness(0.88) contrast(1.03);
  }

  .gallery-caption {
    font-size: 0.85rem;
    opacity: 0.9;
  }
}


.metal-personalization-section {
  background-color: #fff;
  color: #000;
  padding: 8rem 6%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.personalization-wrapper {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
}
.personalization-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.personalization-wrapper p {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 3rem;
}
.personalization-item {
  text-align: left;
  padding: 2rem 2rem;
  border-left: 2px solid #000;
  position: relative;
}
.personalization-item h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.personalization-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.personalization-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2.5rem;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.personalization-cta:hover {
  background-color: #000;
  color: #fff;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .personalization-wrapper h2 {
    font-size: 2rem;
  }

  .personalization-item {
    padding: 1.5rem 1rem;
  }

  .personalization-item h3 {
    font-size: 1.3rem;
  }

  .personalization-item p {
    font-size: 0.95rem;
  }

  .personalization-cta {
    padding: 0.7rem 2rem;
    font-size: 0.95rem;
  }
}

.metal-philosophy-section {
  background-color: #000000;
  color: #ffffff;
  padding: 6rem 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.philosophy-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
.philosophy-video video {
  width: 320px;
  max-height: 600px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 50px rgba(0,0,0,0.08);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.philosophy-video video:hover {
  transform: scale(1.02);
}
.philosophy-text {
  flex: 1;
  min-width: 280px;
}
.philosophy-text h2 {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.philosophy-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #adadad;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .philosophy-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .philosophy-video video {
    width: 100%;
    max-height: 500px;
  }

  .philosophy-text h2 {
    font-size: 1.8rem;
  }

  .philosophy-text p {
    font-size: 1rem;
  }
}
