  :root {
	 --primary-bg: #1a1614;
	 --secondary-bg: #2c2420;
	 --tertiary-bg: #3a2f2a;
	 --primary-text: #f0e6d2;
	 --accent-color: #d4af37;
}
@font-face {
  font-family: 'Bebas Neue';
  font-display: swap;
}
 body {
	 font-family: 'Montserrat', sans-serif;
	 text-align: justify;
	 background-color: var(--primary-bg);
	 color: var(--primary-text);
}
 h1, h2, h3, h4, h5, h6 {
	 font-family: 'Bebas Neue', sans-serif;
}
 .darker-bkg{
	 background-color: var(--tertiary-bg);
}
 .header-container {
	 position: relative;
	 height: 100vh;
}
 .main-header-img {
	 background: url('https://www.wcmo.edu/marketing/shady-the-dino/files/shady-hero-image-3840x2160.jpg') center/cover fixed;
}
 .summer-header-img {
	 background: url('https://www.wcmo.edu/marketing/shady-the-dino/files/Summer-in-the-shade.jpg') center/cover fixed;
}
 .mystery-header-img {
	 background: url('https://www.wcmo.edu/marketing/shady-the-dino/files/crime-scene-dig-site-1600x900.webp') center/cover fixed;
}
 .envsci-header-img {
	 background: url('https://www.wcmo.edu/marketing/shady-the-dino/files/env-sci-block.webp') center/cover fixed;
}
 .faculty-header-img {
	 background: url('https://www.wcmo.edu/marketing/shady-the-dino/files/dino-dig-5.webp') center/cover fixed;
}
 .header-overlay, .statistics-overlay {
	 position: absolute;
	 inset: 0;
	 background-color: rgba(26, 22, 20, 0.7);
}
 .header-text {
	 position: absolute;
	 bottom: 50px;
	 left: 50%;
	 transform: translateX(-50%);
	 width: 100%;
	 text-align: center;
	 padding: 20px;
}
 .header-text h1 {
	 font-size: clamp(2rem, 5vw, 4rem);
	 text-transform: uppercase;
	 letter-spacing: 0.1em;
	 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	 word-wrap: break-word;
}
 .content-section {
	 padding: 50px 0;
	 background-color: var(--secondary-bg);
}
 .read-more-link {
	 color: var(--primary-text);
	 text-decoration: none;
	 border-bottom: 2px solid var(--primary-text);
	 transition: all 0.3s ease;
	 font-weight: bold;
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 padding-bottom: 5px;
	 font-size: 0.9rem;
	 width: 100%;
}
 .read-more-link:hover {
	 border-bottom-color: var(--accent-color);
	 color: var(--accent-color);
}
 .read-more-link i {
	 transform: rotate(90deg);
	 transition: transform 0.3s ease;
}
 .read-more-link:hover i {
	 transform: rotate(90deg) translateX(5px);
}
 .video-container {
	 position: relative;
	 padding-bottom: 56.25%;
	 height: 0;
	 overflow: hidden;
	 max-width: 100%;
}
 .video-container iframe {
	 position: absolute;
	 inset: 0;
	 width: 100%;
	 height: 100%;
}
 .statistic-item {
	 text-align: center;
	 padding: 20px;
	 background-color: rgba(0, 0, 0, 0.5);
	 border-radius: 10px;
	 margin-bottom: 20px;
}
 .statistic-number {
	 font-size: 3rem;
	 font-weight: bold;
	 margin-bottom: 10px;
}
 .statistic-text {
	 font-size: 1.2rem;
}
 .timeline-container {
	 display: flex;
	 justify-content: space-between;
}
 .timeline-buttons {
	 display: flex;
	 flex-direction: column;
	 gap: 10px;
	 width: 35%;
}
 .timeline-buttons .btn {
	 width: 100%;
}
 .timeline-image {
	 width: 75%;
	 height: 400px;
	 background-size: contain;
	 background-repeat: no-repeat;
	 background-position: center;
	 transition: transform 0.5s ease, opacity 0.5s ease;
}
 #model-container {
	 width: 100%;
	 height: 400px;
}
 .model-viewer-container {
	 position: relative;
	 height: 450px;
	 overflow: hidden;
}
 .model-viewer-container::after {
	 content: 'Scroll to interact with the 3D model';
	 position: absolute;
	 bottom: 10px;
	 left: 50%;
	 transform: translateX(-50%);
	 background-color: rgba(0, 0, 0, 0.7);
	 color: white;
	 padding: 5px 10px;
	 border-radius: 5px;
	 font-size: 0.8rem;
	 opacity: 0.8;
}
 .statistics-banner, .statistics-background {
	 background: url('https://www.wcmo.edu/marketing/shady-the-dino/files/triceratops-skeleton.jpg') center/cover;
	 color: var(--primary-text);
	 padding: 50px 0;
	 position: relative;
}
 .statistics-content {
	 position: relative;
	 z-index: 1;
}
 .statistics-content p, .statistics {
	 transition: transform 0.3s ease;
}
 .statistics-content p:hover, .statistics:hover {
	 transform: scale(1.1);
}
 .photo-gallery {
	 display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 20px;
}
 .photo-gallery img {
	 width: 100%;
	 height: 200px;
	 object-fit: cover;
	 cursor: pointer;
	 transition: transform 0.3s ease;
	 border-radius: 10px;
}
 .photo-gallery img:hover {
	 transform: scale(1.05);
}
 .modal-content {
	 background-color: var(--secondary-bg);
}
 .modal-body img {
	 width: 100%;
	 height: auto;
}
 .statistics {
	 font-size: 2rem;
	 font-weight: bold;
}
 .footer {
	 background-color: var(--primary-bg);
	 color: var(--primary-text);
	 padding: 20px 0;
}
 .footer-logo {
	 max-width: 200px;
}
 .news-btn {
	 white-space: normal;
	 height: auto;
	 text-align: left;
	 padding: 10px 15px;
	 font-size: 0.9rem;
}
 .blockquote {
	 border-left: 5px solid var(--primary-text);
	 padding-left: 15px;
}
 .blockquote p {
	 font-size: 0.9rem;
}
 .footer-links {
	 columns: 2;
	 -webkit-columns: 2;
	 -moz-columns: 2;
}
 .footer-links a {
	 display: block;
	 color: var(--primary-text);
	 text-decoration: none;
	 margin-bottom: 10px;
}
 .social-icons {
	 font-size: 1.5rem;
}
 .social-icons a {
	 color: var(--primary-text);
	 margin-right: 15px;
}
 .article-image-right {
	 float: right;
	 margin-left: 15px;
	 margin-bottom: 15px;
	 max-width: 35%;
}
 .article-image-left {
	 float: left;
	 margin-right: 15px;
	 margin-bottom: 15px;
	 max-width: 35%;
}
 .article-section {
	 margin-bottom: 40px;
}
 .info-section {
	 background-color: var(--tertiary-bg);
	 border-left: 5px solid var(--primary-text);
	 padding: 20px;
	 margin: 30px 0;
	 text-align: left;
}
 .info-section h3 {
	 color: var(--primary-text);
	 margin-bottom: 15px;
}
 .main-story-divider {
	 border-top: 3px solid var(--primary-text);
	 margin: 40px 0;
}
 .card {
	 background-color: var(--tertiary-bg);
	 border: none;
	 margin-bottom: 20px;
	 text-align: left;
}
 .card-header {
	 background-color: var(--secondary-bg);
	 border-bottom: none;
}
 .card-body {
	 background-color: var(--tertiary-bg);
}
 .accordion-button {
	 background-color: var(--secondary-bg);
	 color: var(--primary-text);
	 font-size: 1.1rem;
}
 .accordion-button:not(.collapsed) {
	 background-color: var(--tertiary-bg);
	 color: var(--primary-text);
}
 .accordion-button::after {
	 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f0e6d2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
 .accordion-button:not(.collapsed)::after {
	 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f0e6d2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
 .accordion-body {
	 background-color: var(--tertiary-bg);
	 color: var(--primary-text);
}
 .learn-more-btn {
	 font-size: 1rem;
	 text-align: left;
	 white-space: normal;
	 height: auto;
}
 .student-image {
	 max-width: 150px;
	 max-height: 150px;
}
 .student-name {
	 font-size: 0.85rem;
}
 .transforming-minds {
	 background-color: var(--tertiary-bg);
}
 .testimonial-card {
	 background-color: var(--secondary-bg);
	 border-radius: 10px;
	 padding: 20px;
	 height: 100%;
	 display: flex;
	 flex-direction: column;
}
 .testimonial-image {
	 width: 240px;
	 height: 180px;
	 border-radius: 5%;
	 object-fit: cover;
	 margin: 0 auto 20px;
}
 .testimonial-card .blockquote {
	 flex-grow: 1;
	 display: flex;
	 flex-direction: column;
	 justify-content: space-between;
}
 .testimonial-card .blockquote p {
	 font-size: 0.9rem;
	 margin-bottom: 15px;
}
 .testimonial-card .blockquote-footer {
	 margin-top: auto;
}
 .accordion-image {
	 max-width: 500px;
	 height: auto;
	 border-radius: 8px;
	 margin-bottom: 15px;
}
 .accordion-content::after {
	 content: "";
	 display: table;
	 clear: both;
}
 @media (max-width: 768px) {
	 .header-text {
		 bottom: 0;
		 background-color: rgba(26, 22, 20, 0.8);
	}
	 .timeline-container {
		 flex-direction: column;
	}
	 .timeline-buttons {
		 flex-direction: row;
		 overflow-x: auto;
		 margin-bottom: 20px;
		 width: 100%;
	}
	 .timeline-image, #model-container {
		 width: 100%;
	}
	 .photo-gallery {
		 grid-template-columns: repeat(2, 1fr);
	}
	 .article-image-right, .article-image-left {
		 float: none;
		 margin: 0 0 15px 0;
		 max-width: 100%;
	}
	 .testimonial-card {
		 margin-bottom: 30px;
	}
	 .accordion-image {
		 max-width: 320px;
		 float: left;
		 margin-right: 15px;
		 margin-bottom: 0;
	}
}undefined}undefined 