
/* Basic styling */
body {
  
  margin: 0;
  padding: 0px;
  background-color:white;
  width: 100%;
}

/* Navigation bar */
nav {
  background-color: white; /* Ensures white background */
  padding: 60px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 40px;
}

.logo-link {
  text-decoration: none;
}

.logo-link:visited,
.logo-link:active,
.logo-link:hover {
  color: inherit;
  border: none;
  outline: none;
}

/* Dropdown Menu #1 */
.dropdown {
  position:static;
  display: inline-block;
}

.dropdown button {
  background-color: white;
  color: black;
  padding: 10px 20px;
  cursor: pointer;
  
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fffe76;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Buttons */
.button-container  {
  justify-content: center;
  font-family: "caramel-regular";
  flex-wrap: wrap;
  text-align: center;
}

.button-container button {
  background-color: white;
  color: black;
  border: none;
  cursor: pointer;
  font-size: 60px;
  font-family: "caramel-regular";
}

.button-container button:hover {
  background-color: #ddd;
}

/* Newsletter Container */
.newsletter-container {
  background-color: white;
  padding: 20px 30px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  text-align: center;
  max-width: 400px;
  width: 100%;
}

/* Headings and Text */
.newsletter-container h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.newsletter-container p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
}

/* Email Input */
.email-input {
  width: calc(100% - 110px);
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px; /* Rounded on the left side */
  outline: none;
  box-sizing: border-box; /* Ensures consistent sizing */
}

