/* ============================================
   Base Global Styles
   ============================================ */

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #000000;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  overflow-x: hidden;
  position: relative;
}

header {
  position: relative;
  z-index: 100;
  flex-shrink: 0;
}

#main {
  flex: 1 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 100%;
  position: relative;
  flex: 1 0 auto;
}

footer {
  position: relative;
  z-index: 10;
  margin-top: auto;
  flex-shrink: 0;
}

/* Reset pentru liste */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Reset pentru link-uri */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset pentru imagini */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
