/* Updated styles for the website */

/* Color Scheme */
:root {
  --navy-blue: #0a192f;
  --navy-blue-light: #172a45;
  --gold: #d4af37;
  --gold-light: #f1c40f;
  --silver: #c0c0c0;
  --silver-light: #e5e5e5;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--navy-blue);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--gold);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--white);
  color: var(--navy-blue);
  border: 2px solid var(--white);
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: transparent;
  /*color: var(--navy-blue);*/
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy-blue);
}

.btn-outline:hover {
  background-color: var(--navy-blue);
  color: var(--white);
}

.btn-white-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-white-outline:hover {
  background-color: var(--white);
  color: var(--navy-blue);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: var(--navy-blue);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link i {
  margin-right: 0.5rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--white);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), url('images/hero-bg-new.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-down:hover {
  opacity: 1;
}

.scroll-down i {
  margin-top: 0.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-text .btn {
  margin-top: 1rem;
}

/* Achievements Section */
.achievements {
  background-color: var(--off-white);
}

.achievement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.achievement-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.achievement-card-image {
  height: 250px;
  overflow: hidden;
}

.achievement-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-card-image img {
  transform: scale(1.1);
}

.achievement-card-content {
  padding: 1.5rem;
}

.achievement-year {
  display: inline-block;
  padding: 0.1rem 0.8rem;
  background-color: var(--gold);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 0.750rem;
}

.achievement-card-content h2 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.achievement-card-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Vision Section */
.vision {
  background-color: var(--white);
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.vision-card {
  background-color: var(--off-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-card-icon {
  width: 80px;
  height: 80px;
  background-color: var(--navy-blue);
  /*color: var(--gold);*/
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  transition: all 0.3s ease;
}

.vision-card:hover .vision-card-icon {
  background-color: var(--gold);
  color: var(--navy-blue);
}

.vision-card h2 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.vision-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Program Section */
.program {
  background-color: var(--off-white);
}

/*.program-tabs {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  margin-bottom: 2rem;*/
/*  flex-wrap: wrap;*/
/*}*/

/*.program-tab {*/
/*  padding: 0.8rem 1.5rem;*/
/*  background-color: var(--white);*/
/*  color: var(--text-dark);*/
/*  border-radius: 4px;*/
/*  margin: 0.5rem;*/
/*  cursor: pointer;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.program-tab.active {*/
/*  background-color: var(--navy-blue);*/
/*  color: var(--white);*/
/*}*/

/*.program-pane {*/
/*  display: none;*/
/*  background-color: var(--white);*/
/*  padding: 2rem;*/
/*  border-radius: 8px;*/
/*  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);*/
/*}*/

/*.program-pane.active {*/
/*  display: block;*/
/*}*/

.program-pane h3 {
  color: var(--navy-blue);
  margin-bottom: 1.5rem;
}

.program-pane h4 {
  color: var(--navy-blue);
  margin: 1.5rem 0 0.5rem;
}

.program-pane p {
  color: var(--text-light);
  margin-bottom: 1rem;
}




.program-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--silver);
}

.program-tab {
  padding: 1rem 2rem;
  cursor: pointer;
  /*font-weight: 500;*/
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #999;
}

.program-tab.active {
  color: var(--navy-blue);
  border-bottom: 3px solid var(--gold);
}

.program-content {
  max-width: 800px;
  margin: 0 auto;
}

.program-pane {
  display: none;
}

.program-pane.active {
  display: block;
}


/* Gallery Section */
.gallery {
  background-color: var(--white);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: var(--silver-light);
  margin-bottom: 0;
}

/* Contact Section */
@import url('contact.css');

/* Footer */
.footer {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: row;
    justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social .social-link:hover {
  background-color: var(--gold);
  color: var(--navy-blue);
}

.footer-bottom {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--silver-light);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--navy-blue);
    padding: 2rem 0;
    text-align: center;
    transition: top 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    top: 70px;
  }
  
  .nav-item {
    margin: 1rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .program-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .program-tab {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .achievement-cards, .vision-cards, .gallery-container {
    grid-template-columns: 1fr;
  }
}
