@charset "UTF-8";
/* CSS Document */
.parallax-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh; /* Keeps background fixed but allows scrolling */
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  background-image: url("../img/bg-xmas-1.png");
  pointer-events: none;
}

body {
	
    position: relative;
    z-index: 1; /* Ensure it appears above the background */
    background: rgba(255, 255, 255, 0.85); /* Light background to contrast with parallax */
}
body p{
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 1.2em;

}
.figure-caption {
	font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	color: #333;;
	font-size: 1.1em;
}
main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    overflow-x: hidden; /* Prevents horizontal scrolling */

}
.logo {
    height: 5em; /* Default height */
    width: auto;
    max-width: 100%;
	padding-left: 20px;
}

@media (max-width: 1024px) {
    .logo {
        height: 8vw;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 6vw;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 4vw;
    }
}

/* Styles for the Header */
#title {
    display: flex;
    align-items: center;
    justify-content: center; /* Centers content horizontally */
    flex-wrap: wrap; /* Prevents items from breaking layout */
    text-align: center;
    width: 100%;
}
#title h1 {
    font-size: 3em; /* Scales dynamically */
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1em;
    text-align: center;
}


#title p {
	font-size: 1.25em;
	margin: 0.75em 0 0.25em 0;
	opacity: 0.75;
	text-align: center;
	padding-bottom: 2em;
}

#Intro p {
	padding-top: 1em;
}
/* End of styles for the Header section */

.space {
  margin-bottom: 80px; /* Adjust the value as needed */
}

.icon-link {
    font-size: 3em; /* Doubles the size */
    color: black;
    margin-left: 20px; /* Adds spacing between icons */
    transition: color 0.3s ease;
}

.icon-link:first-child {
    margin-left: 0; /* Ensures first icon doesn’t have extra left margin */
}

.icon-link:hover {
    color: cornflowerblue; /* Changes color on hover */
}


h1 {
  position: relative;
  padding: 0;
  margin: 0;
  font-family:Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
  font-weight: 300;
  font-size: 40px;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

h1 span {
  display: block;
  font-size: 0.5em;
  line-height: 1.3;
}
h1 em {
  font-style: normal;
  font-weight: 600;
}
/* === HEADING STYLE #4 === */
.subtitle h1 {
  text-align: center;
  padding-bottom: 0.2em;
  padding-top: 2em;
  font-size: 3em;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}
.subtitle h2 {
  text-align: center;
  padding-bottom: 0.2em;
  padding-top: 1em;
}
.subtitle h1 span {
  font-weight: 300;
  word-spacing: 3px;
  line-height: 2em;
  padding-bottom: 0.35em;
  color: rgba(0, 0, 0, 0.5);
}
.subtitle h1:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 1px;
  content: "";
  left: 50%;
  margin-left: -30px;
  background-color: #777;
}

/* Glassmorphism Card CSS */
.mycard {

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 60vw;
  margin: 0 auto;
  padding: 35px;

  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(15px);
}

.mycard-footer {
  font-size: 0.65em;
  color: #446;
}
.mycard2 {
  position: relative;
  height: 270px;
  width: 450px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
/* End of Glassmorphism Card styles */


/* Begin CSS for my Lightbox Gallery */
.gallery_frame {
    background-color: #f5f5f5;
    padding: 40px;
    border: 10px solid #966F33;
    border-radius: 25px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1), 0 20px 60px rgba(0, 0, 0, 0.2);
}

.gallery_frame img {
    border-radius: 5px;
    border: 5px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.gallery_frame2 {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery_frame2 img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.img-wrapper {
  position: relative;
  margin-top: 15px;
  img {
    width: 100%;
  }
}
.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  i {
    color: #fff;
    font-size: 3em;
  }
}
.img-overlay i {
  color: #fff; /* White plus-circle icon */
  font-size: 3em; /* Adjust icon size */
}

/* ✨ This line makes the overlay appear on hover */
.img-wrapper:hover .img-overlay {
  opacity: 1;
}

#overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

/* Lightbox Content (for videos and images) */
#lightbox-content {
  max-width: 90vw; /* Maximum width of 90% of the viewport */
  max-height: 90vh; /* Maximum height of 90% of the viewport */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Prevents any content overflow */
}

#lightbox-content img {
  max-width: 85vw; /* Images will take up to 85% of the viewport width */
  max-height: 85vh; /* Images will take up to 85% of the viewport height */
  width: auto; /* Maintain aspect ratio */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Optional: adds rounded corners */
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); /* Soft shadow effect */
  object-fit: contain; /* Ensures images do not zoom in */
}

/* Ensures that YouTube & MP4 videos stay properly sized */
#lightbox-content iframe,
#lightbox-content video {
  width: 85vw; /* 85% of the viewport width */
  height: 48vw; /* Maintain a 16:9 aspect ratio */
  max-width: 1200px; /* Max width for large screens */
  max-height: 675px; /* Max height for large screens */
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  #lightbox-content img {
    max-width: 95vw;
    max-height: 95vh;
  }

  #lightbox-content iframe,
  #lightbox-content video {
    width: 95vw;
    height: 53vw;
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width: 768px) {
    font-size: 3em;
  }
}
#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width: 768px) {
    font-size: 3em;
  }
}
#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width: 768px) {
    font-size: 3em;
  }
}
.img-caption {
  position: absolute;
  bottom: 0; /* Aligns the caption to the bottom of the image */
  width: 100%; /* Makes the caption span the width of the image */
  background-color: rgba(0, 0, 0, 0.6); /* Adds a semi-transparent background */
  color: white; /* Ensures the text is visible */
  text-align: center; /* Centers the text horizontally */
  padding: 5px; /* Adds some padding around the text */
  font-size: 14px; /* Adjust font size as needed */
  box-sizing: border-box; /* Ensures padding doesn't overflow the container */
}.md-6 {
}
.before-after-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 3px solid white;
}

.before-image {
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
}

.resizer {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 5;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  background: white;
}

.resizer-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #3365c0;
  border: none;
  border-radius: 50%;
  outline: none;
  color: white;
  font-size: 14px;
}
/* -- End Lightbox CSS styles -- */

/* Begin CSS for contact HTML */
.contact-box {
	background-color: #1A0606;
    height: 800px;
	position: relative;
			width: 350px;
			height: 500px;
}
.sub-contact-box {
	background-color: black;
	width: 50%;
    height: 50%;
}
.article-image {
padding: 30px;
}
.swash {
	text-align: center;
	margin: 40px 0 40px;
	font-size: 40px;
	color: white;
	text-shadow: 2px 2px 4px #000000;
/*	font-family: 'Cherry Swash', cursive;*/
	font-family: 'Cherry Swash', cursive;
}

.swash2 {
	text-align: left;
	margin: 30px 0 20px 20px;
	font-size: 20px;
	color: white;
	text-shadow: 2px 2px 4px #000000;
/*	font-family: 'Cherry Swash', cursive;*/
	font-family: Cambria, Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
}
