/* Base Styles and Reset */
:root {
  --primary-color: #3a86ff;
  --secondary-color: #8338ec;
  --accent-color: #ff006e;
  --dark-color: #14213d;
  --light-color: #f8f9fa;
  --gray-color: #e5e5e5;
  --text-color: #333333;
  --success-color: #06d6a0;
  --warning-color: #ffbe0b;
  --error-color: #ef476f;
  --heading-font: "Montserrat", sans-serif;
  --body-font: "Open Sans", sans-serif;
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 0.5em;
  color: var(--dark-color);
  line-height: 1.3;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5em;
}

.subtitle {
  font-size: 1.4rem;
  color: var(--dark-color);
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 5rem 0;
}

/* Header & Navigation */
header {
  background-color: var(--light-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Coming Soon Page Styles */
.ining-soon-container {
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.ining-soon-content {
  max-width: 900px;
  margin: 0 auto;
}

.main-title {
  font-size: 3.5rem;
  margin-bottom: 0.2em;
  color: var(--primary-color);
  animation: fadeIn 1s ease-out;
}

.description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.features-preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.feature {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  flex: 1 1 300px;
  max-width: 350px;
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

/* Newsletter Form */
.newsletter {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 2rem 0;
}

.newsletter h3 {
  margin-bottom: 1.5rem;
}

#notify-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
}

#notify-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

#notify-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

#notify-form button:hover {
  background-color: var(--secondary-color);
}

/* Countdown Timer */
.countdown {
  margin: 3rem 0;
}

#timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--dark-color);
  color: white;
  padding: 1rem;
  min-width: 90px;
  border-radius: var(--border-radius);
}

.time-block span:first-child {
  font-size: 2.5rem;
  font-weight: 700;
}

.time-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Features Page Styles */
.features-container {
  padding: 2rem 5%;
}

.hero-section {
  text-align: center;
  padding: 4rem 1rem;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.feature-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin: 4rem 0;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.feature-section.alt {
  flex-direction: row-reverse;
}

.feature-content,
.feature-image {
  flex: 1 1 400px;
}

.feature-content h2 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-details {
  margin-top: 1.5rem;
}

.feature-details li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.placeholder {
  background-color: var(--gray-color);
  min-height: 250px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  opacity: 0.5;
}

.cta-section {
  text-align: center;
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 2rem;
  margin: 4rem 0 2rem;
  border-radius: var(--border-radius);
}

.cta-section h2 {
  color: white;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  margin-top: 1.5rem;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

/* About Page Styles */
.about-container {
  padding: 2rem 5%;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin: 4rem 0;
  padding: 3rem 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-section.alt {
  flex-direction: row-reverse;
}

.about-content,
.about-image {
  flex: 1 1 400px;
}

.about-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.values-list {
  margin-top: 1.5rem;
}

.values-list li {
  margin-bottom: 1.5rem;
}

.values-list h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 4rem 0;
}

.team-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-member {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: var(--light-color);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.member-title {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0.5rem 0 1rem;
}

/* Contact Section */
.contact-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}

.contact-method h3 {
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.social-links-contact {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--gray-color);
  border-radius: var(--border-radius);
  font-family: var(--body-font);
}

.submit-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.8rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-button:hover {
  background-color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 5%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: white;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
}

.copyright {
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .feature,
  .team-member {
    flex: 1 1 100%;
  }

  #timer {
    gap: 0.5rem;
  }

  .time-block {
    min-width: 70px;
  }

  .contact-methods {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .feature-section,
  .about-section {
    padding: 1.5rem;
  }

  #notify-form {
    flex-direction: column;
  }
}
