:root {
  --dark-blue: #1a365d;
  --gold: #b7a069;
  --broken-white: #fafafa;
  --light-gray: #f7f7f7;
  --medium-gray: #6b7280;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
  color: var(--dark-blue);
  background-color: var(--broken-white);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0;
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 1000;
}

.header.scrolled {
  background-color: rgba(250, 250, 250, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

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

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(250, 250, 250, 0.4);
}

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

.logo-container img {
  height: 128px;
  margin-bottom: 2rem;
}

/* Vision Section */
.vision {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.background-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.1;
}

.background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.vision-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vision-content h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--gold);
  margin: 2rem auto;
}

.vision-content h3 {
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* Team Section */
.team {
  padding: 8rem 0;
  background-color: var(--light-gray);
}

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

.team-content h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.member-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.member-image img:hover {
  filter: grayscale(0);
}

.team-member h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--medium-gray);
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 40px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .vision-content h2 {
    font-size: 2rem;
  }
  
  .vision-content h3 {
    font-size: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
}
