
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

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

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #2c3e50;
}

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

/* Header Styles */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo h1 {
  font-family: 'Montserrat', sans-serif;
  color: #1e3a5f;
  font-size: 1.8rem;
  font-weight: 600;
}

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

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1e3a5f;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: #f4f1e8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after,
.hero .dot-layer-1,
.hero .dot-layer-2,
.hero .dot-layer-3,
.hero .dot-layer-4 {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero::before {
  background-image: 
    radial-gradient(circle at 30% 60%, rgba(255, 215, 0, 0.6) 20px, transparent 20px),
    radial-gradient(circle at 75% 25%, rgba(255, 223, 0, 0.4) 15px, transparent 15px);
  background-size: 800px 800px, 700px 700px;
  opacity: 0;
  animation: waveReflection1 15s ease-in-out infinite;
}

.hero::after {
  background-image: 
    radial-gradient(circle at 60% 80%, rgba(255, 235, 59, 0.5) 18px, transparent 18px),
    radial-gradient(circle at 20% 35%, rgba(255, 215, 0, 0.3) 12px, transparent 12px);
  background-size: 900px 900px, 600px 600px;
  opacity: 0;
  animation: waveReflection2 18s ease-in-out infinite 5s;
}

@keyframes waveReflection1 {
  0% { 
    opacity: 0;
  }
  20% { 
    opacity: 0.3;
  }
  40% { 
    opacity: 0.8;
  }
  60% { 
    opacity: 0.4;
  }
  80% { 
    opacity: 0.6;
  }
  100% { 
    opacity: 0;
  }
}

@keyframes waveReflection2 {
  0% { 
    opacity: 0;
  }
  25% { 
    opacity: 0.5;
  }
  50% { 
    opacity: 0.9;
  }
  75% { 
    opacity: 0.3;
  }
  100% { 
    opacity: 0;
  }
}

@keyframes waveReflection3 {
  0% { 
    opacity: 0;
  }
  30% { 
    opacity: 0.6;
  }
  60% { 
    opacity: 0.8;
  }
  90% { 
    opacity: 0.2;
  }
  100% { 
    opacity: 0;
  }
}

.hero .dot-layer-1,
.hero .dot-layer-2,
.hero .dot-layer-3,
.hero .dot-layer-4,
.hero .dot-layer-5,
.hero .dot-layer-6,
.hero .dot-layer-7,
.hero .dot-layer-8,
.hero .dot-layer-9,
.hero .dot-layer-10,
.hero .dot-layer-11 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero .dot-layer-1 {
  background-image: 
    radial-gradient(circle at 50% 70%, rgba(255, 215, 0, 0.4) 25px, transparent 25px);
  background-size: 1000px 1000px;
  opacity: 0;
  animation: waveReflection3 12s ease-in-out infinite 3s;
}

.hero .dot-layer-2 {
  background-image: 
    radial-gradient(circle at 80% 40%, rgba(255, 235, 59, 0.3) 15px, transparent 15px),
    radial-gradient(circle at 15% 85%, rgba(255, 223, 0, 0.4) 20px, transparent 20px);
  background-size: 1200px 1200px, 800px 800px;
  opacity: 0;
  animation: waveReflection4 16s ease-in-out infinite 7s;
}

.hero .dot-layer-3 {
  background-image: 
    radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.35) 18px, transparent 18px),
    radial-gradient(circle at 85% 75%, rgba(255, 235, 59, 0.25) 12px, transparent 12px);
  background-size: 900px 900px, 1100px 1100px;
  opacity: 0;
  animation: waveReflection5 14s ease-in-out infinite 1s;
}

.hero .dot-layer-4 {
  background-image: 
    radial-gradient(circle at 25% 50%, rgba(255, 223, 0, 0.3) 22px, transparent 22px),
    radial-gradient(circle at 70% 90%, rgba(255, 215, 0, 0.2) 14px, transparent 14px);
  background-size: 1000px 1000px, 750px 750px;
  opacity: 0;
  animation: waveReflection6 20s ease-in-out infinite 11s;
}

.hero .dot-layer-5 {
  background-image: 
    radial-gradient(circle at 35% 30%, rgba(255, 235, 59, 0.25) 6px, transparent 6px),
    radial-gradient(circle at 90% 60%, rgba(255, 223, 0, 0.2) 4px, transparent 4px);
  background-size: 500px 500px, 400px 400px;
  opacity: 0;
  animation: waveReflection7 13s ease-in-out infinite 2s;
}

