/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0f0f0f;        /* dark background */
  --text: #ffffff;      /* main text */
  --accent: #ffd700;    /* bright yellow */
  --accent-alt: #1e90ff;/* vibrant blue */
  --muted: #cccccc;     /* secondary text */
  --card-bg: #1a1a1a;   /* card background */
}

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #141414;
  position: sticky;
  top: 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, var(--accent-alt), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

.team-member {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.3),
              0 0 20px rgba(255, 215, 0, 0.2);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--accent-alt); /* blue border */
  margin-bottom: 1rem;
}

.team-member h3 {
  margin: 0.5rem 0;
  color: var(--accent);
}

.team-member p {
  color: var(--muted);
  font-size: 0.95rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: #222;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h3 {
  margin: 0.5rem 0 0.2rem;
  color: #fff;
}

.role {
  font-weight: bold;
  color: #f39c12; /* accent color */
  margin-bottom: 0.5rem;
}

.bio {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.team-socials a {
  margin: 0 0.5rem;
  display: inline-block;
}

.team-socials img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.team-socials img:hover {
  transform: scale(1.2);
  filter: brightness(0) invert(0.7) sepia(1) hue-rotate(30deg) saturate(2);
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  text-align: center;
  background: #111; /* darker contrast background */
  border-top: 1px solid rgba(255,255,255,0.1);
}


.contact p {
  margin-bottom: 2rem;
  color: var(--muted);
}

/* Wrapper for layout */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: #1c1c1c;
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-alt);
  outline: none;
  box-shadow: 0 0 8px rgba(30,144,255,0.4);
}

.contact-form textarea {
  resize: none;
}

/* Submit Button */
.contact-form .submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
}

/* Alternative contact methods */
.contact-alt {
  flex: 1 1 250px;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.contact-alt p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.contact-alt .btn {
  display: block;
  margin: 0.5rem auto;
  width: fit-content;
}

/* Animation keyframes */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hidden state before scroll-in */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Active animation state */
[data-animate].active {
  animation: fadeSlideUp 0.8s ease forwards;
}

/* Inputs glowing effect */
.contact-form input,
.contact-form textarea {
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-alt);
  box-shadow: 0 0 12px rgba(30,144,255,0.5);
}

/* Button hover pulse */
.btn.submit-btn:hover {
  animation: pulse 0.6s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #1e1e1e;
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2em;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Cofounders Section */
.cofounders {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.cofounder {
  text-align: center;
  max-width: 200px;
}

.cofounder img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}


nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(rgba(30, 144, 255, 0.4), rgba(255, 215, 0, 0.2)),
              url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--text);
}



/* Social Media Section */
.socials {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg); /* matches site background */
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* optional subtle divider */
}



.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1); /* makes icons white to match theme */
  transition: transform 0.2s ease, filter 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.15);
  filter: brightness(0) invert(0.7) sepia(1) hue-rotate(30deg) saturate(2);
}

/* Survey Section */
.survey {
  padding: 4rem 2rem;
  background: #111;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}



.survey p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.survey-embed iframe {
  max-width: 100%;
  border-radius: 12px;
  border: none;
}


.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(90deg, var(--accent-alt), var(--accent));
  color: var(--text);
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7),
              0 0 20px rgba(30, 144, 255, 0.6);
}

/* Sections */
section {
  padding: 4rem 2rem;
  text-align: center;
}



.about p {
  max-width: 700px;
  margin: 1rem auto;
  color: var(--muted);
}

/* Features */
.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.3),
              0 0 20px rgba(255, 215, 0, 0.2);
}

.feature h3 {
  margin-bottom: 0.5rem;
  color: var(--accent-alt);
}

/* Contact */
.contact p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #141414;
  color: var(--muted);
  font-size: 0.9rem;
}
