/*---Scarlett Duty
Wed, 11 Sept 2024 10:06:49 GMT*/

/* the reset selctor*/
* {
	margin: 0;
	padding: 0;

}



html {
    background-color: #f7ccc5;
	background-image: url(../images/flowers.gif);
	background-size: 10%;
}



body {
    font-family: Montserrat, Helvetica, sans-serif;
    font-size: 100%;
    width: 70%;
	max-width: 1000px;
    margin: 0 auto;
    background-color: #FDF9F6;
    box-shadow:  0 6px 10px -10px gray;
}


/*the styles for the nav menu*/
#nav_menu {
	overflow: hidden;
	position: sticky;
	top: 0px;
	padding-left: 18%;
	background-color: #253a1a;

}

#nav_menu ul {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
}

#nav_menu ul li {
	float: left;
	flex-basis: 25%;
}

#nav_menu ul li a {
	display: block;
	text-align: center;
	padding: 1em 0;
	text-decoration: none;
	background-color: #253a1a;
	color: white;
	font-weight: bold;
    box-shadow:  0 6px 10px -10px gray;
}

#nav_menu a.current {
	color: #a66f6a;
}

#nav_menu a:hover, #nav_menu a:focus {
    background-color: #253a1a;
}


header {
    padding: 10% 0 2.5em 2.5%;
    background-color: #f7ccc5;
    color: #0c130d;
}

header img {
	display: block;
	float: left;
    width: 12%;
    min-width: 60px;
    max-width: 120px;
	margin-top: auto;
}

header div {
	margin-left: 14%;
}

header h2 {
    font-size: 300%;
    padding-bottom: .18em;
}

header h3 {
    font-size: 100%;
}


main {
    clear: left;
    padding: 1.5em 2.5% 2em;
	background-color: #fae5e3;
}

main h1 {
    color: #0c130d;
    text-align: center;
    padding-bottom: .5em;
    border-bottom: 3px solid #0c130d;
}

#construction {
	display: block;
  	margin: 0 auto;
  	width: 50%;
	padding: 2em 0 10em 0;
}

#back-button {
	color: gray;
}

.button-container {
    display: flex;
    justify-content: space-evenly; /* Or use space-around, space-evenly, etc. */
	align-items: center;
}

.custom-button {
    padding: 5%; /* Increase padding to resize buttons */
    border: none;
    cursor: pointer;
    flex: 1; /* This will make the buttons take equal width */
    margin: 0 20px; /* Adds spacing between buttons */
}

.button {
	width: 100%;
}

div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*table {
	margin: auto;
	justify-content: space-evenly;
}

figure {
    padding: 1em 4.25%;
	width: 100%;
	min-width: 100px;
	max-width: 500px;
	margin: 0 auto;
}

figure img {
    width: 100%;
	object-fit: cover;
}

/*figure figcaption {
    padding-top: 1em;
    text-align: center;
}*/


#hdr_col1 {
    float: left;
    width: 25%;
    margin-left: 12%;
}

#hdr_col2 {
    float: right;
    width: 25%;
    margin-right: 12%;
}




footer {
    clear: right;
    text-align: center;
	font-size: 70%;
    padding: 1.5625%;
    margin-bottom: 3em;
    color: white;
    background-color: #253a1a;
    box-shadow: 0 6px 10px -10px gray;
}



/*hide the mobile menu initially*/
#mobile_menu {
	display: none;
}



/*tablet in portrait mode*/
@media only screen and (max-width: 959px) {
	section h1 {
		font-size: 135%;
	}

	section h2, aside h2 {
		font-size: 120%;
	}
}

/*phone in landscape mode*/
@media only screen and (max-width: 767px) {
	header{
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	header img {
		float: none;
	}

	#nav_menu {
		display: none;
	}

	#mobile_menu {
		display: block;
	}

	.slicknav_menu {
		background-color: #253a1a !important;
	}

	section {
		float: none;
		width: 95%;
	}

	section article img {
		max-width: 30%;
	}

	aside {
		float: none;
		padding: 0 2.5% 20px;
		width: 95%;
	}

	aside div {
		column-count: 2;
	}
}

/*phone in portrait mode*/
@media only screen and (max-width: 479px) {
	body {
		font-size: 90%;
	}
}