/* style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #282525;
  color: #000;
}

.top-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100px;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}


.logo {
  font-weight: bold;
  font-size: 96px;
  color: #ff4500; /* Reddish-orange */
   text-shadow:
    2px 0px 0 #000,
    4px 0px 0 #000,
    6px 0px 0 #000,
    8px 0px 0 #000,
    10px 0px 0 #000;
}


.user-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language, .help, .profile {
  background: #eee;
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
}

.welcome {
  padding:80px;
  background: #fafafa;
  text-align: center;
}
.quote-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
}

.quote-container h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
 background-color: #b40101;
  flex-wrap: wrap;
}
.image-holder {
  display:flex;
  justify-content: center;
  align-items:center;
  height:300px;
  flex-wrap:wrap;
}
.card-title{
  display:flex;
  justify-content:center;
  align-items: center;
  padding:20px;
}
.card {
  flex: 1 1 300px;
  padding: 1.5rem;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card.light {
  background: #f5f5f5;
}

.card.dark {
  background: #333;
  color: #fff;
}

.card h2 {
  margin-top: 0;
}

.card button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: black;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
}

.card.dark button {
  background: white;
  color: black;
}

/* JavaScript-enhanced interactivity */
.card button:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

/* Modal styles (for future JavaScript popups) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
}

.modal-content h3 {
  margin-bottom: 1rem;
}

.modal-content button {
  background: #333;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

/* Show modal */
.modal.show {
  display: flex;
}
