* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Arial, sans-serif;
  background-image: url("assets/background-mat-desktop.svg");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.theme-button {
  width: 460px; /* Fixed width on larger screens */
  height: 90px; /* Adjust the height to fit the background image */
  font-size: 30px;
  font-family: "titillium web";
  cursor: pointer;
  border: none;
  border-radius: 5px;
  font-weight: bolder;
  color: #B02240;
  background-color: transparent;
  transition: background-color 0.3s ease;
  background-image: url("assets/mat-border.svg"); /* Apply background image */
  background-size: contain; /* Ensure the image fits within the button */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  background-position: center; /* Center the image */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .logo-container{
    display: flex;
    justify-content: center;
  }
    .logo {
    max-width: 70%;
    height: auto;
    margin-bottom: 50px;
  }
  body {
    background-image: url("assets/background-mat.svg"); /* Replace with your mobile image */
  }

  .container {
    padding-bottom: 170px;
    align-items: flex-end; /* Center align on mobile */
  }

  .theme-button {
    font-size: 26px; /* Slightly smaller font size */
    height: 58px; /* Adjust button height */
  }
  .theme-button-deliverypickup {
    width: 260px;
  }
  .theme-button-contactus {
    width: 160px;
  }
  .theme-button-alsalam {
    width: 140px;
  }
  .theme-button-alkhobar {
    width: 150px;
  }
}

@media (max-width: 480px) {
  body {
    background-image: url("assets/background-mat.svg"); /* Replace with your mobile image */
  }
  .logo-container{
    display: flex;
    justify-content: flex-end;
  }
  .logo {
    margin-right: 10px;
    max-width: 50%;
    height: auto;
    margin-bottom: 50px;
  }
  .theme-button {
    width: 200px; /* Fixed width on larger screens */
    font-size: 26px; /* Slightly smaller font size */
    height: 45px; /* Adjust button height */
  }
  .theme-button-deliverypickup {
    width: 160px;
    padding-bottom: 3px;
  }
  .theme-button-contactus {
    width: 110px;
    padding-bottom: 3px;
  }
  .theme-button-alsalam {
    width: 90px;
    padding-bottom: 3px;
  }
  .theme-button-alkhobar {
    width: 100px;
    padding-bottom: 3px;
  }

  .button-container {
    gap: 30px; /* Reduce gap between buttons */
    margin-right: 10px; /* Adjust the margin for smaller screens */
  }
}
