/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9; /* Fallback color */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Background Image Handling */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  opacity: 1; /* Adjust opacity if the bg image is too strong, design shows a subtle pattern */
  z-index: -1;
}
/* If the user wants the bg to be fully visible and it is already light/patterned, remove opacity or overlay */


.container {
  width: 100%;
  max-width: 600px; /* Constrain width like a mobile view or card */
  margin: 0 auto;
  padding: 20px;
  padding-top: 80px;
  text-align: center;
  z-index: 1;
}

/* Header & Logo */
.header {
  margin-bottom: 20px;
  padding-top: 20px;
}

.logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Content Area */
.section-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}

/* App Buttons (Store Links) */
.app-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap; 
}

.app-btn {
  display: flex;
  align-items: center;
  background-color: #2c3e50; /* Dark color from design */
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  min-width: 160px;
  transition: transform 0.2s, background-color 0.2s;
}

.app-btn:hover {
  background-color: #1a252f;
  transform: translateY(-2px);
}

.app-btn svg {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  fill: #fff;
}
.app-btn img {
  height: 35px;
  margin-right: 10px;
}

.app-btn .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.app-btn .small-text {
  font-size: 0.6rem;
  text-transform: uppercase;
}

.app-btn .large-text {
  font-size: 1rem;
  font-weight: 600;
}

/* Action List (Menu, Contact, etc.) */
.action-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}

.action-item:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-color: #ccc;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 15px;
  /* If icons need specific colors per brand, we can target via classes */
}

.icon-box svg {
  width: 100%;
  height: 100%;
  fill: #2c3e50; /* distinct dark color for icons */
}
.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Specific colors for known brands if desired, though design shows uniform dark icons mostly except maybe WhatsApp green? 
   Design image shows dark icons. I'll stick to uniform dark. */

.label {
  font-size: 1rem;
  font-weight: 500;
  flex-grow: 1; /* Pushes text to take up space */
  text-align: left;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .app-btn {
    width: 100%;
    justify-content: center;
    height: 51px;
  }
}
