/* Updated color theme to cream and royal blue */
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  color: #2c2c2c;
  background: #f5f1ed;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 237, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76, 56, 144, 0.1);
  padding: 16px 0;
  box-shadow: 0 2px 10px rgba(76, 56, 144, 0.05);
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 8px 25px rgba(76, 56, 144, 0.12);
  border-bottom-color: rgba(76, 56, 144, 0.2);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #4c3890;
  background: linear-gradient(135deg, #4c3890, #6d5ba9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(76, 56, 144, 0));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(76, 56, 144, 0.3));
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #4c3890;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4c3890;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Added hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(76, 56, 144, 0.1);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #4c3890;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background: #f5f1ed;
  border-bottom: 1px solid rgba(76, 56, 144, 0.1);
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76, 56, 144, 0.08) 0%, rgba(76, 56, 144, 0) 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: clamp(36px, 8vw, 68px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(135deg, #4c3890 0%, #6d5ba9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #555;
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 400;
  line-height: 1.8;
}

.app-store-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: #ffffff;
  border: 2px solid #4c3890;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(76, 56, 144, 0.1);
}

.store-button:hover {
  background: #4c3890;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(76, 56, 144, 0.2);
}

.store-button:hover .store-label,
.store-button:hover .store-name {
  color: #ffffff;
}

.store-button:hover .launch-date {
  color: #ede4db;
}

.store-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ede4db;
  border-radius: 10px;
  color: #4c3890;
  transition: all 0.3s ease;
}

