:root {
  --bg: #0d0d0d;
  --text: #ffffff;
  --muted: #9f9f9f;
  --accent: #b0ff43;
  --card: #141414;
  --radius: 20px;
  --max: 1200px;
  --font: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
}

body {
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: black;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-left img {
    width: 35px;   
    height: 35px;
    object-fit: contain;
}

.nav-left span {
    font-weight: bold;
    color: #7FFF00; 
}

.nav-right {
    display: flex;    
    gap: 190px;
}

.nav-right a {
    text-decoration: none;
    color: #7FFF00;
    font-weight: 600;
}

#minicircle {
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    width : 10px;
    height : 10px;
    position : absolute;
    z-index: 99999;
    border-radius: 50%;
    background-color: #fff;
}

#main {
  width: 100%;
  overflow-x: hidden;
}

#hero {
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bounding {
    width : fit-content;
    overflow : hidden;
    
}

.bounding .boundingelem {
    transform : translateY(100%);
}
.bayerische {
  height: 100vh;
  width: 100%;
  background: url('bcg.png') no-repeat center center/cover;
  background-color: #000;   
  position: relative;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bayerische::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35); 
  z-index: 1;
}


.bayerische h1,
.bayerische h2,
.bayerische p {
    position: relative;
    z-index: 2;
}

.bayerische h1 {
    font-size: 5rem;
    font-weight: 900;
}

.bayerische h2 {
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px white;
    margin-top: 10px;
}

.bayerische p {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
}

#nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  color : #7fff00;
}
#nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
}
#nav h4 {
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  opacity : 0.7;
}

#nav h2{
    opacity : 0.7;
}

#heading {
  margin-top: 3rem;
}
#heading h1 {
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
}
.blocktext {
  margin-left: 8rem;
  width : fit-content;
}
#secondh1 {
  color: transparent;
  -webkit-text-stroke: 1px var(--text);
}

#chotiheading {
  margin-top: 2rem;
}

#chotiheading h5 {
  font-weight: 400;
  margin-bottom: 0.3rem;
}

#model {
    color : #7fff00;
}

#herofooter {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color : #fff;
}

#herofooter a {
  text-transform: uppercase;
  text-decoration: none;
  color : var(--muted);
  font-size: 0.9rem;
}

#hero h4 {
    font-weight : 700;
}
#herofooter a i {
  margin-left: 0.3rem;
}
#iconset {
  display: flex;
  gap: 0.5rem;
}
.circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.circle i {
  font-size: 1.1rem;
}

#second {
  padding: 5rem 2rem;
  display: grid;
  gap: 2rem;
}

#second h1{
    opacity : 0.6;
}
.elem {
  position: relative;
  
  padding: 2rem;
  border-top: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.elem img {
  position: relative;
  transform: scale(1);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.elem:hover img {
  transform: scale(1.08) translateY(-5px);
  filter: brightness(1.2);
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.elem img {
  animation: float 4s ease-in-out infinite;
}

.elem h1 {
  font-size: 2rem;
  font-weight: 600;
}
.elem h5 {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}
.elemlast {
  border-bottom: 1px solid #222;
}

#about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
  gap: 2rem;
}
#about img {
  width: 320px;
  border-radius: var(--radius);
}
#textabout {
  max-width: 700px;
  text-align: center;
}
#textabout h5 {
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1rem;
}
#textabout p {
  margin-bottom: 2rem;
  color: #d0d0d0;
  font-size: 1rem;
}
#textabout a {
  text-decoration: none;
  background: var(--accent);
  padding: 0.8rem 1.5rem;
  color: #000;
  font-weight: 600;
  border-radius: var(--radius);
  transition: 0.3s;
}
#textabout a:hover {
  background: #c6ff73;
}

@media (min-width: 900px) {
  #about {
    flex-direction: row;
    text-align: left;
  }
  #textabout {
    text-align: left;
  }
}
