/* General Styles */
body {
  margin: 0px;
  font-family: Arial, sans-serif;
  /*background: linear-gradient(120deg, #f5f5f5, #ffe5e5);*/
  color: black;
  background-color: #000000;
	width: 100%;
	height: 100%;
}
.text-overlay > p
{
	
}
/*#container {
	display: flex;
	justify-content: flex-start;
	align-content: flex-end;
}*/
header {
  display: flex;
  justify-content: space-evenly;
  background-color: black;
  color: white;
  padding: 20px;
  width: auto;
  /*margin: auto;*/
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  height: auto;
  box-sizing: border-box;
}

#container{
	/*position: fixed;
	top: 0px;
	z-index: 999999;*/
	justify-content: space-between;
	width: auto;
	height: auto;
	padding-top: 20px;
}

.header-logo {
	width: clamp(100px, 30%, 650px);
	min-width: 100px;
	height: auto;
	/*padding: auto;
	margin: auto;*/
	align-self: center;
	object-fit: contain;
}

.header-title {
	width: auto;
	text-align: center;
	align-self: center;
	font-size: clamp(1.9rem, 5px + 4vw, 75px + 1vw);
	letter-spacing: 3px; /* 3px */
	line-height: normal;
	filter: drop-shadow(0px 0px 2px red);
}

/* Image Slider Section */
.image-slider {
	position: static;
	/*display: flex;*/
	flex-direction: column;
	flex-basis: 6000px;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	width: 95%;
	border-radius: 12px;
	margin: 20px auto;
	/*border-style: solid;
	border-color: darkred;
	border-width: 3px;*/
	/*background-color: linear-gradient(180deg, #0000, #eeee);*/
	/*transition: box-shadow 0.3s ease, border 0.3s ease;*/
}

.image-slider:hover {
  /*border: 3px solid darkred;*/
	/*border-radius: 12px;
  box-shadow: 0 0 10px 5px rgba(255, 0, 0, 0.5);*/
}

.slider {
	position: static;
  display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	border-radius: 12px;
	/*border-style: none;
	border-color: transparent;
	border-width: 3px;*/
	transition: box-shadow 0.3s ease, border 0.3s ease;
	box-sizing: border-box;
}
.slider:hover {
	border: 3px solid darkred;
	border-radius: 12px;
	box-shadow: 0px 0px 10px 5px rgba(255, 0, 0, 0.4);
}

.text-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 400px;
	min-width: 200px;
  padding: 5px;
	text-align: center;
	vertical-align: middle;
  background: linear-gradient(0deg, #A71517, #DF1114, #A71517);
  color: white;
	
  border-top-left-radius: 10px;
  /*border-bottom-left-radius: 10px;*/
  /*border-top-right-radius: 10px;*/
  border-bottom-right-radius: 10px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: translateY(0px);
	transform: translateX(0px);
	/*border-radius: 10px;*/
	
	border: 2px solid rgba(255, 255, 255, 0.3);
	/*border-top-style: none;
  	border-left-style: none;*/
}

/*.text-overlay h2 {
  display: flex;
  align-items: center;
  font-size: 24px;
  margin: 0;
}

.text-overlay h2 .header-icon {
  min-width: 24px;
  min-height: 24px;
  margin-right: 10px;
    max-width: 100%;
    max-height: 75%;
}*/

/*.text-overlay hr {
  width: 100%;
  height: 2px;
  background-color: white;*/
  /*border-bottom: 2px solid rgba(0, 0, 0, 0.3);*/
  /*margin: 10px 0px;
}*/

.text-overlay p {
	width: auto;
	height: auto;
  font-size: clamp(0.7rem, 1.5rem + 1vw, 3rem);
  line-height: 1px;
	text-align: center;
}

/*
* USED WHEN THERE ARE MULTIPLE PICTURES ON ONE SLIDE,
* BUT EACH IMAGE IS INSIDE IT'S OWN <div> TAG!

.slide:first-child
{
    border-radius: 10px 0px 0px 10px;
}

*/

.slide {
  align-items: center;
	flex-direction: column;
  height: 100%;
  width: 100%;
	
  background-color: grey;
  background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
  border-radius: 10px 10px 0px 0px;
  transition: opacity 0.2s ease-in-out;
	background-clip: border-box;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 80vw;
	opacity: 0;
	position: relative;
}



.slide.active {
  opacity: 1;
  display: block;
}
/*.slide.active > p {
  display: block;
	region-break-before: avoid-column;
}*/
.image-slider >.slider > .slide:not(.active)
{
    opacity: 0;
	display: none;
}

/* Navigation Buttons */
/*.nav-buttons {
    position: flex;
}*/
.nav-buttons {
  display: flex;
  gap: 0px;
  align-items: center;
  justify-content: center;
  
  
  padding-bottom: 20px;
    /*z-index: 999;
    position: absolute;
    transform: translateY(340px);*/
}

.nav-buttons button {
  background: none;
  border: none;
  cursor: pointer;
}

.nav-buttons button img {
  width: 32px;
  height: 32px;
}

/* Contact Now Section */
.contact-now {
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  background: linear-gradient(0deg, red, lightcoral);
  /*border-radius: 0px;*/
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  color: white;
}

