/* community.css - clean, icon-friendly, multilingual-ready */
/*@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');*/

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

h1, h2 {
  color: #2c3e50;
  text-align: center;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 25px;
  margin-bottom: 25px;
}

.section {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.section i {
  font-size: 28px;
  color: #28a745;
  flex-shrink: 0;
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #28a745;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

.form-group {
  margin-bottom: 15px;
}

input[type="text"], input[type="url"] {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

button[type="submit"] {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

button[type="submit"]:hover {
  background: #218838;
}

.error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #007bff;
  text-decoration: none;
  margin-top: 30px;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

/* Top Shop Navigation Bar - Four buttons side by side */
.shop-topbar {
    background: #2c3e50;
    color: #fff;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.shop-topbar .btn-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-topbar button,
.shop-topbar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #28a745;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.shop-topbar button:hover,
.shop-topbar a:hover {
    background: #218838;
    transform: translateY(-2px);
}

.shop-topbar .hamburger-btn {
    background: #34495e;
}

.shop-topbar .hamburger-btn:hover {
    background: #2c3e50;
}

.shop-topbar .share-btn {
    background: #007bff;
}

.shop-topbar .share-btn:hover {
    background: #0069d9;
}

.shop-topbar .portal-btn {
    background: #17a2b8;
}

.shop-topbar .portal-btn:hover {
    background: #138496;
}


/* Responsive */
@media (max-width: 600px) {
  body { padding: 15px; margin: 20px auto; }
  .section { flex-direction: column; }
}

/* Top Shop Navigation Bar - Four buttons side by side */
/* Responsive adjustments */
@media (max-width: 768px) {
    .shop-topbar {
        padding: 10px 12px;
        flex-direction: column;
        gap: 12px;
    }
    
    .shop-topbar .btn-group {
        width: 100%;
        justify-content: center;
    }
    
    .shop-topbar button,
    .shop-topbar a {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}
