*, *::before, *::after {
  box-sizing: border-box;
}

.headshots-button {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    text-decoration: none;
    background: none;
}

.headshots-button:hover {
    color: #aaa;
}
/* .desktop-nav already defined above; do not override background-color here */
.desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    color: #fff;
    z-index: 100;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.nav-right {
    margin-left: auto;
}

html, body {
  overflow-x: hidden;
}

/* === Desktop nav background transition on scroll === */
.desktop-nav {
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.desktop-nav.scrolled {
  background-color: rgba(0, 0, 0, 0.7);
}
/* Button */

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		-webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		-ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		background-color: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: inset 0 0 0 2px #36383c;
		color: #ffffff !important;
		cursor: pointer;
		display: inline-block;
		font-size: 0.9em;
		font-weight: 300;
		height: 3.05556em;
		letter-spacing: 0.1em;
		line-height: 3.05556em;
		padding: 0 2.5em;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		white-space: nowrap;
	}

	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover,
	button:hover,
	.button:hover {
		box-shadow: none;
		color: inherit !important;
		background-color: transparent;
	}

		input[type="submit"]:hover:active,
		input[type="reset"]:hover:active,
		input[type="button"]:hover:active,
		button:hover:active,
		.button:hover:active {
			background-color: transparent;
			color: inherit !important;
		}

		input[type="submit"].icon,
		input[type="reset"].icon,
		input[type="button"].icon,
		button.icon,
		.button.icon {
			padding-left: 1.35em;
		}

			input[type="submit"].icon:before,
			input[type="reset"].icon:before,
			input[type="button"].icon:before,
			button.icon:before,
			.button.icon:before {
				margin-right: 0.5em;
			}

		input[type="submit"].fit,
		input[type="reset"].fit,
		input[type="button"].fit,
		button.fit,
		.button.fit {
			width: 100%;
		}

		input[type="submit"].small,
		input[type="reset"].small,
		input[type="button"].small,
		button.small,
		.button.small {
			font-size: 0.8em;
		}

		input[type="submit"].large,
		input[type="reset"].large,
		input[type="button"].large,
		button.large,
		.button.large {
			font-size: 1.35em;
		}

		input[type="submit"].primary,
		input[type="reset"].primary,
		input[type="button"].primary,
		button.primary,
		.button.primary {
			background-color: #34a58e;
			box-shadow: none;
		}

			input[type="submit"].primary:hover,
			input[type="reset"].primary:hover,
			input[type="button"].primary:hover,
			button.primary:hover,
			.button.primary:hover {
				background-color: #47c5ab;
				color: #ffffff !important;
			}

				input[type="submit"].primary:hover:active,
				input[type="reset"].primary:hover:active,
				input[type="button"].primary:hover:active,
				button.primary:hover:active,
				.button.primary:hover:active {
					background-color: #287e6d;
				}

		input[type="submit"].disabled, input[type="submit"]:disabled,
		input[type="reset"].disabled,
		input[type="reset"]:disabled,
		input[type="button"].disabled,
		input[type="button"]:disabled,
		button.disabled,
		button:disabled,
		.button.disabled,
		.button:disabled {
			pointer-events: none;
			opacity: 0.35;
		}


/* Headshots Page Layout */
.lf-header {
  background-color: white;
  color: black;
  padding: 20px 10px;
  text-align: center;
  font-family: 'Source Sans Pro', Helvetica, sans-serif;
  font-weight: 300;
}

.lf-header h1 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 30px;
  margin-bottom: 0.3em;
  color: #000;
}

.lf-header p {
  font-size: 14px;
  color: #888;
  margin-bottom: 1em;
  line-height: 1.6;
}

.lf-header nav a {
  margin: 0 15px;
  font-size: 0.9em;
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lf-header nav a:hover {
  color: #222;
}

/* Gallery grid: exactly 4 images per row */
.lf-gallery {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 20px;
  padding: 40px 0;
  background-color: #fff;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.lf-gallery img {
  width: 100%;
  max-width: 220px;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

/* Retain hover transform for .lf-gallery img */
.lf-gallery img:hover {
  transform: scale(1.03);
}

/* Removed forced sizing for .instagram-preview img */

@media screen and (max-width: 768px) {
  .lf-header h1 {
    font-size: 72px;
  }
  .lf-header nav a {
    display: block;
    padding: 10px 0;
    margin: 10px 0;
  }
  .lf-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    padding: 20px;
    justify-items: center;
  }
  .lf-gallery img {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    object-fit: cover;
    aspect-ratio: 2/3;
  }
}

@media (max-width: 480px) {
  .lf-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
    justify-items: center;
  }
}