.store-button:hover .store-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.store-icon svg {
  width: 28px;
  height: 28px;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-label {
  font-size: 11px;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.store-name {
  font-size: 16px;
  font-weight: 700;
  color: #4c3890;
  margin: 2px 0;
  transition: all 0.3s ease;
}

.launch-date {
  font-size: 12px;
  color: #4c3890;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Vision Section */
.vision {
  padding: 100px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(76, 56, 144, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.header-line {
  width: 80px;
  height: 4px;
  background: #4c3890;
  margin: 0 auto;
  border-radius: 2px;
}

.vision-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.vision-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  font-weight: 400;
}

/* Why Section */
.why-section {
  padding: 100px 0;
  background: #ede4db;
  border-top: 1px solid rgba(76, 56, 144, 0.1);
  border-bottom: 1px solid rgba(76, 56, 144, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(76, 56, 144, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(76, 56, 144, 0.05);
}

.feature-card:hover {
  border-color: #4c3890;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(76, 56, 144, 0.15);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* New flip card animation styles - door opening effect -->*/
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(76, 56, 144, 0.1);
}

.flip-card-front {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(76, 56, 144, 0.05);
  transition: all 0.3s ease;
}

.flip-card-front:hover {
  box-shadow: 0 10px 25px rgba(76, 56, 144, 0.15);
}

.flip-card-back {
  background: linear-gradient(135deg, #4c3890 0%, #6d5ba9 100%);
  color: #ffffff;
  transform: rotateY(180deg);
  box-shadow: 0 8px 20px rgba(76, 56, 144, 0.2);
}

.flip-card-front .feature-icon {
  font-size: 44px;
  margin-bottom: 20px;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.flip-card-front h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.flip-card-back p {
  font-size: 15px;
  color: #ede4db;
  line-height: 1.7;
  margin: 0;
}

/* Team Section */
.team {
  padding: 100px 0;
  background: #f5f1ed;
  border-bottom: 1px solid rgba(76, 56, 144, 0.1);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Updated team card styles to be smaller user cards */
.team-card {
  text-align: center;
  transition: all 0.3s ease;
  padding: 20px;
}

.team-card.user-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4c3890 0%, #6d5ba9 100%);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(76, 56, 144, 0.2);
  transition: all 0.3s ease;
  border: 3px solid #ffffff;
}

.team-card:hover .team-avatar {
  box-shadow: 0 10px 30px rgba(76, 56, 144, 0.3);
  transform: scale(1.05);
}

.team-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.role {
  font-size: 13px;
  color: #4c3890;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Contact Section */
/* Added contact section styles */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #4c3890 0%, #6d5ba9 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

.contact-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.contact-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.contact-content p {
  font-size: 16px;
  color: #ede4db;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-email {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #ede4db;
  text-decoration: none;
  padding: 16px 32px;
  border: 2px solid #ede4db;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.contact-email:hover {
  background: #ede4db;
  color: #4c3890;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-response-time {
  font-size: 14px;
  color: rgba(237, 228, 219, 0.8);
  margin: 0;
  letter-spacing: 0.5px;
}

/* Coming Soon Section */
.coming-soon {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(76, 56, 144, 0.1);
}

.coming-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.coming-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.coming-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.email-input {
  flex: 1;
  min-width: 280px;
  padding: 14px 20px;
  border: 2px solid #4c3890;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #ffffff;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.email-input:focus {
  border-color: #4c3890;
  box-shadow: 0 0 0 3px rgba(76, 56, 144, 0.1);
  background: #f5f1ed;
}

.email-input::placeholder {
  color: #999;
}

.notify-button {
  padding: 14px 40px;
  background: #4c3890;
  color: #ffffff;
  border: 2px solid #4c3890;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notify-button:hover {
  background: transparent;
  color: #4c3890;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(76, 56, 144, 0.2);
}

.download-preview {
  margin-top: 40px;
  padding: 24px;
  background: #ede4db;
  border: 1px solid rgba(76, 56, 144, 0.1);
  border-radius: 12px;
}

.download-preview p {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
}

.download-preview p strong {
  color: #4c3890;
}

/* Footer */
/* Enhanced footer styling with more advanced design -->*/
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #0f0f0f 100%);
  color: #999;
  padding: 100px 0 60px;
  border-top: 2px solid rgba(76, 56, 144, 0.3);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(76, 56, 144, 0.6), transparent);
  opacity: 0.5;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76, 56, 144, 0.4), transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.footer-main {
  flex: 1;
  min-width: 250px;
}

.footer-main p {
  font-size: 15px;
  color: #ccc;
  margin: 8px 0;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.footer-main p:first-child {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.footer-tagline {
  font-size: 14px;
  color: #4c3890;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: taglineGlow 2.5s ease-in-out infinite;
}

@keyframes taglineGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(76, 56, 144, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(76, 56, 144, 0.6);
  }
}

/* Added footer links styling */
.footer-links {
  margin-top: 16px;
  font-size: 13px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #4c3890;
  text-decoration: underline;
}

.separator {
  color: #555;
  margin: 0 8px;
}

.desktop-social {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(76, 56, 144, 0.15);
  color: #4c3890;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(76, 56, 144, 0.3);
}

.social-icon:hover {
  background: linear-gradient(135deg, #4c3890 0%, #6d5ba9 100%);
  color: #ffffff;
  transform: translateY(-5px) scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(76, 56, 144, 0.3);
  border-color: #4c3890;
}

/* Hide by default (desktop) */
.mobile-social-fixed {
  display: none;
}
/* Responsive Design */
@media (max-width: 768px) {
  /* Show hamburger menu and hide nav links on mobile */
  .hamburger {
    display: flex;
    
  }

  

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(245, 241, 237, 0.98);
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    border-bottom: 1px solid rgba(76, 56, 144, 0.1);
  }

  .nav-links.active {
    max-height: 300px;
    padding: 20px 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(76, 56, 144, 0.05);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-title {
    margin-bottom: 16px;
  }

  .app-store-buttons {
    gap: 16px;
    margin-top: 32px;
  }

  .store-button {
    min-width: 100%;
    justify-content: center;
  }

  .vision,
  .why-section,
  .team,
  .coming-soon {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .features-grid,
  .team-grid {
    gap: 24px;
  }

  .feature-card {
    padding: 32px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-group {
    flex-direction: column;
  }

  .email-input {
    min-width: unset;
    width: 100%;
  }

  .footer {
    padding: 60px 0 40px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-main p {
    font-size: 13px;
  }

  .footer-tagline {
    font-size: 12px;
    margin-top: 10px;
  }

  .footer-links {
    margin-top: 12px;
    font-size: 12px;
  }

  .desktop-social {
    justify-content: center;
    width: 100%;
  }

  /* Show vertical social icons on mobile */
  .desktop-social {
    display: none;
  }

  .mobile-social {
    display: flex;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-methods {
    flex-direction: column;
  }



/* Show on mobile only */
@media (max-width: 768px) {
  .mobile-social-fixed {
    display: flex;
    flex-direction: column; /* vertical layout */
    position: fixed;
    top: 50%; /* center vertically */
    right: 10px; /* distance from right edge */
    transform: translateY(-50%); /* perfect vertical centering */
    gap: 12px; /* space between icons */
    z-index: 1000;
  }

  /* Style individual icons */
  .mobile-social-fixed .social-icon {
    width: 40px;
    height: 40px;
    background-color: #fff; /* optional for visibility */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
  }

  .mobile-social-fixed .social-icon:hover {
    transform: scale(1.1);
  }
}


  /* Flip card responsive adjustments -->*/
  .flip-card {
    height: 280px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .logo {
    font-size: 16px;
  }
}
