/* Home Page Specific Styles */

/* Hero Section Layout */
.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  margin-top: -150px;
  padding-top: 150px;
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../ChatGPT Image Sep 2, 2025, 01_49_20 PM.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(50, 78, 138, 0.3) 0%, rgba(90, 79, 207, 0.3) 100%);
  z-index: 2;
}

.hero-tagline-right {
  position: absolute;
  right: 80px;
  top: 65%;
  transform: translateY(-50%);
  z-index: 3;
  text-align: right;
  pointer-events: none;
}

.hero-tagline-right h1 {
  color: var(--white);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -1.5px;
}


/* Mission Statement */
.mission-statement {
  background-color: var(--white);
  color: var(--dark-grey);
  padding: 100px 0 80px;
  position: relative;
  overflow: visible;
  margin-top: 0;
  border-bottom: 1px solid var(--border-grey);
}

.mission-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></g></svg>');
  opacity: 0.3;
}

.mission-statement .container {
  position: relative;
  z-index: 1;
}

.mission-statement h2 {
  color: var(--hub-secondary);
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.mission-statement p {
  font-size: 19px;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
  color: var(--dark-grey);
}

/* Value Proposition Section */
.value-props {
  background-color: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--border-grey);
}

.value-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--hub-primary);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.value-item h3 {
  color: var(--hub-secondary);
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.value-item p {
  color: var(--medium-grey);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Section Title */
.section-title {
  color: var(--hub-secondary);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
}

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

/* Highlights Section */
.highlights {
  background-color: var(--light-grey);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-grey);
}

.highlight-card {
  position: relative;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  display: block;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--hub-primary);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.card-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.card-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  z-index: 1;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 3;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.card-content h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.card-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* About Snippet */
.about-snippet {
  background-color: var(--white);
  color: var(--dark-grey);
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--border-grey);
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-text {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--dark-grey);
  font-weight: 400;
}

.about-snippet .btn-secondary {
  color: var(--hub-primary);
  border-color: var(--hub-primary);
  padding: 14px 28px;
  font-weight: 600;
}

.about-snippet .btn-secondary:hover {
  background-color: var(--hub-primary);
  color: var(--white);
}

/* Responsive adjustments for home page */
/* Mobile styles moved to mobile-home.css */

/* Mobile styles moved to mobile-home.css */

/* Mobile styles moved to mobile-home.css */