/* Subscribe Button */
.subscribe-button {
  background-color: white; /* Primary blue */
  color: black;
  border: none;
  border-radius: 0 5px 5px 0; /* Rounded on the right side */
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.subscribe-button:hover {
  background-color: #fff494; /* Darker blue on hover */
}

/* Responsive Design */
@media (max-width: 50px) {
  .email-input {
    width: 100%; /* Full width on small screens */
    margin-bottom: 10px;
    border-radius: 5px; /* Fully rounded */
  }

  .subscribe-button {
    width: 100%; /* Full width on small screens */
    border-radius: 25px; /* Fully rounded */
  }
}

.footer {
  background-color: #212120;
  color: #f4f4f4;
  width: 100%;
  text-align: center;
}

.spacer{
  padding: 25px;
}

.img2{
  min-width: 300px;
  max-width: 300px;
}

.clearbackgroundbuttonsetup{
  background-color: transparent;
  color: #ddd;
  border: none;
  text-decoration: none;
  padding-bottom: 30px;
  padding-top: 10px;
}

a *:not(.s){
  text-decoration: none;
  color: #f1f1f1;
}

.white-bar {
  width: 100%; /* Make it span the entire width of the page */
  height: 100px; /* Set the height of the bar */
  background-color: white; /* Make it white */
  border: 1px solid black; /* Optional: Add a border for visibility */
}

.atx{
  text-align: center;
  font-size: 24px;
}

.s{
  float:right;
  border-radius: 12px;
  width: 300px;
  height: 60px;
}

.bruh{
  background-color: white;
}

.weeklyrentalbutton{
  color: #212120;
  border-radius: 12px;
  width: 300px;
  height: 60px;
  background-color: white;
  font-size: 40px;
  font-family: "caramel-regular";
}

.yellowbutton{
  color: #212120;
  border-radius: 12px;
  width: 300px;
  height: 60px;
  background-color:#fff494;
  font-size: 40px;
  font-family: "caramel-regular";
  
}

.topbutton{
  color: #212120;
  border-radius: 12px;
  width: 300px;
  height: 60px;
  background-color: yellow;
}

.accountbutton{
  border-radius: 12px;
  width: 60px;
  height: 60px;
  border-style:solid;
  border-width: 2px;
}

.cartbutton{
  color: #212120;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  background-color: yellow;
  border-style:solid;
  border-width: 2px;
}

.cnt{
  text-align: center;
  font-size: 70px;
  width: 100%;
}
.img-container {
  display:flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between; /* Optional: Add spacing between blocks */
  gap: 10px;
}

.img-text-block {
  max-width: 100%;
  flex: 1 1 100%;
  align-items: center;
  text-align: center; /* Center-align text under the image */
  padding: 50px;
  text-decoration: none;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

.img-text-block img {
  max-width: 200px; 
  border: #212120;
  border-radius: 20%;
  /* Ensure images take the full width of their container */
}
/* When there's space (like on desktop), allow them to fit 3 in a row */
@media (min-width: 768px) {
  .img-text-block {
    flex: 1 1 30%;
    max-width: 30%;
  }
}

.img-text-block h1,
.img-text-block p {
  margin: 5px 0; /* Add some spacing between text elements */
  font-size: 30px;
}

.img-text-block button {
  all: unset; /* Removes default button styling */
  cursor: pointer; /* Keeps pointer behavior */
  display: block;
  width: 100%;
}

.Heading{
  background-size:cover;
  font-size: 16px;
  text-align: center;
  font-family: "Lexend", sans-serif;
  width: 90%;
  padding-right: 5%;
  padding-left: 5%;
}

.CYOA{
  background-size:cover;
  font-size: 40px;
  text-align: left;
  margin-right:0px;
  font-family: "Lexend", sans-serif;
  width: 100%;
}

.rounded-button{
font-size: larger;
  border-radius: 15%;
}

.weekly{
  font-size: larger;
  border-radius: 15%;
  background-image: url('cal1.png');

}

.test{
  font-size: 30px;
  border-radius: 12px;
  background-color: #fff494;
  border-color: #212120;
  padding: 15px;
  font-family: "caramel-regular";
  border-style:solid;
  border-width: 2px;
}

.yatra-one-regular {
  font-family: "Yatra One", serif;
  font-weight: 400;
  font-style: normal;
}

@font-face{
  font-family: 'caramel-regular';
  font-weight: bold;
  src: url("fonts/caramel-regular.otf") format("opentype");
}

.center{
  text-align: center;
}

.rental{
  background-color: white;
  font-size: 40px;
  text-decoration: none; 
  color:black;
  border-radius: 90px;
  justify-content: center;
  padding-left: 10px;
  padding-right:10px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: "caramel-regular";
}

.titlee{
  text-align: center;
  font-family: "caramel-regular";
font-size: 60px;
}

.RA{
  text-align: center;
  font-family: "caramel-regular";
  word-spacing: 4px;
  font-size: 30px;
  padding-left: 10px;
  padding-right: 10px;
}

.no{
  text-decoration: none;
  color:white;
  font-size:16px;
}

.smm{ 
  font-size: 16px;
}

.l{
  margin-right: 40px;
  font-family: "Lexend", sans-serif;
  font-size: 50px;
  
}

.x{
  font-family: "caramel-regular";
  text-align: center;
  font-size:60px;
}

.bold{
  font-weight: 10px;
}

.f-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
  font-family: Lexend, sans-serif;
  font-size: 20px;
}

.text-block {
  flex: 1 1 500px;
  font-size: 20px;
}

.mvimg {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 8px;
}

@media (max-width: 778px) {
  .f-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .img-block {
    margin-top: 20px;
  }
}

.ff {
  font-family: "caramel-regular";
  background-color: #fffe76;
  padding: 20px;
  border-radius: 10px;
  font-size: 25px; /* Increase overall font size */
}

.sp {
  margin-bottom: 25px;
  padding: 10px 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-family: Lexend, sans-serif;
}

.sp h3 {
  margin-bottom: 10px;
  font-size: 30px; /* Bold questions */
}

.sp p {
  font-size: 25px;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.sp small {
  font-size: 20px;
  color: #555;
}

.scooter-content {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px auto;
  max-width: 800px;
  color: #333;
  background-color: #fdfdfd;
  padding: 0 15px;
}

.scooter-content h1, 
.scooter-content h2, 
.scooter-content h3, 
.scooter-content h4 {
  color: #2c3e50;
}

.scooter-content h1 {
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.scooter-content h2 {
  margin-top: 30px;
}

.scooter-content h3 {
  margin-top: 20px;
}

.scooter-content h4 {
  margin-top: 15px;
  color: #2c3e70;
}

.scooter-content p {
  margin: 10px 0;
}

.scooter-content ul {
  margin-left: 20px;
}

.scooter-content .section {
  margin-bottom: 40px;
}

.scooter-content blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #ccc;
  padding-left: 10px;
  margin: 20px 0;
}

.scooter-content footer {
  margin-top: 50px;
  font-size: 0.9em;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.scooter-content footer a {
  color: #0077cc;
  text-decoration: none;
}

.scooter-content footer a:hover {
  text-decoration: underline;
}

.scoot2023-container {
  font-family:Lexend, sans-serif;
  line-height: 1.6;
  margin: 20px auto;
  max-width: 800px;
  color: black;
  padding: 0 15px;
  font-size: 30px;
}

.scoot2023-title,
.scoot2023-container h2,
.scoot2023-container h3 {
  color: black;
}

.scoot2023-features{
  font-family:Lexend, sans-serif;
  font-size: 20px;
  text-align: center; /* Centers inline content like text and images */
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontally centers flex children like images */
  justify-content: center;
}

.scoot2023-features p{
  font-size: 25px;
  font-family:Lexend, sans-serif;
}

.scoot2023-features img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border: 3px solid #000; /* Change the color and width as needed */
  border-radius: 8px; /* Optional: adds rounded corners */
}

.scoot2023-title {
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.scoot2023-container h2 {
  margin-top: 30px;
}

.scoot2023-container h3 {
  margin-top: 20px;
}

.scoot2023-container p {
  margin: 10px 0;
  font-family: 'ztchintzy-regular';
}

.scoot2023-specs ul {
  margin-left: 20px;
  list-style-type: disc;
}

.scoot2023-specs ul {
  list-style-type: none;
  padding-left: 0;
}

.scoot2023-specs li {
  margin-bottom: 10px;
}

.scoot2023-testimonials blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #ccc;
  padding-left: 10px;
  margin: 20px 0;
}

.scoot-safety-container {
  font-family:Lexend, sans-serif;
  line-height: 1.6;
  margin: 20px auto;
  max-width: 800px;
  color: black;
  background-color: #fdfdfd;
  padding: 0 15px;
  font-size: 25px;
}

.scoot-safety-title {
  color: black;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
  font-family:Lexend, sans-serif;
}

.scoot-safety-subtitle {
  color: black;
  margin-top: 10px;
  font-family:Lexend, sans-serif;
}

.scoot-safety-section {
  margin-top: 30px;
  font-family:Lexend, sans-serif;
}

.scoot-safety-section h3 {
  color: black;
  margin-top: 20px;
  font-family:Lexend, sans-serif;
}

.scoot-safety-section p {
  margin: 10px 0;
  font-family:Lexend, sans-serif;
}

.scoot-safety-list {
  margin-left: 20px;
  list-style-type: disc;
}

.scoot-safety-list li {
  margin-bottom: 10px;
  font-family:Lexend, sans-serif;
}

.scoot-safety-testimonials {
  margin-top: 40px;
}

.scoot-safety-testimonials h3 {
  color: #2c3e50;
}

.scoot-safety-testimonials blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #ccc;
  padding-left: 10px;
  margin: 20px 0;
}

.scoot-safety-footer {
  margin-top: 50px;
  font-size: 0.9em;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.scoot-safety-footer a {
  color: #0077cc;
  text-decoration: none;
}

.scoot-safety-footer a:hover {
  text-decoration: underline;
}
.img-text-inline {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
  padding: 10px; /* tighter inner spacing */
  margin: 5px;   /* outer spacing between blocks */
  text-decoration: none;
  font-family:Lexend, sans-serif;
}

/* Make it stay in a row (2 columns) on desktop */
@media (min-width: 768px) {
  .img-text-inline {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

.img-text-inline img {
  width: 100%;
  border: #212120;
  border-radius: 20%;
}

.img-text-inline h1,
.img-text-inline p {
  margin: 5px 0;
  font-size: 30px;
}

.img-text-inline button {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
}

.headerLogo {
  min-width: 300px;
  max-width: 300px;
  align-items: center;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
    padding: 0;
    padding-top: 50px;
  }
  .button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .button-container button,
  .button-container a {
    font-size: 60px; /* slightly smaller for mobile */
  }
}

.section{
  font-family:Lexend, sans-serif;
  font-size: 20px;
}

.legalParagraph{
  font-size: 25px;
  padding: 25px;
}
