/* Einstein High School - Tailwind CSS Output */
/* Generated CSS for production use */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, serif;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.875rem;
  }
}

a {
  color: #1a1a1a;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #d4caca;
}

button {
  transition: all 0.2s ease-in-out;
}

/* Navigation */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  height: 80px;
  overflow: visible;
}

.navbar-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  overflow: visible;
}

@media (min-width: 640px) {
  .navbar-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .navbar-container {
    padding: 0 2rem;
  }
}

.navbar-logo {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
  padding-top: 5px;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-logo-img {
  height: 170px;
  width: auto;
  max-width: 400px;
  margin-top: 45px;
}

/* Hamburger Menu */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

@media (min-width: 768px) {
  .hamburger-menu {
    display: none;
  }
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: #1a1a1a;
  transition: all 0.3s ease-in-out;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
  position: fixed;
  top: 80px;
  right: -100%;
  width: 30.5%;
  height: calc(100vh - 80px);
  background-color: #ffffff;
  flex-direction: column;
  padding: 1rem 0;
  box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  z-index: 999;
  overflow-y: auto;
}

.nav-links.active {
  display: flex;
  right: 0;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    height: auto;
    width: auto;
    right: auto;
    transition: none;
    z-index: auto;
    margin-left: auto;
  }
}

.nav-link {
  color: #1a1a1a;
  transition: color 0.2s ease-in-out;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.75rem 1rem;
}

@media (min-width: 768px) {
  .nav-link {
    padding: 0;
  }
}

.nav-link i {
  font-size: 1.1rem;
}

.nav-link:hover {
  color: #d4caca;
}

.nav-link.active {
  color: #d4caca;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: #1a1a1a;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #d4caca;
  color: #1a1a1a;
}

.btn-secondary {
  background-color: #d4caca;
  color: #1a1a1a;
}

.btn-secondary:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.btn-outline {
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: #ffffff;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1rem;
}

.hero-content h1 {
  color: #ffffff;
  margin-bottom: 0.75rem;
  /* Larger hero title for better prominence */
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-content .hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.hero-content .hero-lead,
.hero-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

@media (min-width: 640px) {
  .hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
  }
  .hero-content .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
    line-height: 1.45;
  }
  .hero-content .hero-lead {
    font-size: 1.05rem;
    line-height: 1.65;
  }
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 4.75rem;
    line-height: 1.05;
    margin-bottom: 1rem;
  }
  .hero-content .hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
  }
  .hero-content .hero-lead {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    line-height: 1.9;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 1rem;
  }
  .hero-content .hero-subtitle {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
  }
  .hero-content .hero-lead {
    font-size: 1.45rem;
    margin-bottom: 2rem;
    line-height: 1.9;
  }
}

/* Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  width: 300%;
  animation: slideshow-scroll 20s linear infinite;
}

@keyframes slideshow-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.67%);
  }
}

.slideshow-image {
  position: relative;
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  filter: blur(0.5px);
  flex-shrink: 0;
}

.slideshow-image.active {
  transform: translateX(0);
}

.slideshow-image.exit {
  transform: translateX(-100%);
}

/* Cards */
.card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-family: Georgia, serif;
  font-weight: 700;
  color: #1a1a1a;
}

.card-body {
  color: #4b5563;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-family: inherit;
  transition: all 0.2s ease-in-out;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #d4caca;
  box-shadow: 0 0 0 3px rgba(212, 202, 202, 0.1);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .footer-content {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    padding: 0 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h4 {
  font-size: 1.125rem;
  font-family: Georgia, serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #d4caca;
}

.footer-link {
  color: #d1d5db;
  transition: color 0.2s ease-in-out;
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.footer-link:hover {
  color: #d4caca;
}

/* Sections */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .section-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 2rem;
  }
}

/* Divider */
.divider {
  height: 4px;
  background-color: #d4caca;
  margin: 2rem 0;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d4caca;
  color: #1a1a1a;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Responsive Grid */
.grid-responsive {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-responsive {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-responsive {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Utilities */
.text-center-align {
  text-align: center;
}

.transition-smooth {
  transition: all 0.3s ease-in-out;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
    max-width: 80rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-down {
  animation: slideInDown 0.6s ease-out;
}

/* Responsive Utilities */
.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

/* Margin & Padding Utilities */
.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Text Utilities */
.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.text-center {
  text-align: center;
}

.text-gray-600 {
  color: #4b5563;
}

.text-white {
  color: #ffffff;
}

/* Width & Height */
.w-full {
  width: 100%;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-7xl {
  max-width: 80rem;
}

/* Display */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.grid {
  display: grid;
}

/* Borders */
.border {
  border: 1px solid #e5e7eb;
}

.border-b {
  border-bottom: 1px solid #e5e7eb;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Background Colors */
.bg-white {
  background-color: #ffffff;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.bg-gray-200 {
  background-color: #e5e7eb;
}

.bg-black {
  background-color: #000000;
}

.bg-charcoal {
  background-color: #1a1a1a;
}

.bg-mauve {
  background-color: #d4caca;
}

/* Scroll Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initial state for elements with scroll animation - use will-change for performance */
[data-scroll-animation] {
  will-change: transform, opacity;
}

/* Animated state - only apply when element is in view */
.scroll-animate-visible.animate-slide-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.scroll-animate-visible.animate-slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}
