/*==========================================================
Theme Name: Latenight Sound
Theme URI: https://lnstudio.kymadesign.ch/
Author: Fabienne Zahnd
Author URI: https://lnstudio.kymadesign.ch/
Description: Theme Tonstudio, Musicstudio, Soundstudio
Version: 1.0
==========================================================*/

/* ==== SCHRIFT IMPORT ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* =========================
   ROOT VARIABLEN
========================= */
:root {
    --hell: #F3F4F6;
    --dunkel: #121212;
    --turkis: #00A1AA;
    --turkis_hover: #00A1AA;
    --background: #0F1317;
    --abrunden: 0.3rem;
    --akzent: #00A1AA;
}

/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--background);
    color: var(--hell);
    line-height: 1.6;
}

/* Links */
a {
    color: var(--akzent);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--hell);
}

/* Container */
#container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}
main{
	/*border:3px dotted green;*/
	padding: 2rem;
	margin-top:1rem;
	
}


/* =========================
   HEADINGS
========================= */
h1 { font-size: 2.5rem; color: var(--akzent); text-align: center; }

h2 { font-size: 2rem; color: var(--akzent); text-align: center; }
h3 { font-size: 2.2rem; color: var(--akzent); text-align: center; }
h4 { font-size: 1.5rem; color: var(--akzent); text-align: center; }
h5 { font-size: 1rem; color: var(--hell); text-align: center; }
p { font-size: 1rem; color: var(--hell); text-align: center; }

/* Startseiten-Titel ausblenden */
.home .entry-title,
.home h2 {
    display: none !important;
}
/* =========================
   HEADER
========================= */
header.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;

    background: rgba(15, 19, 23, 0.5); /* durchsichtig aber sichtbar */
    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(0, 161, 170, 0.12);
    z-index: 999;

    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

header.site-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 70%;
    height: 2px;
    transform: translateX(-50%);
    background: var(--turkis);
    opacity: 0.5;
    filter: blur(6px);
}

/* Logo */
header .logo img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}
header .logo img:hover { transform: scale(1.1); }

/* Navigation */
header .navigation a {
    position: relative;
    font-size: 1.1rem; /* größer */
    font-weight: 500;
    letter-spacing: 0.04em;

}

header .navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--turkis);
    transition: width 0.3s ease;
}

header .navigation a:hover::after {
    width: 100%;
}
header .navigation > ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

header .navigation li {
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: var(--abrunden);
    cursor: pointer;
    transition: all 0.3s ease;
}

header .navigation li:hover { background-color: var(--turkis_hover); }

header .navigation li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background);
    min-width: 200px;
    display: none;
    flex-direction: column;
    padding: 0.5rem 0;
    border-radius: var(--abrunden);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

header .navigation li:hover > ul { display: flex; }

header .navigation li.has-submenu::after {
    content: "▼";
    font-size: 0.6rem;
    margin-left: 0.3rem;
    color: var(--akzent);
}

/* Social Icons */
header .social-icons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
header .social-icons a {
    color: var(--akzent);
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}
header .social-icons a:hover { transform: scale(1.2); color: var(--turkis_hover); }

/* Hamburger */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 4rem;
    background: none;
    border: none;
    color: var(--hell);
    transition: transform 0.3s ease, color 0.3s ease;
}
.menu-toggle:hover { transform: scale(1.2); color: var(--akzent); }
/* =========================
   MODERNER COVER / HERO
========================= */
.wp-block-cover {
    position: center;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
     text-align: left !important;
}

/* Dunkler Overlay Effekt */
.wp-block-cover::before {
    content: "";
    position: center;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.75)
    );
}

/* Text im Cover */
.wp-block-cover__inner-container {
    position: center;
    z-index: 2;
     text-align: center !important;
    padding: 1rem;
    animation: heroFade 1.2s ease forwards;
}

/* Animation */
@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================
   SECTIONS
