/*
Theme Name: DiLuxLaser
Theme URI: https://diluxlaser.at
Author: Andibar
Author URI: https://andibar.at
Description: Professionelle Laserhaarentfernung in Graz - DiLuxLaser Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: diluxlaser
*/

/* ============================================
   FONTS
   ============================================ */

@font-face {
    font-family: 'Raleway-Light';
    src: url('assets/fonts/Raleway-Light.ttf') format('truetype');
    font-weight: 300; 
    font-style: normal; 
}
  
@font-face {
    font-family: 'Raleway-Medium';
    src: url('assets/fonts/Raleway-Medium.ttf') format('truetype');
    font-weight: 400; 
    font-style: normal; 
}


/* ============================================
   RESET & BASICS
   ============================================ */

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}


body{
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    background-color: var(--color-prim);
    color: var(--color-text);
    line-height: 1.7;

    --color-prim: #F0E4DD;
    --color-sec: #E6CDB9;
    --color-accent: #5C3F35;
}

::selection {
    background-color: var(--color-sec); 
    color: black; 
}

h1, h2, h3, h4, h5, h6{
  font-family: "amandine", sans-serif;
  line-height: 1.2;
  font-weight:300;
  color: var(--color-accent);
}

h1{
    font-size: calc(1.1em + 3vw);
}

h2{
    font-size: calc(1.1em + 1.5vw);
}

#hero h1{
    font-size: 14vw;
        margin-bottom: -2vw;
}
#hero h2{
    font-size: 7vw;
}



h3{
    font-size: calc(1.1em + 1.5vw);
}

p, span, div, a:not(#menu-hauptmenue a), button {
  font-family: 'Raleway-Light', sans-serif; 
  font-size: 17px !important;
}

p{
    padding-top:20px;
    padding-bottom:20px;
}


button{
    background-color: var(--color-accent);
    color:white;
    padding: 6px 30px;
    border-radius: 6px;
    border-color: var(--color-accent);
}

