/* General Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, p {
  margin: 0;
}

a {
  text-decoration: none;
}

/* Hero Section */
header.hero {
  background: linear-gradient(to bottom, #2196F3, #BADCF7);
  color: #fff;
  text-align: center;
  padding: 2em 1em;
}

header.hero .hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

header.hero .hero-icon {
  width: 60px;
  height: 60px;
  border-radius: 15%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header.hero h1 {
  font-size: 2.5em;
  font-weight: bold;
}

header.hero p,
header.hero .cta {
  display: block;
  text-align: center;
  margin: 0 auto;
}

header.hero .subtitle .link {
  color: #FF0000; /* YouTube Red */
  font-weight: bold;
  text-decoration: underline;
}

header.hero .cta {
  display: inline-block;
  margin-top: 1em;
  padding: 0.5em 1.5em;
  background: #34a853; /* SafeGreen */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.hero .cta:hover {
  background: #2e7d32; /* Darker SafeGreen */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Screenshots Section */
.screenshots {
  padding: 2em 1em;
  text-align: center;
}

.screenshots h2 {
  margin-bottom: 1em;
}

.screenshots .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.screenshots img {
  max-width: 150px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.screenshots img:hover {
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
}

.caption {
  color: white;
  text-align: center;
  margin-top: 1em;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2em;
  font-weight: bold;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: white;
  font-size: 2em;
  padding: 1em;
  transform: translateY(-50%);
  background: none;
  border: none;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover, .next:hover {
  color: #ccc;
}

/* Download Section */
.download {
  padding: 2em 1em;
  text-align: center;
}

.download h2 {
  margin-bottom: 1em;
}

.download .download-link {
  margin-top: 1em; /* Adds spacing between text and button */
}

.download .btn {
  display: inline-block;
  padding: 0.7em 1.5em;
  background: #0078d7;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Privacy Section */
.privacy {
  padding: 2em 1em;
  text-align: center;
}

.privacy h2 {
  margin-bottom: 1em;
}

.privacy .collapsible {
  background-color: #2196F3;
  color: white;
  cursor: pointer;
  padding: 1em;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.2em;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.privacy .collapsible:hover {
  background-color: #1e88e5; /* Slightly darker blue */
}

.privacy .content {
  padding: 1em;
  display: none;
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 1em;
  text-align: left;
}

.privacy .content.show {
  display: block;
}

/* Footer */
footer.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1em 0;
}

footer.footer a {
  color: #34a853;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .screenshots .gallery {
    flex-direction: column;
  }

  header.hero {
    padding: 1.5em 1em;
  }

  header.hero .cta {
    font-size: 1em;
    padding: 0.5em 1em;
  }

  .screenshots img {
    max-width: 100%;
  }

  .download .btn {
    padding: 0.5em 1em;
    font-size: 0.9em;
  }
}

/* About Dry Ride Section */
.about {
  padding: 2em 1em;
  background-color: #ffffff;
  text-align: center;
}

.about h2 {
  margin-bottom: 1em;
  font-size: 2em;
  color: #2196F3;
}

.about h3 {
  margin: 1.5em 0 1em;
  font-size: 1.5em;
  color: #333;
}

.about p {
  line-height: 1.8;
  margin-bottom: 1.5em;
  color: #555;
}

.about ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 2em;
  max-width: 800px;
  text-align: left;
}

.about ul li {
  margin: 0.5em 0;
  line-height: 1.6;
  color: #444;
}

.about ul li strong {
  color: #2196F3;
}

.about p strong {
  color: #34a853;
}

p {
  max-width: 800px; /* Adjust width as needed */
  margin: 0 auto;
  text-align: left;
}