/*
 * Laiva Theme Stylesheet
 * 
 * This file contains the main styles for the Laiva theme.
 * 
 * @package Laiva
 * @version 1.0.0
 * @author Stephanie Jacques
 * @license GPL-2.0+
 *
 * Theme name: Laiva
 * Version: 1.0.0
 * Author: Stephanie Jacques
*/

@import url("assets/css/index.css");

body {
  scroll-behavior: smooth;
}

/* Ensure alignwide block can reach 1200 px */
.wp-block-group.alignwide {
  max-width: 800px !important; /* Set maximum width for wide blocks */
  width: 100% !important; /* Allow it to expand to full width */
  margin-left: auto !important; /* Center align the block */
  margin-right: auto !important; /* Center align the block */
}

/* Visible on mobile */
@media (max-width: 1199px) {
  .visible-desktop {
    display: none;
  }
}

/* Visible on laptop and small desktop */
@media (min-width: 1200px) {
  .hidden-desktop {
    display: none;
  }
}
