/* Common styles for Jybe Mobile website */

/* Base styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header and navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
}

header img {
  height: 40px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

/* Hero section */
.hero {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  padding: 50px 20px;
  font-family: 'Montserrat', sans-serif;
  max-width: 1000px;
  margin: 0 auto;
}

.hero iframe {
  width: 100%;
  max-width: 1000px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: left;
}

.hero-text p {
  color: #777;
  font-weight: 400;
  text-align: left;
}

/* Apps showcase */
.apps {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.apps img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.screenshot-cards {
  width: 300px;
}

/* Content section */
.content-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.content-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 2em;
  margin-bottom: 20px;
  text-align: left;
}

.content-section h2 {
  text-align: left;
}

.content-section p,
.content-section ul,
.content-section div {
  text-align: left;
  color: #333;
}

.content-section em {
  font-style: italic;
  font-size: 1.1em;
}

/* Reviews section */
.reviews {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.reviews h3 {
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.review-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.review {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  width: 300px;
  text-align: left;
  font-size: 0.95em;
}

/* Contact section */
.contact {
  background: linear-gradient(90deg, #7f00ff, #e100ff);
  color: white;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
}

.contact button {
  background: black;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  font-size: 0.8em;
  background: #222;
  color: white;
  margin-top: auto;
}

/* Utility classes */
.white-text {
  color: white;
}

/* Media queries */
@media (max-width: 768px) {
  .screenshot-cards {
    display: none;
  }
  .review-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Contact page specific - hero with flex for iframe */
.hero.flex-hero {
  flex: 1;
  width: 100%;
}