.contact-now h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.contact-now h2 .header-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-buttons button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: 2px solid white;
  border-radius: 5px;
  background-color: darkred;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.contact-buttons button:hover {
  background-color: red;
  border-color: darkred;
}

.contact-buttons button:active {
  transform: scale(0.95);
}

.contact-buttons button .button-icon {
  width: 24px;
  height: 24px;
}

/* MENU STYLES */
.menu-button {
    position: absolute; /* Or 'absolute' if relative to a specific container */
    top: 15px;
    right: 15px;
    z-index: 1001; /* Ensure it's above the menu and other content */
    width: 40px;
    height: 30px; /* Height includes space between lines */
    padding: 0px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes space between lines */
}
.menu-line {
    display: block;
    width: 100%;
    height: 1px; /* Line thickness */
    background-color: white;
    border-radius: 4px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; /* Animation */
    transform-origin: center; /* Rotate around the center */
}
.menu-line p {
    display: block;
}

/*#menu-toggle
{
	position: fixed;
}*/

/*#upper-header {
	position: relative;
}*/

.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 4px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Firefox */
	user-select: none;
	-webkit-tap-highlight-color: transparent; /* Prevents tap highlight color on mobile */
	-moz-highlight: none; /* Prevents highlight on double-tap in Firefox */
}
.active, .dot:hover {
	background-color: #717171;
}

* {
	-webkit-tap-highlight-color: transparent; /* Prevents tap highlight color on mobile */
	-moz-highlight: none; /* Prevents highlight on double-tap in Firefox */
}

/*.slide-text
{
	display: flex;
	flex-direction: column-reverse;
	color: white;
}*/

/*.slide-new {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  border-radius: 10px 10px 10px 10px;
  transition: opacity 0.5s ease-in-out;
	/*box-sizing: border-box;*/
/*}
.slide-text {
  display: flex; /* Existing style */
  /*flex-direction: column-reverse; /* Existing style */
	/*align-content: space-between;
	align-items: baseline;
	justify-content:flex-start;
  color: white; /* Existing style */
  /*padding: 100px; /* Example: Adds 10px padding around the text */
  /* Or be more specific: */
  /* padding-bottom: 10px; */
  /* padding-left: 10px; */
	/*margin-top: -20px;
}*/

.slide-text {
	display: block;
	/*align-content: center;
	align-items: center;
	text-align: center;
	vertical-align: middle;*/
	
  color: white; /* Existing style */
  /*padding: 100px; /* Example: Adds 10px padding around the text */
  /* Or be more specific: */
  /* padding-bottom: 10px; */
  /* padding-left: 10px; */
}
.slide-text-2
{
	position: relative;
	margin: auto 0px;
	bottom: 0%;
	padding: 5px;
	color: white;
	text-align: center;
	display: inline-block;
	  border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	vertical-align: middle;
	background: linear-gradient(180deg, grey, #000);
	font-size: 45px;
}

.tangerine-regular {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
}

.tangerine-bold {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}
.birthstone-regular {
  font-family: "Birthstone", cursive;
  font-weight: 400;
  font-style: normal;
}

/*footer {
	position: absolute;
	bottom: 0px;
	width: 100%;
}*/

/* Media Querys for Devices */
@media (max-width:412px), (max-width:425px), (max-width:426px) /* max-width: 412px */
{
	*
	{
		/*min-width: 10%;*/
	}
	/*html
	{
		min-height: 100vh;
	}*/
	/*.grid-container
	{
		width: 90%;
		max-width: 90%;
	}*/
	
	.grid-item h4
	{
		font-size: 25px;
		line-height: normal;
	}
	.grid-item h6
	{
		font-size: 13px;
		line-height: normal;
	}
	/*#header-logo
	{
		width: 70%;
		height: 70%;
	}*/
	/*#header-title
	{
		font-size: 1.2rem;
		line-height: 1.33rem;
	}*/
	#main-content > h1
	{
		font-size: 45px;
	}
	#main-content h5
	{
		font-size: 30px;
	}
	.item-4
	{
		padding: 10px;
	}
	
	.text-overlay > p
	{
		/*font-size: 30px;*/
	}
	.slide
	{
		background-size: contain;
	}
	
	.text-overlay
	{
		border-radius: 10px;
		margin: 5px;
		height: auto;
		height: fit-content;
		padding: 0;
	}
	
	.slide-text-2
	{
		/*font-size: 1rem;*/
	}
	#upper-header
	{
		margin-top: 10px;
	}
	
	.contact-buttons button
	{
		padding: 4px;
		font-size: 1rem;
	}
}

@media (min-width:320px)
{
	.contact-buttons button
	{
		padding: 4px;
		font-size: 0.9rem;
	}
}

.copyright-notice p {
	text-align: center;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 20px;
	margin-bottom: 0px;
}

.created-by-notice {
	display: none;
	text-align: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 5px;
	margin-bottom: 20px;
}
.created-by-notice a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: wavy underline;
	transition: all 0.3s ease-in-out;
}
.created-by-notice a:hover {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: wavy underline;
}