@charset "utf-8";

@import url("fonts.css");
/* @import url("variables.css"); */

/* 
----------------------------------
Inhalt 
 - Reset / Base
 - Layout Grid
 - Header and Navigation
  - Naavigation Dropdown
  - Mobile Navigation
 - Main Content
  - Gallery
  - YouTube
  - Product Shot
- About
  - Modal
- General Card Styling 
- Carousel
- Footer
- Gallery Landinbgpage
- Gallery Macrophotography
- Gallery Landscape Photography
- Gallery Street Photography
- Gallery Industry Photography
- Contact Cards
- Contact Form
- Formular Statusmeldung
- Commercial
----------------------------------
*/

/* ---Reset / Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 1rem;
}

h3 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0.5rem;
}

body {
  font-family: Lato, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #6c6c6c;
  background-color: #eceaea;
}

/* --- Layout Grid --- */
.layout {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

header {
  grid-row: 1;
}

main {
  grid-row: 2;
}

footer {
  grid-row: 3;
}

/* --- Header and Navigation --- */
header {
  padding: 0;
  margin: 0;
}

.navigation {
  display: grid;
  grid-template-columns: auto 1fr auto;
  height: 120px;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav-logo {
  grid-column: 1;
  justify-self: center;
  align-self: center;
  width: auto;
  height: 80px;
}

.nav-menu a {
  text-decoration: none;
  color: #6c6c6c;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.navigation a:hover {
  opacity: 1;
  color: #000;
}

.nav-menu a.active {
  color: #000;
  opacity: 1;
  position: relative;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -4px;
  height: 2px;
  background: #000;
}

/* --- Navigation Dropdown --- */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  min-width: 120px;
  z-index: 1000;
  background-color: rgba(214, 213, 213, 0.7);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.7rem;
  text-decoration: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- mobile Navigation ---*/

/* --- Mobiles Overlay --- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
  z-index: 1900;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Mobile Off Canvas Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: #eceaea;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  padding: 2.5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 2000;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* --- Mobile Navigation --- */
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-list a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: #6c6c6c;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
  color: #000;
}

.mobile-nav-list a.active {
  color: #000;
}

/* --- Mobile Gallery Dropdown --- */

.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #6c6c6c;
  font-family: inherit;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

.mobile-dropdown-btn:hover {
  color: #000;
}

.mobile-dropdown-btn.active {
  color: #000;
}

.mobile-dropdown-btn i {
  transition: transform 0.3s ease;
}

.mobile-dropdown-btn.active i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 0.8rem 0 0.8rem 1.5rem;
  text-decoration: none;
  color: #6c6c6c;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.mobile-dropdown-menu a:hover {
  color: #000;
}

.mobile-dropdown-menu a.active {
  color: #000;
}

/* --- Hamburger Button --- */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.75rem;
  font-size: 1.8rem;
  color: #6c6c6c;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hamburger-btn:hover {
  color: #000;
}

/* --- Mobile Menu Header --- */
.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

/* --- Mobile Close Button --- */
.mobile-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.75rem;
  height: 2.75rem;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  color: #6c6c6c;
  font-size: 1.4rem;
  cursor: pointer;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.mobile-close:hover {
  color: #000;
  transform: scale(1.05);
}

/* --- Main Content --- */
main {
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "content1 content2 content3 sidebar"
    "content4 content5 content6 sidebar";
  gap: 2rem;
  padding: 2rem;
}

