/**
 * @file
 * Responsive styles and media queries
 */

/* Mobile First Approach */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  :root {
    --container-padding: 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .layout-content {
    flex-direction: row;
  }

  .layout-sidebar-first,
  .layout-sidebar-second {
    display: block;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  html {
    font-size: 17px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  :root {
    --container-max-width: 1200px;
  }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  :root {
    --container-max-width: 1400px;
  }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
  .layout-content {
    flex-direction: column;
  }

  .layout-sidebar-first,
  .layout-sidebar-second {
    width: 100%;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }

  .main-content {
    padding: 0;
  }
}

/* Print styles */
@media print {
  .site-header,
  .site-navigation,
  .site-footer,
  .btn {
    display: none;
  }

  .main-content {
    padding: 0;
  }
}

