/* v2-theme.css - modern theme for Operend */

:root {
  --primary-bg: #181826;
  --primary-dark: #10101a;
  --accent: #2ed47a;
  --accent-alt: #1998ff;
  --text-main: #fff;
  --text-muted: #b3b3c6;
  --card-bg: #23233a;
  --border-radius: 18px;
  --font-main: 'Inter', Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--primary-bg);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* NAVBAR */
.navbar {
  background: var(--primary-dark);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img {
  height: 40px;
}
.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu li a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.navbar-menu li a:hover {
  color: var(--accent);
}
.navbar-cta {
  background: var(--accent);
  color: #181826;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
  margin-left: 2rem;
}
.navbar-cta:hover {
  background: var(--accent-alt);
  color: #fff;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #181826 60%, #23233a 100%);
  padding: 5rem 0 3rem 0;
  display: flex;
  align-items: center;
  min-height: 60vh;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1 1 350px;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}
.hero-text p {
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
}
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #181826;
}
.btn-primary:hover {
  background: var(--accent-alt);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: #181826;
}
.hero-image {
  flex: 1 1 600px;
  display: flex;
  justify-content: center;
}
.hero-image img {
  max-width: 100%;
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(30,40,60,0.12);
}

@media (max-width: 700px) {
  .hero-image img {
    max-width: 90vw;
    min-width: 0;
  }
}

/* FEATURES SECTION */
.features {
  background: #19192a;
  padding: 4rem 0 3rem 0;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--text-main);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.feature-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.15s, box-shadow 0.15s;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(30,40,60,0.13);
}
.feature-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 1.2rem;
}

.feature-card .feature-icon-large {
  width: 140px !important;
  height: 140px !important;
}
.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--accent);
}
.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* CONTENT/ALTERNATING SECTIONS */
.content-section {
  background: #181826;
  padding: 4rem 0;
}
.content-section.alt {
  background: #23233a;
}
.content-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.content-flex.reverse {
  flex-direction: row-reverse;
}
.content-text {
  flex: 1 1 350px;
}
.content-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: var(--accent);
}
.content-text p {
  color: var(--text-muted);
  font-size: 1.15rem;
}
.content-image {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}
.content-image img {
  max-width: 400px;
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(30,40,60,0.10);
}

/* CONTACT SECTION */
.contact-section {
  background: #19192a;
  padding: 4rem 0 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-container {
  display: flex;
  justify-content: center;
}
.contact-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.contact-card h2 {
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}
.contact-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #23233a;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
}
.contact-form button {
  margin-top: 0.5rem;
}

/* FOOTER */
.footer {
  background: var(--primary-dark);
  padding: 2.2rem 0 1.2rem 0;
  color: var(--text-muted);
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-logo img {
  height: 32px;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-copy {
  font-size: 0.98rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .hero-content, .content-flex, .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .navbar-menu {
    gap: 1.2rem;
  }
  .footer-links {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 2.5rem 0 1.5rem 0;
  }
  .features, .content-section, .contact-section {
    padding: 2rem 0 1.5rem 0;
  }
  .feature-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .contact-card {
    padding: 1.2rem 0.7rem;
  }
} 