@charset "utf-8";
/* CSS Document */


.topbar {
  background-color: #F8F1E5;
  padding: 20px 30px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo
{
	font-family: "stencil-std",sans-serif;
	font-size: 20pt; 
}

/* Desktop links */
.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: transform 0.2s ease;
  display: inline-block; /* important for smooth scaling */
}

.nav-links a:hover {
  transform: scale(1.15);
}


.menu-icon {
  font-size: 30px;
  cursor: pointer;
  display: none; 
}

/* Overlay menu */
.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.95);
  overflow-y: hidden;
  transition: 0.4s ease;
}

/* Overlay content */
.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
}

/* Links inside overlay */
.overlay a {
  display: block;
  font-size: 36px;
  color: white;
  text-decoration: none;
  margin: 20px 0;
  transition: 0.2s;
}

.overlay a:hover {
  color: #EAD7A1;
}

/* Close button */
.closebtn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 50px;
  color: white;
  cursor: pointer;
}


@media (max-width: 700px) {

  .nav-links {
    display: none; 
  }

  .menu-icon {
    display: block; 
  }
}


/* Social Media */ 
.social-bar {
position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 10px 20px;
  background-color: #F8F1E5;
  z-index: 9999;
}

.social-bar a {
  display: inline-block;
}

.social-icon {
  width: 40px;        /* adjust size as needed */
  height: 40px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.2);  /* hover effect */
}

.social-btn {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #fff;
  transition: transform 0.2s, background-color 0.2s;
}

.social-btn:hover {
  transform: scale(1.1);
  background-color: #f1f1f1;
}

@media (max-width: 720px) {
  .social-bar {
    justify-content: center; /* center buttons on mobile */
    flex-wrap: wrap;         /* allow buttons to wrap if needed */
  }

  .social-btn {
    margin: 5px;             
  }
}

/*text for main screen */
.center-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80vh; /* fills most of screen */
  text-align: left;
}

/* Big text */
.hero-title {
  font-size: 4rem;
  margin-bottom: 10px;
	font-family: "stencil-std",sans-serif;
color: #F8F1E5;
}

/* Smaller text */
.hero-sub {
  font-size: 1.5rem;
  margin-bottom: 20px;
	font-family: "stencil-std",sans-serif;
	color: #F8F1E5;
}

/*About Text*/ 
.about-text 
{
	font-size: 18pt;
	font-family: "stencil-std",sans-serif;
	color: #F8F1E5;
	text-shadow: 2px 2px 2px black;
}


.about-body
{
	color: #F8F1E5;
	font-weight: bold; 
	
}

/* about text hidden*/ 
.special-text {
  display: none;
}

@media (max-width: 700px) {
  .special-text {
    display: block;
  }
}


/*contact text hidden*/ 
.contact-information
{
	display: none;
	padding-bottom: 60px;
}
@media (max-width: 700px) {
  .contact-information {
    display: block;
  }
}

/*=============contact form===========================*/
.contact-box {
  background-color: #333447;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
	padding-bottom: 30px;
}

/* TITLE */
.contact-title {
  color: #F8F1E5;
  margin-bottom: 15px;
}

/* FORM LAYOUT */
.contact-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* LABELS */
.contact-box label {
  color: #F8F1E5;
  font-weight: bold;
}

/* INPUTS */
.contact-box input,
.contact-box textarea {
  background-color: #222;
  color: #F8F1E5;
  border: 1px solid #333;
  padding: 10px;
  border-radius: 5px;
  font-family: inherit;
}

/* PLACEHOLDER TEXT */
.contact-box input::placeholder,
.contact-box textarea::placeholder {
  color: rgba(248, 241, 229, 0.6);
}

/* FOCUS EFFECT */
.contact-box input:focus,
.contact-box textarea:focus {
  outline: 2px solid #EAD7A1;
}



/*==============contact animation========================*/
.success-message {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2ecc71;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  z-index: 99999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: slideDown 0.4s ease;
}

/* animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* BUTTON */
.contact-box button {
	background-color: #5a5d7a;
  color: #F8F1E5;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.contact-box button:hover {
  background-color: #333447;
	transform: scale(1.1);
}

/* Button */
.hero-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333447;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.hero-button:hover {
  background-color: #555;
}

/* right side*/ 
.center-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80vh;
}


.cube-container {
  align-items: center;
}

/* The "cube" */
.cube {
  width: 400px;
  height: 400px;
  background-color: #333447;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.2rem;
  text-align: center;

  border-radius: 10px; 
}

@media only screen and (max-width: 55em) {
  .cube-container {
    display: none;
  }
}



/*=====================Gallery Code ===================*/
.featured-image {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.featured-image:hover {
  transform: scale(1.15);
}


.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;   /* keeps images same size without distortion */
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Spacing between columns */
.col-4 {
  padding: 10px;
}

/*===================== Lightbox Close Button ===================*/

/* Position the close button container */
.lb-closeContainer {
  position: absolute;
  top: 10px;
  right: 15px;
}

/* Remove broken background image + define size */
.lb-data .lb-close {
  background: none !important;
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  opacity: 0.8;
  transition: 0.2s;
}

/* Create the visible "X" */
.lb-data .lb-close::after {
  content: "✕";
  color: white;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

/* Hover effect */
.lb-data .lb-close:hover {
  opacity: 1;
}

.lb-prev,
.lb-next {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  cursor: pointer;
}

.lb-prev {
  left: 0;
}

.lb-next {
  right: 0;
}

/* Arrow symbols */
.lb-prev::before,
.lb-next::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  opacity: 0.7;
  transition: 0.2s;
}

.lb-prev::before {
  content: "❮";
  left: 20px;
}

.lb-next::before {
  content: "❯";
  right: 20px;
}

.lb-prev:hover::before,
.lb-next:hover::before {
  opacity: 1;
}
/*========================About photo=================================*/
.about-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.about-image-ns {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}