button:hover{
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn{
    background-color: var(--color-accent);
    color:white;
    padding: 6px 20px;
    border:2px solid var(--color-accent);
    border-radius: 6px;
    border-color: transparent;
    font-family: inherit;
    font-size:18px;
    text-decoration:none!important;
    display:inline-block;
    width:max-content;
}

.btn:hover{
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

a{
    color: var(--color-text);
    text-decoration:underline;
    display:inline;
}

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

a > button:hover{
    text-decoration:none;
}

.tag{
    font-family: 'Raleway-medium', sans-serif;
    font-size:17px;
    font-weight:400;
    color:black;
    padding-bottom:20px;
}

a:focus-visible{
    outline: 4px dashed var(--color-accent);       
    border: 1px solid white; 
}

  .accordion-header:focus-visible{
    outline: 4px dashed var(--color-accent);          
  }

  .divider{
    border-color:transparent;
    padding-top:20px;
    padding-bottom:20px;
  }

  table{
    margin-top:-8px;
  }


/* ============================================
   NAV BAR
   ============================================ */

nav {
    background-color: var(--color-prim);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0 50px;
}

nav ul {
    width:100%;
    list-style: none;
    display:flex;
    justify-content: flex-end;
    align-items: center;
    margin:0;
}

nav li{
    display: flex;
    margin:9px 0;
}

nav a{
    padding:5px 20px;
    text-decoration:none;
    border-radius: 6px;
    display:flex;
    align-items: center;
    color: var(--color-text);
}

nav a:hover{
    color: var(--color-accent);
}

nav a.menu-button {
    background-color: var(--color-accent);
    color: white;
    padding: 6px 20px;
    border-radius: 6px;
    text-decoration: none;
}

nav a.menu-button:hover {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}


nav li:last-child a{
    background-color: var(--color-accent);
    color:white;
    border: 2px solid var(--color-accent);
}

nav li:last-child a:hover{
    background-color: transparent;
    color:var(--color-accent);
    border: 2px solid var(--color-accent);
    text-decoration:none;
}

.logo{
    position:fixed;
    z-index:1001;
    top:0;
    left:70px;
}

.logo img{
    width:80px;
}

.sticky{
    position:fixed;
    top:0;
    width:100vw;
    z-index:1000;
}

.sidebar {
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:350px;
    z-index: 999;
    background-color: #f0e4ddb2;
    backdrop-filter: blur(10px);
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.2);
    display:none;
    flex-direction:column;
    align-items:flex-start;
    justify-content: flex-start;
}

.sidebar.open {
    display: flex;
}

.sidebar li{
    width:100%;
    height: auto;
}

.sidebar a{
    width:100%;
    display:block;
    padding: 20px;
    font-family: 'Raleway-Medium', sans-serif;
    font-weight:400;
    font-size:1.5rem;
    text-align: center;
    text-decoration: none;
    
}

.sidebar li:first-child{
    margin-bottom:20px;
    margin-top:30px;
}

.menu-sidebar{
    display:none;
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
    display:flex;
    min-height: 100vh;
    padding-top: 80px;
    align-items: center;
    position: relative;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-bg-desktop {
    display: block;
}

.hero-bg-mobile {
    display: none;
}

.hero-content-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-mobile-bg {
    display: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero > * {
    position: absolute;
    z-index: 2;
}

.hero-mobile-bg > * {
    position: absolute;
    z-index: 2;
}

.hero-col {
    flex: 1;
    padding: 60px;
    display:flex;
    flex-direction: column;
    justify-content: center;
}
.hero-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-col p {
    font-size: 1.1rem;
    padding-right: 450px;
    max-width:1200px;
}

#hero {
    position: relative;
    overflow: hidden;
}

/* ============================================
   ÜBER-UNS SECTION
   ============================================ */

.ueberuns-section {
    background-color: white;
}

.ueberuns-row {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.ueberuns-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ueberuns-col img {
    width: 100%;
    max-height: 800px;
    object-fit: cover;
    border-radius: 0 0 500px 500px;
}

.ueberuns-col h2 {
    color: var(--color-accent);
    margin-bottom: 20px;
}

.ueberuns-col p {
    max-width: 700px;
}

.ueberuns-text {
    padding-right: 50px;
}

/* ============================================
   UNSER-STUDIO SECTION
   ============================================ */

.unserstudio-section {
    background-color: white;
    margin-top: -50px;
  padding-bottom: 80px;
}

.unserstudio-row {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.unserstudio-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.unserstudio-col img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 500px 500px 0 0;
}

.unserstudio-col h2 {
    color: var(--color-accent);
    margin-bottom: 20px;
}

.unserstudio-col p {
    max-width: 700px;
}

.unserstudio-text {
    padding-left: 50px;
}

/* ============================================
   STUDIOBILDER SECTION
   ============================================ */

.studiobilder-section {
    padding: 0px 60px;
    background-color: white;
    text-align: center;
}

.studiobilder-section h3 {
    margin-bottom: 40px;
}

.studiobilder-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.studiobilder-col {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.studiobilder-col img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
    object-position: center center;
}

/* ============================================
   REGIO / REGIONEN SECTION
   ============================================ */

#regio, .regio-section {
    padding: 80px 60px;
    background-color: var(--color-prim);
    text-align: center;
    padding-bottom:0;
}

#regio h3{
    margin-bottom: 30px;
}

.regio-row {
    display:flex;
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.regio-col {
    flex: 1;
    min-width: 350px;
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
    background-color: var(--color-sec);
}


.regio-col img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
}

.regio-col h4 {
    padding: 20px;
    margin: 0;
    font-size: 17px;
}

/* ============================================
   PAKETE SECTION
   ============================================ */

#paket, .paket-section {
    padding: 40px 60px;
    text-align: center;
}

#paket h3 {
    margin: 30px 0;
}

#paket .tag{
    padding:0;
}

.paket-row {
    display:flex;
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.paket-col {
    flex: 1;
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
    background-color: var(--color-sec);
    height: max-content;
}

.paket-col img {
     width: 100%;
    height: 350px;
    object-fit: cover;
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
}

.paket-col table {
    width: 100%;
    padding: 20px;
}

.paket-col h4 {
    margin: 0 0 10px 0;
    font-size: 17px;
}

.paket-col td {
    text-align: left;
}

.paket-table-td {
    font-size: 0.95rem;
    color: #555;
}

/* ============================================
   DIODE LASER SECTION
   ============================================ */

#d-laser, .d-laser-section {
    margin-top:80px;
    padding: 0px 0px;
    background-color: var(--color-sec);
}