/* Back Button Styles */
 .back-button {
   text-align: right;
   margin-right: 20px;
 }

.back-button a {
  color: #000;
  font-size: 0.9em;
  text-decoration: none;
}

.back-button a:hover {
  color: #000;
}
/* Headshots about */
.lf-header {
  background-color: white;
  color: black;
  padding: 20px 10px;
  text-align: center;
  font-family: 'Source Sans Pro', Helvetica, sans-serif;
  font-weight: 300;
}

.lf-header h1 {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 30px;
  margin-bottom: 0.3em;
  color: #000;
}

.lf-header p {
  font-size: 14px;
  color: #888;
  margin-bottom: 1em;
}

.lf-header nav a {
  margin: 0 15px;
  font-size: 0.9em;
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lf-header nav a:hover {
  color: #222;
}
.lf-about {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px 20px;
  padding-bottom: 0;
  width: 100%;
  margin: 0;
  background: white;
  color: black;
  margin-bottom: 0;
  overflow-y: auto;
}

@media (min-width: 1200px) {
  .lf-about {
    padding-left: 100px;
    padding-right: 100px;
    display: block;
  }
}

@media (max-width: 768px) {
  .lf-about {
    padding: 30px 15px !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .bio-text h2 {
    font-size: 1.6em;
  }
  .bio-text p {
    font-size: 1.1em;
    line-height: 1.5;
  }
  .instagram-preview {
    margin-top: 40px;
  }
}

.bio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 5px;
}

.bio-headshot {
  width: 320px;
  border-radius: 6px;
  object-fit: cover;
  max-width: 100%;
}

.bio-text {
  flex: 1;
}

.bio-text h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

/* Container for gallery to ensure white background */
.container {
  background-color: #fff;
}

/* Remove fixed width for mobile wrapper */
.page-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}


/* Bio section scaling - revert forced sizing */
.bio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 5px;
}
.bio img.bio-headshot {
  width: 320px;
  border-radius: 6px;
  object-fit: cover;
  max-width: 100%;
  display: block;
  margin-bottom: 0;
}
.bio-text {
  flex: 1;
  max-width: none;
  text-align: left;
}

/* --- Removed Responsive Mobile Layout Override that forced 350px width and fixed sizing --- */

/* ===== OTHER STYLES ===== */
/* General styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Menu toggle button styles */
.menu-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 101; /* Ensure button stays above video */
    cursor: pointer;
}

.menu-toggle img {
    width: 40px; /* Adjust icon size */
}
/* Instagram Preview Styles */
.instagram-preview {
  text-align: center;
  padding: 10px 20px;
  overflow: visible;
  background-color: #fff !important;
  margin: 0 !important;
}

.ig-wrapper {
  width: 100%;
  display: block;
  overflow: visible;
}

.embedsocial-hashtag {
  display: block;
  width: 100% !important;
  height: auto !important;
  min-height: 1000px !important;
  overflow: visible !important;
  background-color: #fff !important;
}

/* Header for About Page */
.about-header {text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/aboutimg.jpg') center/cover no-repeat;
    color: #fff;
    background-size: cover;
    background-position: center;}

.about-header h1 {font-size: 60px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;}

.about-header p {font-size: 24px;
    color: #ccc;}

/* About Page Content */
.about-content {display: flex;
    justify-content: space-between;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: center;}

.about-text {width: 60%;
    color: #fff;
    line-height: 1.6;}

.about-text h2 {font-size: 28px;
    margin-bottom: 20px;
    color: #ccc;}

.about-text p {font-size: 18px;
    margin-bottom: 20px;
    color: #aaa;}

/* Image Styling */
.about-image {width: 35%;
    text-align: center;}

.about-image img {width: 100%;
    border-radius: 10px;}

/* Hyperlink styling for About page */
.about-text a {color: #ffd700; /* Gold color for the links */
    text-decoration: none; /* Remove the default underline */
    font-weight: bold; /* Make the links bold */
    transition: color 0.3s ease, border-bottom 0.3s ease; /* Smooth transition effects */
    border-bottom: 2px solid transparent; /* Border to indicate a link */}

.about-text a:hover {color: #ffa500; /* Darker gold on hover */
    border-bottom: 2px solid #ffa500; /* Underline effect on hover */}