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

body {
  background: url('./assets/images/rishe_background_master.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Helvetica Neue', sans-serif;
  color: white;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.hero-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rishe-logo {
  width: 220px;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 1.2rem;
  margin: 10px 0;
}

.hero-button {
  background-color: #f62459;
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: 0.3s;
}

.hero-button:hover {
  background-color: #d91e47;
}

/* Main Cards */
.main-cards {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

.card-container {
  max-width: 900px;
  width: 100%;
}

.main-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.card-button-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.card-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.card-button:hover {
  background-color: #6610f2;
}

/* Licensing Banner */
.licensing-banner {
  text-align: center;
  padding: 40px 20px;
}

.licensing-banner img {
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.licensing-button-container {
  margin-top: 10px;
}

.licensing-button {
  background-color: #222;
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.licensing-button:hover {
  background-color: #e60040;
} /* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-around;
  align-items: center;
  backdrop-filter: blur(8px);
  z-index: 999;
}

.bottom-nav a {
  text-decoration: none;
  color: white;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-nav img {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}