#d-laser p{
    max-width: 800px;
}

.laser-row{
    display:flex;
    gap: 40px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.d-laser-col {
    flex: 1;
}

.laser-col-right{
    padding:80px 120px;
    padding-left:0;
}

.d-laser-col img {
    width: 100%;
    height: auto;
    border-radius: 0 0 800px 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

#faq, .faq-section {
    padding: 80px 60px;
    background-color: white;
}

.faq-row {
    display:flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-direction:row;
}

.faq-col {
    width:30%;
    min-width: 300px;
    padding:0px;
}

.faq-col:nth-child(2) {
  width: 75%;
}

.faq-col img {
    width: 100%;
    height: 500px;
    border-top-left-radius: 500px;
  border-top-right-radius: 500px;
  object-fit: cover;
}

.faq-col header {
    margin-bottom: 30px;
}


.accordion-header {
    width: 100%;
    background: white;
    color:black;
    border: none;
    border-bottom: 1px solid var(--color-accent);
    border-radius: 0px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17p;
    font-weight: 500;
    padding-left:0;
    padding-bottom: 12px;
}

.accordion button:hover {
  background-color: var(--color-sec);
  color: initial;
  border:none;
  border-bottom: 1px solid var(--color-accent);
}


.accordion-header svg {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right:10px;
}

.accordion-panel {
    background: white;
    padding: 20px 0px;
    border-bottom: 1px solid var(--color-accent);
}

.accordion-panel ul {
    padding-left: 20px;
}

.accordion-panel li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.accordion-panel p{
    padding-top:0;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--color-prim);
    color: black;
    padding: 20px;
}

.footer-row {
    padding: 50px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex-basis: 25%;
    padding: 10px 0px 0px 60px;
}

.footer-col h2 {
    font-family: Raleway-light, sans-serif;
    font-weight: 600;
    color: black;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
    color: black;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    display: flex;
    padding: 0;
}

.footer-col a {
    text-decoration: underline!important;
}

.footer-col a:hover {
    text-decoration: underline!important;
    text-decoration-thickness: 2px!important;
}

.footer-social {
    margin-top: 15px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-with-text {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.social-link-with-text svg {
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid black;
}

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

.footer-nav-col ul li:last-child a{
    background-color: var(--color-accent);
    color:white!important;
    padding: 6px 20px;
    border:2px solid var(--color-accent)!important;
    border-radius: 6px;
    border-color: transparent;
    font-family: inherit;
    font-size:18px;
    text-decoration:none!important;
    display:inline-block;
    width:max-content;
}

.footer-nav-col ul li:last-child:hover{
    background-color: transparent;
    color: var(--color-accent);
    border: none;
}

/* ============================================
   PREISLISTE PAGE
   ============================================ */

.c-price {
    padding-left: 150px;
    padding-right: 150px;
    padding-top: 50px;
    text-align: center;
}

#price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.preisliste-row {
    margin-top: 50px;
    padding: 20px;
    padding-top: 80px;
    border: 1px solid var(--color-accent);
    border-top-left-radius: 400px;
    border-top-right-radius: 400px;
    width: 600px;
}

.preisliste-table {
    display: inline;
}

.preisliste-table:first-child {
    padding-top: 15px;
}

#price table {
    width: 100%;
    text-align: left;
    padding: 40px;
    padding-top: 50px;
    padding-bottom: 0px;
}

#price table .table-h2 {
    font-size: 1.8rem;
    color: black;
}

.preisliste-table td {
    border-top: 1px solid var(--color-accent);
    padding-top: 10px;
    padding-bottom: 10px;
}

#price tr td:nth-child(1) {
    width: 75%;
}

#price tr td:nth-child(2) {
    text-align: right;
}

/* ============================================
   RESPONSIVE PREISLISTE
   ============================================ */

@media (max-width: 1024px) {
    .c-price {
        padding-left: 80px;
        padding-right: 80px;
    }
    .preisliste-row {
        width: 100%;
        border-top-left-radius: 500px;
        border-top-right-radius: 500px;
    }
}

