:root {
  --primary: #6a0dad;        /* Lila Akzent */
  --primary-light: #9b59d0;
  --dark: #222;
  --light: #f8f6fb;
  --text: #444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Inter', sans-serif;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */

.header {
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: 0.3s;
}

.logo_text{
  flex: fit-content;
  font-size: 1.5em;
  color: #6b14b8;
  font-weight: bold;
}

.logo_img img{
	width:50%;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

nav {
  display: flex;
  gap: 2rem;
  transition: 0.3s;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: var(--primary);
}

/* Burger */

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 25px;
  background: var(--primary);
  margin-bottom: 4px;
  border-radius: 5px;
}

/* Hero */

.hero {
  background: linear-gradient(rgba(106,13,173,0.6), rgba(106,13,173,0.6)),
              url('images/Kolumbarium_2.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--primary-light);
  color: white;
}

/* Sections */

.section {
  padding: 4rem 0;
}

.bg-light {
  background: var(--light);
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

/* Galerie */

.gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Cards */

.cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  flex: 1 1 250px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card .btn-primary{
  background: var(--primary-light);
  color: white;
}

.card .btn-primary:hover {
  background: var(--light);
  color: var(--primary-light);
}

/* Contact */

.contact-box {
  text-align: center;
  font-size: 1.0rem;
}

/* Footer */

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 1.5rem 0;
}

footer a{
	color:black;
	text-decoration:none;
}

.container_footer {
	display:grid;
	grid-template-columns: 1fr 1fr;
}

/* Responsive */

@media (max-width: 800px) {

  nav {
    position: absolute;
    top: 115px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
	transition: 0.3s;
  }

  nav.active {
    display: flex;
	transition: 0.3s;
  }

  .burger {
    display: flex;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .cards {
    flex-direction: column;
  }
  .container_footer {
	grid-template-columns: 1fr;
}
.gallery {
  grid-template-columns: repeat(2, 1fr);
}
}