/* =========================================================
   DIE HOCHZEIT
   Datei: content-hochzeit.css
========================================================= */


/* =========================================================
   1) BASICS
========================================================= */

    /* ---------------------------------------------------------
       Wrapper
    --------------------------------------------------------- */

          .hochzeit-wrap{
            max-width: 980px;
            margin: 0 auto;
            box-sizing: border-box;
          }


    /* ---------------------------------------------------------
       Intro / Text
    --------------------------------------------------------- */

          .hochzeit-intro{
            margin-bottom: calc(var(--menu-gap) * 1.6);
            color: rgba(255,255,255,0.88);
            font-size: var(--font-size-content);
            line-height: var(--line-height-text);
          }

          .hochzeit-wrap p{
            margin: 0 0 1rem 0;
            color: rgba(255,255,255,0.92);
            font-size: var(--font-size-content);
            line-height: var(--line-height-text);
            text-align: justify;
          }

          .hochzeit-wrap em{
            color: rgba(255,255,255,0.96);
          }

          .hochzeit-note{
            text-align: center !important;
            font-size: 0.9rem !important;
            color: rgba(255,255,255,0.75) !important;
          }


/* =========================================================
   2) SEKTIONEN
========================================================= */

          .hochzeit-section{
            margin-top: calc(var(--menu-gap) * 1.1);
            padding: calc(var(--menu-gap) * 1.05);

            border: 1px solid rgba(255,255,255,0.22);
            border-radius: var(--radius-sm);
            background: rgba(0,0,0,0.12);

            transition: background .2s ease, border-color .2s ease;
          }

          .hochzeit-section:hover{
            background: rgba(0,0,0,0.18);
            border-color: rgba(255,255,255,0.32);
          }

          .hochzeit-title{
            margin: 0 0 14px 0;

            font-family: var(--font-style-headline);
            font-size: calc(var(--font-size-headline-section) * 0.9);
            color: #fff;
          }


/* =========================================================
   3) FIGURES
========================================================= */

          .hochzeit-figure{
            margin: 0.25rem 0 1rem 0;
            max-width: 320px;
            padding: 10px;

            background:
              linear-gradient(
                180deg,
                rgba(255,255,255,0.07) 0%,
                rgba(120,160,255,0.08) 100%
              );

            border: 1px solid rgba(255,255,255,0.16);
            border-radius: var(--radius-sm);

            box-shadow:
              inset 0 0 0 1px rgba(255,255,255,0.04),
              0 10px 26px rgba(0,0,0,0.22);
          }

          .hochzeit-figure img{
            display: block;
            width: 100%;
            height: auto;

            border-radius: calc(var(--radius-sm) * 0.7);
            border: 1px solid rgba(255,255,255,0.08);

            box-shadow: 0 6px 18px rgba(0,0,0,0.18);
          }

          .hochzeit-figure figcaption{
            margin-top: 6px;

            font-family: var(--font-style-text);
            font-size: 0.82rem;
            line-height: 1.35;

            color: rgba(255,255,255,0.80);
            text-align: left;
          }


/* ---------------------------------------------------------
   Positionen
--------------------------------------------------------- */

          .hochzeit-figure--left{
            float: left;
            margin: 0.2rem 1rem 0.9rem 0;
          }

          .hochzeit-figure--right{
            float: right;
            margin: 0.2rem 0 0.9rem 1rem;
          }

          .hochzeit-figure--center{
            float: none;
            clear: both;
            margin: 1rem auto;
          }

          .hochzeit-figure--small{
            max-width: 220px;
          }


/* =========================================================
   4) GALERIE
========================================================= */

          .hochzeit-gallery{
            display: grid;
            grid-template-columns: repeat(2, auto);
            justify-content: center;
            gap: 12px;

            margin: 1.6rem auto;
          }

          .hochzeit-shot{
            width: 210px;
            margin: 0;
            padding: 8px;

            border: 1px solid rgba(255,255,255,0.16);
            border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.04);

            box-shadow: 0 8px 18px rgba(0,0,0,0.18);
            overflow: hidden;
          }

          .hochzeit-shot img{
            display: block;
            width: 100%;
            height: auto;

            object-fit: cover;
            object-position: center;

            border-radius: calc(var(--radius-sm) * 0.65);
          }


/* ---------------------------------------------------------
   Großes Bild
--------------------------------------------------------- */

          .hochzeit-shot--wide{
            grid-column: 1 / -1;
            width: 432px;
            justify-self: center;
          }

          .hochzeit-shot--wide img{
            height: 230px;
          }


/* ---------------------------------------------------------
   Hochkantbilder
--------------------------------------------------------- */

          .hochzeit-shot--portrait img{
            height: 300px;
            object-position: center top;
          }


/* ---------------------------------------------------------
   Letztes Bild zentriert
--------------------------------------------------------- */

          .hochzeit-shot--center{
            grid-column: 1 / -1;
            justify-self: center;
          }


/* =========================================================
   5) FLOATS AUFRÄUMEN
========================================================= */

          .hochzeit-wrap::after,
          .hochzeit-section::after{
            content: "";
            display: block;
            clear: both;
          }


/* =========================================================
   6) RESPONSIVE – MOBILE
========================================================= */

@media (max-width: 700px){

          .hochzeit-gallery{
            grid-template-columns: 1fr;
            max-width: 340px;
            justify-content: center;
          }

          .hochzeit-shot,
          .hochzeit-shot--wide,
          .hochzeit-shot--center{
            width: 100%;
          }

          .hochzeit-shot img,
          .hochzeit-shot--wide img,
          .hochzeit-shot--portrait img{
            height: auto;
          }

          .hochzeit-figure,
          .hochzeit-figure--left,
          .hochzeit-figure--right,
          .hochzeit-figure--center{
            float: none;
            max-width: 100%;
            margin: 0.5rem auto 1rem auto;
          }

          .hochzeit-wrap p{
            text-align: left;
          }

          .hochzeit-note{
            text-align: left !important;
          }
}


@media (max-width: 768px){

          .hochzeit-section{
            padding: calc(var(--menu-gap) * 0.9);
          }

          .hochzeit-intro{
            margin-bottom: calc(var(--menu-gap) * 1.2);
          }
}