@media screen and (max-width: 850px) {
    .c-price{
        padding:20px;
        padding-top:100px;
    }
    .preisliste-row {
        margin:0;
    }
}

@media screen and (max-width: 693px) {
    .preisliste-row{
        width:100%;
    }
    
    #price tr td:first-child{
        width: 80%;
    }
    
    .c-price{
        background-image:none;
    }
}

@media screen and (max-width: 500px) {
    #price table {
        padding:0;
        padding-top: 50px;
    }

    #price h1 {
        font-size: 2.5rem;
    }
    #hero h1 {
  font-size: 22vw;
  margin-bottom: -2vw;
}
#hero h2 {
  font-size: 9vw;
}

}

@media screen and (max-width: 460px) {
    .preisliste-row{
        padding:0;
        padding-top:75px;
    }

    #price table{
        padding:15px;
        padding-top:50px;
        font-size: 16px;
    }
}

/* ============================================
   UMZUGS-BANNER (KONTAKTSEITE)
   ============================================ */

#moving{
    border: 1px solid var(--color-accent);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 40px;
}

.moving-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
}

.moving-col {
    width: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.moving-col h2 {
    text-align: center;
}

.moving-col p {
    text-align: center;
}

.moving-map iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    padding: 0;
}

.moving-map p {
    padding-top: 12px;
    padding-bottom: 0;
}

.moving-tag {
   background: var(--color-accent);
   color:white;
   padding:2px 4px;
   font-weight:bold;
    margin-bottom: 20px;
}

.moving-highlight{
    font-weight:bold;
text-decoration:underline;
}

@media screen and (max-width: 1024px) {
    .moving-row {
        flex-direction: column;
    }
    .moving-col {
        width: 100%;
    }
    .moving-map iframe {
        min-height: 260px;
    }
}

@media screen and (max-width: 460px) {
    #moving {
        padding: 10px;
    }
    .moving-row {
        gap: 10px;
    }
}

/* ============================================
   KONTAKTSEITE
   ============================================ */

#contact {
    padding: 100px 70px;
    background-color: var(--color-prim);
    background-image: url('assets/bgimg/wedel4.PNG');
    background-size: cover;
    background-position: start start;
    background-repeat: no-repeat;
}

#contact > section {
    max-width: 1400px;
    margin: 0 auto;
}

#contact h3{
    font-size: 1.8rem;
}

.contact-anfahrt p{
   padding-top:0;
}