========================= */
section {
    background-color: var(--background);
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 10px;
    box-shadow: 0px 6px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
/* =========================
   clumns
========================= */
.studio-columns {
    display: block;
}

.studio-columns .wp-block-column {
    width: 100%;
    margin-bottom: 3rem;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
        min-height: 100%;
}

.studio-columns .wp-block-column:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .studio-columns {
        flex-direction: column;
        gap: 3rem;
    }
}
/* =========================
   BUTTONS
========================= */
.wp-block-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.wp-block-buttons a {
    padding: 6px 12px;
    background: var(--akzent);
    color: #000;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}
.wp-block-buttons a:hover { background: whitesmoke; color: grey; transform: scale(1.04); }

/* =========================
   LISTS
========================= */
.wp-block-list { padding-left: 1.5rem; margin-bottom: 1rem; line-height: 1.6; }
.wp-block-list li { margin-bottom: 0.5rem; }

/* =========================
   FORMS
========================= */
input[type=text], input[type=email], input[type=date],
select, textarea, button[type=submit] {
    display: block;
    width: 100%;
    max-width: 500px;
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: var(--abrunden);
    border: 1px solid var(--akzent);
    background: var(--hell);
    font-size: 15px;
    transition: all 0.2s ease;
}

button[type=submit] {
    background: var(--akzent);
    color: #fff;
    cursor: pointer;
}
button[type=submit]:hover { background: var(--hell); transform: translateY(-1px); }

/* =========================
   Antwort auf Formular
========================= */
.booking-success {
    text-align: center;
    margin-top: 30px;
}

.booking-success-text {
    margin-bottom: 15px;
     color: var(--akzent);
}

.studio-name {
    font-weight: bold;
    letter-spacing: 2px;
}

/* =========================
Bilder
========================= */

.copyright-hover {
  position: relative;
}

.copyright-hover::after {
  content: "© Fabienne Zahnd";
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 5px 8px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.copyright-hover:hover::after {
  opacity: 1;
}

/* =========================
   FOOTER
========================= */
.footer {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

.footer.footer--neon {
  position: relative;
  width: 100%;
  min-height: 200px;
  background:linear-gradient(180deg, rgba(15,19,23,0.95) 0%, rgba(20,24,30,0.95) 100%);
  color: #B0B8C2;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

/* Neon Line oben */
.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 2px;
  transform: translateX(-50%);
  background: #00A1AA;
  box-shadow: 0 0 20px rgba(0, 161, 170, 0.9);
  animation: pulse 2.5s infinite alternate;
}

/* Pulsierender Glow unten */
.footer.footer--neon::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  width: 500px;
  height: 120px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,161,170,0.25), transparent 70%);
  filter: blur(40px);
  animation: pulse 3s infinite alternate;
     pointer-events: none;
  z-index: 0;
}

/* Pulse Animation */
@keyframes pulse {
  0% { opacity: 0.5; box-shadow: 0 0 20px rgba(0,161,170,0.5); }
  50% { opacity: 0.85; box-shadow: 0 0 35px rgba(0,161,170,0.85); }
  100% { opacity: 1; box-shadow: 0 0 50px rgba(0,161,170,1); }
}

/* Layout */
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

/* Left – Brand */
.footer-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #F3F4F6;
  letter-spacing: 0.05em;
}

.footer-title span {
  color: #00A1AA;
}

.footer-claim {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.85;
}

/* Center – Navigation */
.footer-center {
  display: flex;
  gap: 2rem;
}

.footer-center a {
  color: #B0B8C2;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-center a:hover {
  color: #00A1AA;
}

/* Right – Kontakt & Social */
.footer-right {
  text-align: right;
}

.footer-mail {
  display: block;
  margin-bottom: 0.75rem;
  color: #F3F4F6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-mail:hover {
  color: #00A1AA;
}

.footer-social a {
  margin-left: 1rem;
  font-size: 1.3rem;
  color: #B0B8C2;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #00A1AA;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #222D39;
  text-align: center;
  padding: 1.2rem;
  font-size: 0.75rem;
  opacity: 0.7;
    position: relative;
  z-index: 2;
}

/* =========================
   PULSE ANIMATION
========================= */
@keyframes pulse {
    0% { opacity: 0.5; box-shadow: 0 0 20px rgba(0,161,170,0.5); }
    50% { opacity: 0.85; box-shadow: 0 0 35px rgba(0,161,170,0.85); }
    100% { opacity: 1; box-shadow: 0 0 50px rgba(0,161,170,1); }
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media screen and (max-width: 1024px) {

    /* HEADER */
    header.site-header {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 1.5rem 1rem;
    }
    .logo { order: 1; margin-bottom: 1rem; }
    .social-icons { order: 2; margin-bottom: 1rem; justify-content: center; width: 100%; }
    .menu-toggle { order: 3; display: block; margin-bottom: 1rem; }

    /* NAVIGATION */
    #menu-hauptmenu {
        order: 4;
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--background);
        padding: 1rem 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    #menu-hauptmenu.active { display: flex; }
    #menu-hauptmenu li { padding: 0.8rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
    #menu-hauptmenu li a { color: var(--hell); display: block; }

    /* Dropdowns */
    #menu-hauptmenu .menu-item-has-children > ul { display: none; flex-direction: column; padding-left: 1rem; }
    #menu-hauptmenu .menu-item-has-children.active > ul { display: flex; }
    #menu-hauptmenu .menu-item-has-children > a::after { content: " ▼"; float: right; font-size: 0.7rem; transition: transform 0.3s ease; }
    #menu-hauptmenu .menu-item-has-children.active > a::after { transform: rotate(180deg); }

    /* HERO */
    .hero-full { height: 40vh; padding: 1rem; }
    
    /* HERO RESPONSIVE */
.wp-block-cover {
    min-height: 60vh;
    padding: 2rem 1rem;
}

.wp-block-cover__inner-container {
    padding: 1.5rem;
}

.wp-block-cover h1 {
    font-size: 1rem;
}

.wp-block-cover p {
    font-size: 1rem;
}

    /* SECTIONS */
    section { padding: 1.5rem; margin: 1rem 0; }

    /* FORMS */
    input[type=text], input[type=email], input[type=date],
    select, textarea { width: 100%; }

    /* FOOTER */
    /* FOOTER MOBILE FIX */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-right,
.footer-center {
    text-align: center;
    align-items: center;
    flex-direction: column;
}

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

    @media (max-width: 768px) {

    .wp-block-cover p.has-text-align-center {
        font-size: 32px !important;
    }

}
    
    
}