
:root{
    --gold:#d6a54a;
    --gold-light:#e6c67d;
    --dark:#0b0b0b;
    --dark2:#111111;
    --text:#f3f3f3;
    --text-soft:#cfcfcf;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat', sans-serif;
    background:#000000;
    color:var(--text);
    line-height:1.7;
}

a {
	color:var(--gold);
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

section{
    padding:90px 0;
}

h1,h2,h3{
    font-family: 'Open Sans', sans-serif;
	/*font-family:'Cormorant Garamond', serif;
    font-weight:600;*/
}

h1{ 
	color:var(--gold);
}
h2{
    font-size:2rem;
    color:var(--gold);
    text-align:center;
    margin-bottom:20px;
}
h3 {
    font-size:1.7rem;
}

.section-intro{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
    color:var(--text-soft);
}

/* NAVIGATION */

nav{
    position:sticky;
	display: flex;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(0,0,0,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(214,165,74,.2);
}

.nav-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0px 0;
}

.nav-logo{
    color:var(--gold);
    font-weight:600;
    letter-spacing:2px;
	max-width:150px;
	line-height: 1;
}

#nav-menu {
	display: flex;
}
	
nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

nav a:hover{
    color:var(--gold);
}


#nav-burger {
	display: none;
	margin:20px;
}

.nav-burger-icon-container {
  height: 1.7em;
  width: 1.7em;
  position: relative;
  cursor: pointer;
}

.nav-burger-icon,
.nav-burger-icon:before,
.nav-burger-icon:after {
  content: '';
  position: absolute;
  height: 3px;
  width: 1.7em;
  background: white;
  transition: all .2s ease;
}

.nav-burger-icon {
  top: 0.75em
}

.nav-burger-icon:before {
  top: -0.55em
}

.nav-burger-icon:after {
  top: 0.55em
}

.nav-burger-active .nav-burger-icon-container {
  color:lime;
}

.nav-burger-active .nav-burger-icon {
  background: transparent;
  transform: rotate(-135deg)
}

.nav-burger-active .nav-burger-icon:before,
.nav-burger-active .nav-burger-icon:after {
  top: 0
}

.nav-burger-active .nav-burger-icon:before {
  transform: rotate(90deg)
}


/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
	/*
    background:
    radial-gradient(circle at 25% 40%, rgba(255,255,255,.15) 0%, transparent 18%),
    radial-gradient(circle at 75% 30%, rgba(214,165,74,.25) 0%, transparent 20%);
	*/
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-logo{
    max-width:650px;
    width:100%;
    margin-bottom:30px;
}

.hero h1{
    font-size:2.6rem;
    margin-bottom:20px;
}

.hero p{
    max-width:800px;
    margin:auto;
    color:var(--text-soft);
    font-size:1.15rem;
}

.btn{
    display:inline-block;
    margin-top:40px;
    padding:14px 34px;
    border:1px solid var(--gold);
    color:var(--gold);
    text-decoration:none;
    transition:.3s;
}

.btn:hover{
    background:var(--gold);
    color:black;
}

/* LEISTUNGEN */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:var(--dark2);
    border:1px solid rgba(214,165,74,.2);
    border-radius:20px;
    padding:35px;
    text-align:center;
}

.icon{
    font-size:2.5rem;
    color:var(--gold);
    margin-bottom:15px;
}

.card h3{
    color:var(--gold);
    margin-bottom:10px;
}

/* MUSIK */

.music{
    background:#090909;
}

.music-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.music-image{
    min-height:420px;
    border-radius:25px;
    background:
    linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
    url('ich.jpg?auto=format&fit=crop&w=1200&q=80');
    background-size:cover;
    background-position:center;
	position: relative;
}

.music-copyright {
	position: absolute;
	bottom: -28px;
	font-size:0.7rem;
}

.music-text ul{
    margin-top:20px;
    padding-left:20px;
}

.music-text li{
    margin-bottom:12px;
}

/* USP */

.usp-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.usp-item{
    padding:25px;
    border-left:3px solid var(--gold);
    background:#0d0d0d;
}

/* PREIS */

.price{
    text-align:center;
}

.price-box{
    max-width:600px;
    margin:auto;
    padding:50px;
    border-radius:25px;
    border:1px solid rgba(214,165,74,.3);
    background:#0c0c0c;
}

.price-number{
    font-size:4rem;
    color:var(--gold);
    font-weight:600;
}

/* KONTAKT */

.contact{
    background:#090909;
}

.contact-box{
    text-align:center;
    max-width:700px;
    margin:auto;
}

.contact-box p{
    margin-bottom:12px;
}

/* FOOTER */

footer{
    border-top:1px solid rgba(214,165,74,.2);
    text-align:center;
    padding:30px;
    color:#999;
}



@media(max-width:900px){
	
	#nav-burger {
		display: block;
		margin-right: 20px;
	}
	#nav-menu {
		display: none;
	}

    nav ul{
        gap:15px;
        font-size:.9rem;
    }

    .music-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.8rem;
    }

    h2{
        font-size:2.3rem;
    }
}


/* ToTop Button */
#btnToTop {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  
  outline: none; /* Remove outline */
  background-color: black; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  border-color: var(--gold);
  font-size: 18px; /* Increase font size */
}

#btnToTop:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}