.contact-row {
    display: flex;
    width: 100%;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.contact-col {
    width: 50%;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.contact-col > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-col h2 {
    margin-bottom: 0;
}

.contact-col h3 {
    margin-top: 30px;
    margin-bottom: 16px;
}


.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.contact-info-block:last-of-type {
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.contact-info-block a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-block a:hover {
    color: var(--color-accent);
}


.contact-oeffnungszeiten {
    line-height: 1.9;
}

.contact-anfahrt h3 {
    margin-bottom: 10px;
}

.contact-anfahrt p {
    line-height: 1.8;
}


.contact-map {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.contact-map iframe {
    width: 100%;
    flex: 1;
    min-height: 340px;
    border-radius: 8px;
    border: 0;
    display: block;
}

.contact-map-placeholder {
    width: 100%;
    flex: 1;
    min-height: 340px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.03);
    padding: 20px;
    text-align: center;
}

.contact-gallery {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 30px;
    gap:10px;
}

.gallery-tile {
    flex: 0 0 calc(33.333% - 10px);
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


@media screen and (max-width: 1024px) {
    .contact-row {
        flex-direction: column;
        gap: 20px;
    }
    .contact-col {
        width: 100%;
    }
    .gallery-tile {
        flex: 0 0 calc(33.333% - 8px);
    }
    .moving-row {
        flex-direction: column;
    }
    .moving-col {
        width: 100%;
    }
    .moving-map iframe {
        min-height: 260px;
    }

    .contact-gallery {
    gap:0px;
}
}

@media screen and (max-width: 693px) {
    #contact {
        padding: 80px 20px 40px;
    }
    .contact-map iframe {
        height: 260px;
    }
    .gallery-tile {
        flex: 0 0 calc(50% - 5px);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media screen and (max-width: 850px) {
   
    p, span, div, a, button {
        font-size:16px;
    }

    h2, h3{
        font-size:2rem;
    }

    h4{
        font-size:1rem!important;
    }
   
    #hero {
        padding-top: 100px;
        padding-bottom: 40px;
        flex-direction: column;
        top:-100px;
    }
    
    .hero-bg-desktop {
        display: none;
    }
    
    .hero-bg-mobile {
        display: block;
    }

    .hero-content-container{
        bottom: 0;
    }

     .hero-col:first-child {
    padding-bottom: 50px;
  }
    
    .hero-col {
        padding: 30px 20px;
        text-align: center;
        background-color: #f0e4dd;
        border-radius: 500px 500px 0 0;
        justify-content: start;
        align-items: center;
        top: 40vh;
    }
    
    .hero-col header {
        padding-left: 30px;
        padding-right: 30px;
        margin-top:40px;
    }
    

    .hero-col p {
        padding: 20px 0;
    }
    
    .hero-col, .ueberuns-row, .unserstudio-row, .faq-row {
        flex-direction: column;
    }
    
    .ueberuns-col, .unserstudio-col, .faq-col, .d-laser-col {
        order: unset;
    }
    
    nav ul {
        justify-content: end;
        flex-wrap: wrap;
    }
    
    nav li:first-child {
        margin-right: 0;
        width: 100%;
        justify-content: center;
    }
    
    .logo {
        position: fixed;
        left: 0;
        display: flex;
        width:max-content;
        text-align: start;
        margin-bottom: 20px;
    }
    
    .logo img {
        width: 45px;
    }

    nav ul li.hom {
        display: none;
    }
    
    nav ul li.menu-sidebar {
        display: block;
    }

    .menu-sidebar a{
        background-color:initial!important;
        border:none!important;
    }

    .sticky {
        width: 100vw;
    }

    nav #menu-hauptmenue-1{
        display: none;
    }
    
    nav ul li.hom {
        display: none;
    }
    
    nav ul li.menu-sidebar {
        display: block;   
    }
    
    .logo {
        left: 10px;
    }

    nav li:last-child a {
    background-color: initial;
    color: initial;
    border: initial;
    }
    nav li:last-child a:hover {
    border: initial;
    }

    .ueberuns-text {
        padding-right: 0px;
        padding: 0 15px;
    }

    .unserstudio-section{
    margin-top: 0px;
    padding-bottom: 0px 15px!important;
    }

    .unserstudio-text {
        padding-left: 0px;
        padding: 0 15px;
    }

    .laser-row{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:0;
    }
    .laser-col-right{
        padding:0px 15px;
        padding-bottom:20px;
    }

    #studiobilder, .studiobilder-section {
        padding-top: 0;
    }

    #studiobilder, .studiobilder-section {
      padding: 0px 15px;
      padding-bottom: 0;
      background-color: white;
    }

    .studiobilder-section h3 {
        display: none;
    }

    .studiobilder-row {
    flex-wrap: initial;
    flex-direction: column;
        }

    .studiobilder-col:not(:first-child) {
      margin-top: -70px;
     }

     .studiobilder-col img {
        height: 350px;
        border: 5px solid white;
        }

        .studiobilder-col {
    flex: 1;
    min-width: initial;
    max-width: initial;
    }

    #regio, .regio-section, #paket, .paket-section {
  padding: 80px 15px;

    }

    .regio-row, .paket-row{
        display:grid;  
        grid-template-columns: 1fr 1fr;
        gap: 20px; 
    }

    .regio-col{
        min-width:initial;
    }

    .regio-col img{
        height: 350px;
    }

    #faq{
        padding:0;
        padding-bottom:40px;
    }

    .faq-row{
        gap: 20px;
    }

    .faq-col {
        width: 100%;
        padding: 0;
        }

    .faq-col img {
        width: 100%;
        height: 300px;
        border-radius: 0 0 500px 0;
     }
     .faq-col:nth-child(2) {
        width: 100%;
        padding:0px 15px;
        }
    .faq-col .tag{
        padding-top:0;
    }

        .contentinfo {
         padding: 30px 20px 30px 20px;
        }

    .footer-row {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        }

    .footer-col {
        flex-basis: 50%;
        display: flex;
        flex-direction: column;
        text-align: left;
    padding:0;
        padding-bottom: 30px;
    }

    .footer-col a {
        margin-bottom: 5px;
        font-size:17px;
    }
    .footer-row p {
        font-size: 17px;
        padding:0px 0;
    }

    .footer-social {
    margin-top: 0px;
    }
    .social-link-with-text{
        margin:0;
    }
    .social-link-with-text span {
  font-size: 17px;
}
}
    