.hero .dot-layer-6 {
  background-image: 
    radial-gradient(circle at 10% 75%, rgba(255, 215, 0, 0.3) 5px, transparent 5px),
    radial-gradient(circle at 55% 15%, rgba(255, 235, 59, 0.15) 7px, transparent 7px);
  background-size: 350px 350px, 600px 600px;
  opacity: 0;
  animation: waveReflection8 17s ease-in-out infinite 6s;
}

.hero .dot-layer-7 {
  background-image: 
    radial-gradient(circle at 75% 45%, rgba(255, 223, 0, 0.2) 4px, transparent 4px),
    radial-gradient(circle at 30% 85%, rgba(255, 215, 0, 0.25) 6px, transparent 6px);
  background-size: 450px 450px, 300px 300px;
  opacity: 0;
  animation: waveReflection9 19s ease-in-out infinite 9s;
}

.hero .dot-layer-8 {
  background-image: 
    radial-gradient(circle at 65% 25%, rgba(255, 235, 59, 0.18) 5px, transparent 5px),
    radial-gradient(circle at 15% 55%, rgba(255, 223, 0, 0.22) 3px, transparent 3px);
  background-size: 550px 550px, 350px 350px;
  opacity: 0;
  animation: waveReflection10 15s ease-in-out infinite 4s;
}

.hero .dot-layer-9 {
  background-image: 
    radial-gradient(circle at 45% 70%, rgba(255, 215, 0, 0.15) 7px, transparent 7px),
    radial-gradient(circle at 85% 35%, rgba(255, 235, 59, 0.28) 4px, transparent 4px);
  background-size: 400px 400px, 500px 500px;
  opacity: 0;
  animation: waveReflection11 21s ease-in-out infinite 8s;
}

.hero .dot-layer-10 {
  background-image: 
    radial-gradient(circle at 20% 40%, rgba(255, 223, 0, 0.24) 5px, transparent 5px),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.16) 6px, transparent 6px);
  background-size: 300px 300px, 450px 450px;
  opacity: 0;
  animation: waveReflection12 16s ease-in-out infinite 12s;
}

.hero .dot-layer-11 {
  background-image: 
    radial-gradient(circle at 60% 55%, rgba(255, 235, 59, 0.2) 4px, transparent 4px),
    radial-gradient(circle at 25% 20%, rgba(255, 223, 0, 0.18) 5px, transparent 5px);
  background-size: 380px 380px, 420px 420px;
  opacity: 0;
  animation: waveReflection13 14s ease-in-out infinite 1s;
}

@keyframes waveReflection4 {
  0% { 
    opacity: 0;
  }
  15% { 
    opacity: 0.4;
  }
  35% { 
    opacity: 0.7;
  }
  55% { 
    opacity: 0.2;
  }
  75% { 
    opacity: 0.5;
  }
  100% { 
    opacity: 0;
  }
}

@keyframes waveReflection5 {
  0% { 
    opacity: 0;
  }
  25% { 
    opacity: 0.3;
  }
  50% { 
    opacity: 0.6;
  }
  75% { 
    opacity: 0.4;
  }
  100% { 
    opacity: 0;
  }
}

@keyframes waveReflection6 {
  0% { 
    opacity: 0;
  }
  20% { 
    opacity: 0.5;
  }
  40% { 
    opacity: 0.3;
  }
  60% { 
    opacity: 0.7;
  }
  80% { 
    opacity: 0.2;
  }
  100% { 
    opacity: 0;
  }
}

@keyframes waveReflection7 {
  0% { opacity: 0; }
  30% { opacity: 0.4; }
  60% { opacity: 0.2; }
  80% { opacity: 0.6; }
  100% { opacity: 0; }
}

@keyframes waveReflection8 {
  0% { opacity: 0; }
  25% { opacity: 0.3; }
  50% { opacity: 0.7; }
  75% { opacity: 0.1; }
  100% { opacity: 0; }
}

@keyframes waveReflection9 {
  0% { opacity: 0; }
  35% { opacity: 0.5; }
  70% { opacity: 0.3; }
  90% { opacity: 0.4; }
  100% { opacity: 0; }
}

@keyframes waveReflection10 {
  0% { opacity: 0; }
  20% { opacity: 0.6; }
  45% { opacity: 0.2; }
  70% { opacity: 0.5; }
  100% { opacity: 0; }
}

@keyframes waveReflection11 {
  0% { opacity: 0; }
  40% { opacity: 0.4; }
  65% { opacity: 0.8; }
  85% { opacity: 0.2; }
  100% { opacity: 0; }
}

@keyframes waveReflection12 {
  0% { opacity: 0; }
  15% { opacity: 0.3; }
  40% { opacity: 0.6; }
  75% { opacity: 0.4; }
  100% { opacity: 0; }
}

