/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 105vh;
  background-image: url("images/background/background.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

/* Responsive Styles */
@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  .menu-button,
  .contact-button {
    font-size: 18px;
    padding: 8px 16px;
  }

  .footer-text {
    font-size: 22px;
  }
}

.content {
  flex: 1; /* This ensures the content takes up remaining space */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center;
  margin-top: 30px;
}
.header {
  text-align: center;
  margin-top: 20px;
}

.logo {
  width: 180px;
  height: auto;
}

/* Button styling */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

/* Menu button */
.menu-button {
  font-family: "yeseva", serif;
  background-color: #a8caab; /* Green background */
  color: white; /* White text */
  padding: 2px 18px;
  border-radius: 50px; /* Round corners */
  border: none;
  font-size: 34px;
  text-decoration: none;
  margin-bottom: 15px; /* Space between buttons */
  cursor: pointer;
  display: inline-block;
}

/* Contact Us button */
.contact-button {
  font-family: "yeseva", serif;
  background-color: white; /* White background */
  color: #a8caab; /* Green text */
  padding: 2px 18px;
  border-radius: 50px; /* Round corners */
  border: 2px solid #a8caab; /* Green border */
  font-size: 34px;
  text-decoration: none;
  margin-bottom: 15px;
  cursor: pointer;
  display: inline-block;
}

/* Hover effect */
.menu-button:hover,
.contact-button:hover {
  opacity: 0.8;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

p {
  font-size: 24px;
}

.footer-text {
  font-family: "sikat", sans-serif;
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #a8caab;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.8); /* Add a slight background to make it stand out */
  margin-top: auto; /* Ensures footer stays at the bottom */
}

.footer-text p {
  margin: 0;
  padding: 0;
}

/* Import the custom font */
@font-face {
  font-family: "yeseva"; /* The name you want to give to the font */
  src: url("images/fonts/YesevaOne-Regular.ttf") format("truetype"); /* Path to the font file and format */
  font-weight: normal; /* You can define weights (normal, bold, etc.) */
  font-style: normal; /* You can define style (normal, italic, etc.) */
}
@font-face {
  font-family: "sikat"; /* The name you want to give to the font */
  src: url("images/fonts/Sikat-8MrrB.ttf") format("truetype"); /* Path to the font file and format */
  font-weight: normal; /* You can define weights (normal, bold, etc.) */
  font-style: normal; /* You can define style (normal, italic, etc.) */
}
