/* Lynt Musik - Local Styles (Google-Free) */

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

:root {
  --primary-blue: #0e93ff;
  --text-primary: #202124;
  --text-secondary: #5f6368;
  --border-color: #dadce0;
  --bg-light: #f8f9fa;
  --bg-light-blue: #e8f0fe;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: #fff;
}

/* Header Styles */
.android-page-header {
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.android-page-header__inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.android-page-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-primary);
}

.android-page-header__logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

/* Navigation */
.android-navigation__list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.android-navigation-item__cta {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.2s;
}

.android-navigation-item__cta:hover {
  color: var(--primary-blue);
}

/* Buttons */
.glue-button, .bsp-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
}

.glue-button--high-emphasis, .bsp-button {
  background-color: var(--primary-blue);
  color: #fff;
}

.glue-button--high-emphasis:hover {
  background-color: #0d82e0;
  box-shadow: 0 2px 8px rgba(14, 147, 255, 0.3);
}

.glue-button--low-emphasis {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}

.glue-button--low-emphasis:hover {
  background-color: rgba(14, 147, 255, 0.1);
}

/* Typography */
.glue-headline {
  font-weight: 600;
  margin: 0;
}

.glue-headline--headline-1 {
  font-size: 48px;
  line-height: 1.2;
}

.glue-headline--headline-2 {
  font-size: 36px;
  line-height: 1.3;
}

.glue-headline--headline-4 {
  font-size: 24px;
  line-height: 1.4;
}

.glue-headline--headline-5 {
  font-size: 20px;
}

.glue-headline--headline-6 {
  font-size: 16px;
}

.glue-body {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.glue-body--large {
  font-size: 18px;
}

/* Grid System */
.glue-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.glue-grid__col {
  grid-column: span 1;
}

.glue-grid__col--span-1 { grid-column: span 1; }
.glue-grid__col--span-2 { grid-column: span 2; }
.glue-grid__col--span-4 { grid-column: span 4; }
.glue-grid__col--span-6 { grid-column: span 6; }
.glue-grid__col--span-8 { grid-column: span 8; }
.glue-grid__col--span-10 { grid-column: span 10; }
.glue-grid__col--span-12 { grid-column: span 12; }

/* Hero Section */
.page-hero {
  padding: 60px 24px;
  border-radius: 16px;
}

.page-hero-a {
  background-color: var(--bg-light);
}

.glue-text-center {
  text-align: center;
}

/* Cards */
.glue-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}

.glue-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Carousel */
.glue-carousel {
  position: relative;
}

.glue-carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.glue-carousel__button:hover {
  background-color: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

.glue-carousel__button--prev {
  left: -24px;
}

.glue-carousel__button--next {
  right: -24px;
}

/* Spacers */
.bsp-spacer-2-bottom { margin-bottom: 16px; }
.bsp-spacer-2-top { margin-top: 16px; }
.bsp-spacer-4-bottom { margin-bottom: 32px; }
.bsp-spacer-4-top { margin-top: 32px; }
.bsp-spacer-5-bottom { margin-bottom: 40px; }
.bsp-spacer-5-top { margin-top: 40px; }
.bsp-spacer-6-bottom { margin-bottom: 48px; }
.bsp-spacer-6-top { margin-top: 48px; }
.bsp-spacer-none-top { margin-top: 0; }
.bsp-spacer-0-bottom { margin-bottom: 0; }
.glue-spacer-2-bottom { margin-bottom: 16px; }
.glue-spacer-2-top { margin-top: 16px; }
.glue-spacer-4-top { margin-top: 32px; }
.glue-spacer-4-bottom { margin-bottom: 32px; }

/* Footer */
.bsp-footer {
  background-color: #fff;
  border-top: 1px solid var(--border-color);
  padding: 48px 24px;
  margin-top: 64px;
}

.glue-footer__upper {
  margin-bottom: 32px;
}

.bsp-social {
  display: flex;
  gap: 16px;
}

.glue-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-light);
  transition: all 0.2s;
}

.glue-social__link:hover {
  background-color: var(--primary-blue);
  color: #fff;
}

/* Icons */
.glue-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: currentColor;
}

.glue-icon--24px {
  width: 24px;
  height: 24px;
}

.glue-icon--32px {
  width: 32px;
  height: 32px;
}

/* Search */
.android-page-header__search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 400px;
  margin: 0 24px;
}

.android-page-header__input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 14px;
}

.android-page-header__input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(14, 147, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .android-navigation {
    display: none;
  }

  .glue-headline--headline-1 {
    font-size: 32px;
  }

  .glue-headline--headline-2 {
    font-size: 24px;
  }

  .glue-grid__col--span-4 {
    grid-column: span 12;
  }

  .glue-grid__col--span-8 {
    grid-column: span 12;
  }

  .glue-grid__col--span-10 {
    grid-column: span 12;
  }
}

/* Video styles */
.glue-ambient-video {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.glue-ambient-video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Drawer */
.android-page-header__drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.android-page-header__drawer[aria-hidden="false"] {
  display: block;
}

/* Additional Utilities */
.glue-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.glue-container {
  width: 100%;
}

.glue-page-header {
  padding: 16px 0;
}

.glue-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.glue-no-bullet {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.glue-content-well {
  padding: 24px;
}

.glue-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-blue);
  letter-spacing: 0.5px;
}

.glue-font-weight-bold {
  font-weight: 700;
}

.glue-font-weight-regular {
  font-weight: 400;
}
