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

body {
  font-family: "Inknut Antiqua", serif;
  background-image: radial-gradient(#ff8bba 35%, #a71652);
  background-color: #ffe6f0;
  color: #333;
  line-height: 1.6;
  padding: 1rem;
}


.playwrite-hu-test {
  font-family: "Playwrite HU", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inknut-antiqua-light {
  font-family: "Inknut Antiqua", serif;
  font-weight: 300;
  font-style: normal;
}

.inknut-antiqua-regular {
  font-family: "Inknut Antiqua", serif;
  font-weight: 400;
  font-style: normal;
}

.inknut-antiqua-medium {
  font-family: "Inknut Antiqua", serif;
  font-weight: 500;
  font-style: normal;
}

.inknut-antiqua-semibold {
  font-family: "Inknut Antiqua", serif;
  font-weight: 600;
  font-style: normal;
}

.inknut-antiqua-bold {
  font-family: "Inknut Antiqua", serif;
  font-weight: 700;
  font-style: normal;
}

.inknut-antiqua-extrabold {
  font-family: "Inknut Antiqua", serif;
  font-weight: 800;
  font-style: normal;
}

.inknut-antiqua-black {
  font-family: "Inknut Antiqua", serif;
  font-weight: 900;
  font-style: normal;
}

/* Navigation */
.navbar {
  background-color: #ffb6c1;
  border: 4px solid #ff69b4;
  border-radius: 0;
  padding: 1rem;
  margin-bottom: 2rem;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.navbar a {
  text-decoration: none;
  color: white;
  background-color: #ff69b4;
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-align: center;
}

.navbar a:hover {
  background-color: #ff1493;
}

.navbar{
	max-width: 100%;
	min-width: 250px;
	margin: auto;
	position:relative;
}

.navbar-banner .banner{
  height:30px;
  width: 150px;
}

@media (max-width: 991.98px) {  /* Bootstrap lg breakpoint */
  .navbar-collapse {
    flex-direction: column;
  }

  .navbar-center {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .navbar-right {
    justify-content: center;  /* <-- center socials */
    margin-top: 0.5rem;
  }
}

.navbar-brand .logo{
	height: 50px;
	width: 50px;
}

.navbar-left {
    flex: 0 0 auto;
}

.navbar-center {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

.navbar-right {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.navbar-overlay{
	position:absolute;
	top: 3px;
	left: 3px;
	vertical-align: middle;
}


.navbar a:hover{
	background-color: #ff1493;
	border-radius: 3px;
	text-align: center;
	text-decoration-color: chartreuse;
}

.soc {
  height: 50px;
  width: 50px;
}

/* Header / Main styling */
h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: #cc3366;
}

p {
  text-indent: 25px;
}

/* Buttons (general styling for later use) */
.button {
  background-color: #66ccff;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #3399cc;
}

.center { 
  display: block; 
  margin-left: auto; 
  margin-right: auto; 
  width: 50%; 
}

/* Optional: lacey feel using a border image */
.lacey-border {
  border: 8px solid pink;
  padding: 1rem;
  margin: 2rem 0;
}

.slick-slide{
    margin: 0 20px;
}
.slick-slide img{
    width: 100%;
}
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
}
.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block
}
.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide img{
    display: block;
}
.slick-initialized .slick-slide{
    display: block;
}
.navbar-brand .logo{
	height: 30px;
	width: 60px;
}

.container{
    padding-top: 100px;
	padding-bottom:50px ;
}

.inline-block-child {
  display: inline-block;
}

.parent {
  padding: 1rem;
}
.child {
  padding: 1rem;
}