@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* Global Styles for SUlu Haustechnik */

.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #F37306;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D56505;
}

/* Legacy Base Styles */
:root {
  --brand-orange: #F37306;
  --text-dark: #234F85;
  --text-medium: #808080;
  --bg-white: #ffffff;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.5;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

/* Helper Classes */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
}