@keyframes waveReflection13 {
  0% { opacity: 0; }
  25% { opacity: 0.5; }
  55% { opacity: 0.3; }
  80% { opacity: 0.7; }
  100% { opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #f4f1e8;
  text-shadow: 
    0 0 8px rgba(255, 215, 0, 0.4),
    0 0 16px rgba(255, 215, 0, 0.3),
    0 0 24px rgba(255, 215, 0, 0.2),
    2px 2px 4px rgba(0,0,0,0.3);
  animation: textGlow 25s ease-in-out infinite;
}

@keyframes textGlow {
  0% {
    text-shadow: 
      0 0 8px rgba(255, 215, 0, 0.4),
      0 0 16px rgba(255, 215, 0, 0.3),
      0 0 24px rgba(255, 215, 0, 0.2),
      2px 2px 4px rgba(0,0,0,0.3);
  }
  25% {
    text-shadow: 
      0 0 12px rgba(255, 223, 0, 0.6),
      0 0 20px rgba(255, 215, 0, 0.4),
      0 0 28px rgba(255, 215, 0, 0.3),
      2px 2px 4px rgba(0,0,0,0.3);
  }
  50% {
    text-shadow: 
      0 0 6px rgba(255, 215, 0, 0.3),
      0 0 12px rgba(255, 215, 0, 0.2),
      0 0 18px rgba(255, 215, 0, 0.1),
      2px 2px 4px rgba(0,0,0,0.3);
  }
  75% {
    text-shadow: 
      0 0 10px rgba(255, 235, 59, 0.5),
      0 0 18px rgba(255, 223, 0, 0.35),
      0 0 26px rgba(255, 215, 0, 0.25),
      2px 2px 4px rgba(0,0,0,0.3);
  }
  100% {
    text-shadow: 
      0 0 8px rgba(255, 215, 0, 0.4),
      0 0 16px rgba(255, 215, 0, 0.3),
      0 0 24px rgba(255, 215, 0, 0.2),
      2px 2px 4px rgba(0,0,0,0.3);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-style: italic;
  color: #f4f1e8;
  opacity: 0.9;
}

.hero-tagline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #d4af37;
  font-weight: 300;
}

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

/* Button Styles */
.btn {
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 400;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: #d4af37;
  color: #1e3a5f;
}

.btn-primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #f4f1e8;
  border: 2px solid #f4f1e8;
}

.btn-secondary:hover {
  background: #f4f1e8;
  color: #1e3a5f;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f8f9fa;
}

.about h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #1e3a5f;
  font-weight: 300;
}

.poetry-section {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.poetry-line {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #2c3e50;
  font-style: italic;
}

.philosophy {
  text-align: center;
  margin-top: 3rem;
}

.philosophy p {
  font-size: 1.4rem;
  color: #1e3a5f;
  font-weight: 400;
  line-height: 1.8;
}

/* Fellowship Section */
.fellowship {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5364 100%);
  color: #f4f1e8;
}

.fellowship h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #f4f1e8;
  font-weight: 300;
}

.fellowship-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.fellowship-description p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-style: italic;
}

.quote-section {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(244, 241, 232, 0.1);
  border-radius: 10px;
  border-left: 4px solid #d4af37;
}

.quote-section blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: #d4af37;
  margin-bottom: 1rem;
}

.quote-caption {
  font-size: 1rem;
  opacity: 0.8;
  font-style: normal;
}

.fellowship-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-card {
  background: rgba(244, 241, 232, 0.1);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.detail-card h3 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 400;
}

.detail-card p {
  margin-bottom: 0.5rem;
}

.detail-note {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
}

/* Apply Section */
.apply {
  padding: 100px 0;
  background: #f4f1e8;
  text-align: center;
}

.apply h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #1e3a5f;
  font-weight: 300;
}

.apply > .container > p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.application-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item h3 {
  margin-bottom: 1rem;
  color: #1e3a5f;
  font-size: 1.3rem;
  font-weight: 400;
}

.info-item p {
  color: #2c3e50;
}

/* Footer */
footer {
  background: #0f1419;
  color: #f4f1e8;
  padding: 60px 0 30px;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  color: #d4af37;
  font-weight: 400;
}

.footer-section p {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #2c3e50;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .fellowship-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .fellowship-details {
    order: -1;
  }
  
  .application-info {
    grid-template-columns: 1fr;
  }
  
  .about h2,
  .fellowship h2,
  .apply h2 {
    font-size: 2.2rem;
  }
  
  .poetry-line {
    font-size: 1.1rem;
  }
  
  .philosophy p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 15px;
  }
}