@media screen and (max-width: 550px) {
   

    p{
        line-height:1.4!important;
    }

    nav {
        padding:0;
    }
   
    #hero {
        padding-top: 100px;
        padding-bottom: 30px;
        top:0;
        min-height:initial;
        height:115vh;
    }

    .hero-bg-container {
    top: -50px;
    }

        .ueberuns-col h2, .unserstudio-col h2 {
        margin-bottom: 0px;
        padding-top: 20px;
        }

        .hero-col:first-child {
        padding-left: 15px;
        }

    .hero-col {
        padding: 20px 15px;
        top:35%;
    }

     .hero-col header {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 20px;
    }

    .hero-col p {
        padding: 20px 0;
    }

    .logo {
        left: 15px;
        top: 0px;
    }

    .sidebar {
        position: absolute;
        width: 100%;
        padding-right: 0;
    }

    .ueberuns-col img{
        height: 550px;
        padding: 0px;
        margin-bottom: -40px;
    }
    
    .unserstudio-col img {
        height: 350px;
        padding: 0px 15px;
        margin-bottom: -40px;
    }

     .ueberuns-text, .unserstudio-text  {
        padding: 0 15px;
    }


    .unserstudio-section {
    padding-bottom: 0px;
    }

        .unserstudio-col p {
        padding-bottom:0;
        }

        .unserstudio-row {
            gap: 20px;
            }


    #faq{
        padding: 0;
        padding-bottom: 40px;
    }
   
.faq-col:nth-child(2) {
        padding:0px 15px;
        }
    .regio-col img{
        height: 200px;
    }

    .paket-row {
  display: flex;
  flex-direction:column;
}
    .paket-col {
  min-width: initial;
    }

    .regio-col h4{
        text-align:left;
        padding:5px;
        padding-left:8px;
        padding-bottom:8px;
    }

    .footer-row{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-col{
        flex-basis: 100%;
        padding: 20px 0px;
  }
    .footer-col:not(:first-child) {
    border-top: 1px solid var(--color-accent);
  }

  .footer-bottom {
  text-align: center;
  padding-top: 10px;
  margin-top: 0px;
  border-top: 1px solid black;
}
    .paket-col h4 {
    margin: 0 0 0px 0;
    }

    .tag{
        padding-bottom: 0px;
    }

}

@media screen and (max-width: 600px) {
    .hero-col, #regio, #paket, #d-laser, footer, .c-price {
        padding: 40px 15px;
        padding-bottom:0;
    }

    #d-laser{
        padding:0;
    }
    
    .footer-row {
        flex-direction: column;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

#cookie, .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-accent);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

#cookie p, .cookie-banner p {
    margin: 0;
    padding: 0;
}

#cookie button, .cookie-banner button {
    background: white;
    color: var(--color-accent);
}

#cookie button:hover, .cookie-banner button:hover {
    background: var(--color-sec);
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
    position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 999;
  background-color: #f0e4ddb2;
  backdrop-filter: blur(10px);
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sidebar.open {
    display: flex;
}

.sidebar li:first-child {
  margin:10px 0;
}

.sidebar a {
    padding: 15px 0;
    text-decoration: none;
    color: var(--color-text);
}

.sidebar a:hover {
    color: var(--color-accent);
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* ============================================
   MOVE POPUP
   ============================================ */

.move-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2000;
}

.move-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 680px);
    background: var(--color-prim);
    color: #000;
    border: 2px solid var(--color-accent);
    border-radius: 16px;
    padding: 24px;
    z-index: 2001;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    text-align: center;
}

