/* Font face declaration for Butler Light */
@font-face {
  font-family: "Butler Light";
  src: url("fonts/Butler-Light.woff2") format("woff2"),
    url("fonts/Butler-Light.woff") format("woff"),
    url("fonts/Butler-Light.otf") format("otf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Font face declaration for Calibri Regular */
@font-face {
  font-family: "Calibri";
  src: url("fonts/calibri-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Butler Light", "Arial", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #2a3950;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 20px;
}

/* Apply Butler Light font to specific elements */
h1,
.floor-number {
  font-family: "Butler Light", "Arial", sans-serif;
}

/* Apply Calibri font to floor label */
.floor-label {
  font-family: "Calibri", "Arial", sans-serif;
}

/* Logo styles */
.logo-container {
  text-align: center;
  margin-bottom: 2rem;
  background-color: #051d49;
  padding: 20px;
  border-radius: 8px;
  display: inline-block;
  margin: 0 auto 2rem;
}

.logo {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: 4rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.floor-number {
  font-size: 3rem;
  color: #999;
  font-weight: 800;
}

.floor-label {
  font-size: 1.5rem;
  color: #333;
  margin-top: -15px;
  font-weight: 600;
}

.arrow-button {
  background-color: #0a2351;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}
