/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background-color: #fff;
  scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}
.nav-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('nyc-skyline.png') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 70px; /* offset navbar height */
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.5);
  z-index: 1;
}
.hero-content {
  z-index: 2;
  text-align: center;
}
.name-logo {
  max-width: 320px;
  filter: drop-shadow(2px 2px 6px rgba(255,255,255,0.8));
}

/* Bio Section */
.bio-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}
.container {
  max-width: 900px;
  margin: auto;
}
.bio-section h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 20px;
}
.bio-section p {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #444;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
}
.footer-container {
  font-size: 0.9rem;
}

/* Scroll-triggered Fade Animation */
.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}
.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.9s; }
.scroll-fade { 
opacity: 0; 
transform: translateY(20px); 
transition: opacity 1s ease-out, transform 1s ease-out; 
} 

.scroll-fade.show { 
opacity: 1; 
transform: translateY(0); 
} 


.contact {
  background: #f8f9fa;
  padding: 60px 20px;
}
.contact h2 {
  color: #003366;
  margin-bottom: 20px;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}
.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.contact button {
  background: #003366;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}
.contact button:hover {
  background: #0059b3;
}
#form-message {
  margin-top: 10px;
  color: green;
}
.two-column-section { 
display: flex; 
flex-wrap: wrap; 
justify-content: space-between; 
margin: 4rem auto; 
max-width: 1200px; 
padding: 0 2rem; 
gap: 2rem; 
} 

.column { 
flex: 1 1 45%; 
background: rgba(255, 255, 255, 0.85); 
padding: 2rem; 
border-radius: 10px; 
box-shadow: 0 0 20px rgba(0,0,0,0.05); 
transition: transform 0.6s ease, opacity 0.6s ease; 
} 

.column h2 { 
font-size: 1.8rem; 
margin-bottom: 1rem; 
border-bottom: 2px solid #ccc; 
padding-bottom: 0.5rem; 
} 

.column p { 
line-height: 1.7; 
font-size: 1.05rem; 
} 

/* Scroll animation */ 
.scroll-fade { 
opacity: 0; 
transform: translateY(20px); 
transition: opacity 1s ease, transform 1s ease; 
} 

.scroll-fade.visible { 
opacity: 1; 
transform: translateY(0); 
} 

.delay-1 { transition-delay: 0.2s; } 
.delay-2 { transition-delay: 0.4s; } 

@media (max-width: 768px) { 
.two-column-section { 
flex-direction: column; 
} 
.column { 
flex: 1 1 100%; 
} 
} 