.move-popup h2 {
    margin: 20px 0 0 0;
}

.move-popup p:not(.move-tag) {
    padding-top: 16px;
    padding-bottom: 16px;
}

.move-popup a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

.move-popup button {
    min-width: 44px;
    min-height: 44px;
}

.move-popup button:focus-visible {
    outline: 4px dashed var(--color-accent);
    border: 1px solid #fff;
}

body.move-popup-open {
    overflow: hidden;
}

.move-tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-prim);
    font-weight: bold;
    padding: 1px 12px;
    border-radius: 2px;
    margin-bottom: 16px;
}

@media screen and (max-width: 546px) {
    .move-popup {
        padding: 20px;
        width: min(94vw, 680px);
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   STANDARD SEITE (page.php)
   ============================================ */

#page {
    padding: 120px 70px 60px;
    background-color: var(--color-prim);
    min-height: 60vh;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}

.page-container h1 {
    margin-bottom: 40px;
    text-align: left;
    font-size: 3rem;
}

.page-container h2 {
    margin-bottom: 40px;
    text-align: left;
}

.page-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.page-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.page-content a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

@media screen and (max-width: 768px) {
    #page {
        padding: 100px 15px 40px;
    }
    .page-container {
        padding: 30px 0px;
    }
    .page-container h1 {
        font-size: 2rem;
    }
    .page-content {
        font-size: 1rem;
    }
}

/* ============================================
   IMPRESSUM & DATENSCHUTZ
   ============================================ */

.impressum-table td {
    padding-top: 10px;
    padding-bottom: 10px;
}

.impressum-table h1{
  text-align:center;
}

.impressum-table table {
  width: 100%;
  text-align: left;
  padding: 15px;
  padding-top: 50px;
  padding-bottom: 0px;
}

#ds {
    background-color: var(--color-prim);
    padding: 100px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#ds h2 {
    font-size: 2rem;
    padding-top: 20px;
}

#ds h3 {
    font-size: 1.6rem;
    padding-top: 20px;
}

#ds a {
    text-decoration: underline;
}

#ds ul {
    list-style-position: inside;
    padding-bottom: 20px;
}

#ds ul li::marker {
    color: var(--color-accent);
}

/* ============================================
   COOKIE BANNER
   ============================================ */

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-prim);
    border-top: 3px solid var(--color-accent);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.cookie-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#cookieBanner h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Raleway-Medium', sans-serif;
    color: var(--color-accent);
}

#cookieBanner p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

#cookieBanner p a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-decline {
    padding: 10px 20px;
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    min-height: 44px;
    transition: background 0.2s, color 0.2s;
}

.btn-cookie-decline:hover {
    background: var(--color-accent);
    color: var(--color-prim);
}

.btn-cookie-decline:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

.btn-cookie-accept {
    padding: 10px 20px;
    background: var(--color-accent);
    color: var(--color-prim);
    border: 2px solid var(--color-accent);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    min-height: 44px;
    transition: opacity 0.2s;
}

.btn-cookie-accept:hover {
    opacity: 0.85;
}

.btn-cookie-accept:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

.cookie-settings-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.cookie-settings-link:hover {
    color: var(--color-accent);
}


@media screen and (max-width: 693px) {
    #cookieBanner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .cookie-banner-buttons {
        width: 100%;
    }

    .btn-cookie-decline,
    .btn-cookie-accept {
        flex: 1;
        text-align: center;
    }
}


.mobile-nav-btn {
    display: none; 
}

@media screen and (max-width: 850px) {
    .mobile-nav-btn {
        display: block;
        position: fixed;
        left: 51%;
        top: 27px;
        transform: translate(-50%, -50%);
        z-index: 998;
        background-color: var(--color-accent);
        color: white;
        border: 2px solid var(--color-accent);
        padding: 4px 20px;
        border-radius: 6px;
        font-family: inherit;
        font-size: 18px;
        text-decoration: none !important;
        cursor: pointer;
    }

    .mobile-nav-btn:hover {
        background-color: transparent;
        color: var(--color-accent);
    }

    .sidebar li:last-child {
    display:none;
}
}
