:root {
  --strawberry-red: #ff2e63;
  --strawberry-glow: #ff2e6485;
  --charcoal-black: #121212;
  --charcoal-light: #1e1e1e;
  --milk-white: #fcfcfc;
  --text-muted: #a0a0a0;
  --glass-bg: rgba(30, 30, 30, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: "League Spartan", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--charcoal-black);
  color: var(--milk-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(
    to right,
    var(--milk-white),
    var(--strawberry-red)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}

/* Background Animation Placeholder */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

/* Glassmorphism */
.glass-nav {
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 46, 99, 0.2);
  border-color: var(--strawberry-red);
}

/* Navbar */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  gap: 10px;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px; /* Added mild curve to navbar logo */
}

.logo span {
  color: var(--strawberry-red);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--strawberry-red);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--milk-white);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    var(--strawberry-glow) 0%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: -1;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--strawberry-red);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--strawberry-red);
  color: var(--milk-white);
  box-shadow: 0 0 20px var(--strawberry-glow);
}

.btn-primary:hover {
  background-color: #d41e4e;
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--milk-white);
}

.btn-secondary:hover {
  background: var(--milk-white);
  color: var(--charcoal-black);
}

.hero-visual {
  flex: 1;
  max-width: 500px;
  height: 400px;
}

/* About Section */
.about {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--strawberry-red);
}

.about-img {
  width: 100%;
  border-radius: 24px; /* Increased curve for the banner */
  box-shadow: 0 10px 30px rgba(255, 46, 99, 0.2); /* Added glow to banner */
}

/* Projects Section */
.projects {
  padding: 5rem 0;
  background: linear-gradient(
    180deg,
    var(--charcoal-black),
    var(--charcoal-light)
  );
}

.project-showcase {
  max-width: 1000px;
  margin: 0 auto;
}

.project-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.project-app-logo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-info h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.project-tag {
  color: var(--strawberry-red);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.project-desc {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  max-width: 500px;
}

.btn-playstore {
  background: #333;
  color: var(--milk-white);
  border: 1px solid #555;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-playstore:hover {
  background: var(--strawberry-red);
  border-color: var(--strawberry-red);
}

.screenshots-container {
  overflow-x: auto;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.screenshots-container::-webkit-scrollbar {
  height: 8px;
}

.screenshots-container::-webkit-scrollbar-thumb {
  background: var(--strawberry-red);
  border-radius: 4px;
}

.screenshots-wrapper {
  display: flex;
  gap: 15px;
  width: max-content;
}

.screenshots-wrapper img {
  height: 300px;
  border-radius: 12px;
  border: 2px solid var(--glass-border);
  transition: transform 0.3s;
}

.screenshots-wrapper img:hover {
  transform: scale(1.03);
  border-color: var(--strawberry-red);
}

.app-banner-full img {
  width: 100%;
  border-radius: 12px;
  margin-top: 1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  text-align: center;
  padding: 3rem 2rem;
}

.contact-card i {
  font-size: 3rem;
  color: var(--strawberry-red);
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card a,
.contact-card p {
  color: var(--text-muted);
}

.highlight-link {
  color: var(--strawberry-red) !important;
  font-weight: 600;
}

/* Footer */
footer {
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
  background: var(--charcoal-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-size: 1.2rem;
}

.social-links a:hover {
  color: var(--strawberry-red);
}

/* Founder Profile Styles */
.founder-img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--strawberry-red);
    box-shadow: 0 0 15px rgba(255, 46, 99, 0.3);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Changed to center as per user request */
}

.founder-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--milk-white) !important;
}

.twitter-handle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1DA1F2 !important; /* Twitter Blue */
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    transition: 0.3s;
}

.twitter-handle:hover {
    color: var(--milk-white) !important;
}

.verified-badge-svg {
    width: 22px;
    height: 22px;
    margin-left: 4px;
}

.contact-card h3 {
    margin-bottom: 0.5rem; /* Reduced from original to fit name better */
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 6rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--charcoal-light);
    width: 100%;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .project-header {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
}
