/* ============================================
   ÖZŞEN KOLEJİ - Page-Specific Styles
   ============================================ */

/* ============================================
   HOME - Quick Links
   ============================================ */

.quick-links-section {
  background: var(--primary);
  padding: 20px 0;
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.quick-link-item:last-child { border-right: none; }

.quick-link-item i {
  font-size: 1.125rem;
  color: var(--secondary);
}

.quick-link-item span {
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 600;
}

.quick-link-item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   HOME - About Section
   ============================================ */

.about-home-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-home-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-home-img-placeholder {
  width: 100%;
  height: 450px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
}

.about-founded-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-founded-badge .year {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-founded-badge .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.about-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.about-check-list li i {
  width: 24px;
  height: 24px;
  background: var(--accent-ultra-light);
  color: var(--accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ============================================
   HOME - Events
   ============================================ */

.events-section { background: var(--bg-light); }

.event-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  margin-bottom: 1rem;
}

.event-card:last-child { margin-bottom: 0; }

.event-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.event-date-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
  min-width: 58px;
  flex-shrink: 0;
}

.event-date-box .day {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 1;
}

.event-date-box .month {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin-top: 2px;
}

.event-content .event-cat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.event-content .event-title {
  font-family: var(--font-sub);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.event-content .event-time {
  font-size: 0.8125rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================
   HOME - Map Section
   ============================================ */

.map-section .map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.map-section .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   HAKKIMIZDA PAGE
   ============================================ */

.mission-vision-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.mission-vision-card.secondary::before {
  background: var(--gradient-secondary);
}

.mission-vision-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.mission-vision-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.mission-vision-card.secondary .mission-vision-icon {
  background: var(--secondary-ultra-light);
  color: var(--secondary-dark);
}

.value-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.value-text h5 {
  font-family: var(--font-sub);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.value-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   LEVEL PAGES
   ============================================ */

.program-feature {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  text-align: center;
}

.program-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.program-feature-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}

.program-feature h5 {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.program-feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Teacher card */
.teacher-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  text-align: center;
}

.teacher-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.teacher-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--text-light);
}

.teacher-card-body {
  padding: 1.25rem;
}

.teacher-card-name {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.teacher-card-branch {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 500;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-filter-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  background: var(--bg-white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-full-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-full-item .gi-inner {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform var(--transition-slow);
}

.gallery-full-item .gi-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-full-item .gi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,77,142,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: #fff;
}

.gallery-full-item .gi-overlay i { font-size: 1.75rem; }
.gallery-full-item .gi-overlay span { font-size: 0.8125rem; font-weight: 600; }

.gallery-full-item:hover .gi-inner,
.gallery-full-item:hover .gi-inner img { transform: scale(1.08); }
.gallery-full-item:hover .gi-overlay { opacity: 1; }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-ultra-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-info-content .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.contact-info-content .value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

/* ============================================
   REGISTRATION PAGE
   ============================================ */

.reg-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reg-step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.reg-step-text h6 {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.15rem;
}

.reg-step-text p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   ANNOUNCEMENTS
   ============================================ */

.ann-list-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition-base);
  margin-bottom: 1rem;
}

.ann-list-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: var(--primary-light);
}

.ann-date {
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
  background: var(--primary-ultra-light);
  padding: 10px;
  border-radius: var(--radius-sm);
}

.ann-date .day {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.ann-date .month {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 2px;
}

.ann-content .ann-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.ann-content .ann-title {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.ann-content .ann-title a:hover { color: var(--primary); }

.ann-content .ann-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   SUCCESS / ACHIEVEMENTS
   ============================================ */

.achievement-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.achievement-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.achievement-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.achievement-title {
  font-family: var(--font-sub);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.achievement-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   PARENTS PAGE
   ============================================ */

.parent-resource-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  height: 100%;
}

.parent-resource-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.parent-resource-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-ultra-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.parent-resource-body h6 {
  font-family: var(--font-sub);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.375rem;
}

.parent-resource-body p {
  font-size: 0.8375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CALENDAR PAGE
   ============================================ */

.calendar-month-header {
  background: var(--gradient-primary);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar-month-header h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  color: #fff;
  margin: 0;
}

.calendar-grid {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
}

.calendar-day-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--primary-ultra-light);
}

.calendar-day-headers div {
  padding: 0.75rem;
  text-align: center;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.cal-day {
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0.5rem;
  min-height: 90px;
  position: relative;
}

.cal-day:nth-child(7n) { border-right: none; }

.cal-day-num {
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cal-day.today .cal-day-num {
  background: var(--primary);
  color: #fff;
}

.cal-day.other-month .cal-day-num { color: var(--text-light); }

.cal-event {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.cal-event.academic { background: var(--primary-ultra-light); color: var(--primary); }
.cal-event.social { background: var(--secondary-ultra-light); color: var(--secondary-dark); }
.cal-event.sport { background: #FEF3F2; color: var(--danger); }

/* ============================================
   CAREER PAGE
   ============================================ */

.job-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition-base);
  margin-bottom: 1rem;
}

.job-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
  transform: translateX(6px);
}

.job-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-ultra-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.job-content .job-title {
  font-family: var(--font-sub);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.job-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.job-meta-item {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-meta-item i { color: var(--secondary); }

.job-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   CAMPUS PAGE
   ============================================ */

.campus-feature {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
}

.campus-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.campus-feature-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.8);
}

.campus-feature-body { padding: 1.5rem; }

.campus-feature-body h5 {
  font-family: var(--font-sub);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.campus-feature-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   RESPONSIVE EXTRAS
   ============================================ */

@media (max-width: 767px) {
  .about-check-list { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .cal-day { min-height: 60px; }
  .cal-event { display: none; }
  .cal-day.has-event .cal-day-num { position: relative; }
  .cal-day.has-event .cal-day-num::after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--secondary);
  }
}