/* --- Product Shot --- */
.product-shot-card {
  grid-area: content2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

/* --- About --- */
.about-card {
  grid-area: content3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.content4 {
  grid-area: content4;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  width: min(950px, 90vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #f7f7f7;
  border-radius: 25px;
  padding: 2.5rem;
  position: relative;
  box-sizing: border-box;
}

.modal-container::-webkit-scrollbar {
  width: 6px;
}

.modal-container::-webkit-scrollbar-thumb {
  background: rgba(120, 120, 120, 0.35);
  border-radius: 50px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background: rgba(120, 120, 120, 0.65);
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #666;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
  transform: rotate(180deg) scale(1.1);
  color: #222;
  background: #fff;
}

.about-content,
.story-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.modal-title {
  font-size: 1.25rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8a8a8a;
  margin: 1.5rem 0 2rem 0;
  text-align: center;
}

.modal-image {
  display: block;
  width: 70%;
  max-width: 650px;
  height: auto;
  margin: 0 auto 2rem auto;
  border-radius: 15px;
  object-fit: cover;
}

.story-image img {
  display: block;
  width: 100%;
  max-width: 750px;
  max-height: auto;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 auto 1rem auto;
}

.story-image img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.story-image figcaption {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #7a7a7a;
  text-align: center;
  font-style: italic;
  opacity: 0.8;
}

.story-image figcaption::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: #d5d5d5;
  margin: 1rem auto 0;
}

.modal-text {
  max-width: 800px;
  margin: 1.5rem auto;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #5f5f5f;
  text-align: left;
}

.story-text {
  max-width: 760px;
  margin:
    1rem auto 0.8rem,
    auto;
  text-align: left;
  color: #666;
  line-height: 1.5;
}

.story-text p {
  margin-bottom: 0.5rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.image-details {
  max-width: 760px;
  margin: 0.5rem auto 0;
  padding-top: 1rem;
  text-align: left;
  border-top: 1px solid #e5e5e5;
}

.image-details h3 {
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: 1.2rem;
  color: #7a7a7a;
}

.image-details {
  max-width: 760px;
  margin: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.image-details h3 {
  margin-bottom: 1.5rem;
  color: #7a7a7a;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.25em;
  font-size: 1rem;
}

.detail-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.detail-row span:first-child {
  width: 120px;
  font-weight: 600;
  color: #555;
}

.detail-row span:last-child {
  color: #777;
}

.detail-value-link {
  color: inherit;
  text-decoration: none;
  font: inherit;
}

.detail-value-link:hover {
  text-decoration: underline;
}

/* --- YouTube --- */
.youtube-card {
  grid-area: content5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.content6 {
  grid-area: content6;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.sidebar {
  grid-area: sidebar;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

/* --- General Card Styling --- */
.card-title {
  font-size: 0.9rem;
  font-weight: bold;
  margin: 0.5rem;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 0.15em;
}

.card-icon {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.card-image {
  aspect-ratio: 4 / 3;
  margin: 0 1rem;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}

.card-image img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card-image img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.card-text {
  font-size: 0.8rem;
  color: #6c6c6c;
  margin: 1rem;
  text-align: left;
}

.card-text a {
  text-decoration: none;
}

.card-explore-more {
  font-size: 0.6rem;
  color: #6c6c6c;
  font-weight: light;
  text-align: left;
  cursor: pointer;
  opacity: 0.5;
}

.card-explore-more:hover {
  opacity: 1;
  font-size: 0.7rem;
}

/* --- Carousel --- */

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  display: block;
}

.carousel-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* --- Footer --- */
footer {
  max-width: 1800px;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-size: 0.6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 5%;
  gap: 3rem;
}

footer a {
  text-decoration: none;
  color: #6c6c6c;
  font-weight: normal;
}

footer p {
  grid-column: 1;
  justify-self: start;
  align-self: center;
}

.footer-socialmedia {
  grid-column: 2;
  justify-self: center;
  align-self: center;
  display: flex;
  gap: 1rem;
}

.footer-legal {
  grid-column: 3;
  justify-self: end;
  align-self: center;
}

/* --- Gallery Landingpage--- */

.gallery-card {
  grid-area: content1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.gallery-landscape {
  grid-area: content1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.gallery-street {
  grid-area: content2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.gallery-macro {
  grid-area: content3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.gallery-industry {
  grid-area: content5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

/* --- Gallery Macro Photography --- */
.macro-card-one {
  grid-area: content1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.macro-card-two {
  grid-area: content2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.macro-card-three {
  grid-area: content3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.macro-card-four {
  grid-area: content4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.macro-card-five {
  grid-area: content5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.macro-card-six {
  grid-area: content6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

/* --- Gallery Landscape Photography --- */

.landscape-card-one {
  grid-area: content1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.landscape-card-two {
  grid-area: content2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.landscape-card-three {
  grid-area: content3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.landscape-card-four {
  grid-area: content4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.landscape-card-five {
  grid-area: content5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.landscape-card-six {
  grid-area: content6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

/* --- Gallery Street Photography --- */
.street-card-one {
  grid-area: content1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.street-card-two {
  grid-area: content2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.street-card-three {
  grid-area: content3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.street-card-four {
  grid-area: content4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.street-card-five {
  grid-area: content5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.street-card-six {
  grid-area: content6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

/* --- Gallery Industry Photography --- */
.industry-card-one {
  grid-area: content1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.industry-card-two {
  grid-area: content2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.industry-card-three {
  grid-area: content3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.industry-card-four {
  grid-area: content4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.industry-card-five {
  grid-area: content5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.industry-card-six {
  grid-area: content6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

/* --- Contact-Card --- */
.contact-card-one {
  grid-area: content1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.contact-card-two {
  grid-area: content2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.contact-card-three {
  grid-area: content3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.contact-card-four {
  grid-area: content4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.contact-card-five {
  grid-area: content5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.contact-card-six {
  grid-area: content6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

/* --- Contact Form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  gap: 0;
  padding: 0rem 1.5rem 1.5rem;
  box-sizing: border-box;
}

.contact-form [aria-invalid="true"] {
  border-color: #909090;
}

.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.contact-intro {
  text-align: center;
  color: #6c6c6c;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-fields {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.privacy-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

input:not([type="checkbox"]),
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #6c6c6c;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #6c6c6c;
  box-sizing: border-box;
}

.submit-btn {
  margin-top: 2rem;
  padding: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid #222;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: #6c6c6c;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group label {
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  color: #6c6c6c;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0.35rem 0 0 0;
  flex: none;
}

.checkbox-group label {
  margin: 0;
  line-height: 1.6;
  color: #6c6c6c;
  flex: 1;
}

.privacy-link {
  margin-top: 0.75rem;
  padding-left: 1.8rem;
}

.privacy-link a {
  font-size: 0.8rem;
  color: #6c6c6c;
  text-decoration: none;
  opacity: 0.7;
  transition:
    color 0.3s ease,
    opacity 0.3s ease,
    letter-spacing 0.3s ease;
}

.privacy-link a:hover {
  color: #000;
  opacity: 1;
  text-decoration: underline;
  letter-spacing: 0.03em;
}

.legal-notices {
  margin-top: 1.5rem;
}

.legal-notices a {
  display: inline-block;
  font-size: 0.8rem;
  color: #6c6c6c;
  text-decoration: none;
  opacity: 0.7;
  transition:
    color 0.3s ease,
    opacity 0.3s ease,
    letter-spacing 0.3s ease;
}

.legal-notices a:hover {
  color: #000;
  opacity: 1;
  text-decoration: underline;
  letter-spacing: 0.03em;
}

/* --- Formular Statusmeldung --- */

.form-status {
  display: none;
  margin: 1.25rem 0;
  padding: 0.9rem 1.25rem;
  border: 1px solid #b8b8b8;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  color: #555;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    border-color 0.3s ease;
}

.form-status.success,
.form-status.error {
  display: block;
  opacity: 1;
}

.form-status.success {
  border-color: #a8a8a8;
}

.form-status.error {
  border-color: #909090;
}

.field-error {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #666;
  padding-left: 0.1rem;
}

/* --- Commercial --- */
.commercial-card-one {
  grid-area: content1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.commercial-card-two {
  grid-area: content2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.commercial-card-three {
  grid-area: content3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.commercial-card-four {
  grid-area: content4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.commercial-card-five {
  grid-area: content5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

.commercial-card-six {
  grid-area: content6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #000;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #b1b1b1;
}

/* ---------- Social Media Links ---------- */

.social-media-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.social-media-links a {
  color: #6c6c6c;
  font-size: 1.4rem;
  text-decoration: none;
  opacity: 0.75;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.social-media-links a:hover {
  color: #6c6c6c;
  opacity: 1;
  transform: scale(1.1);
}