/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 10px;
}

header.mobile-header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
}

header h1 {
  font-size: 1.5rem;
}

.mobile-nav {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
  list-style: none;
}

.mobile-nav li a {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
}

.hero {
  margin: 1.5rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.link-card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: background 0.2s;
}

.link-card:hover {
  background: #f0f0f0;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-top: 2rem;
}
/* === Header === */
.mobile-header {
  background-color: #333;
  color: white;
  padding: 1rem;
  border-radius: 10px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.site-title {
  text-align: center;
  font-size: 1.2rem;
  margin: 0.5rem 0 0.2rem;
}

/* Header wrapper */
.mobile-header {
  background-color: #333;
  color: white;
  padding: 1rem 0.5rem;
  border-radius: 0 0 12px 12px;
}

/* Site title */
.site-title {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

/* Horizontal nav bar */
.mobile-navbar {
  width: 100%;
  display: flex;
  justify-content: center;
}

.mobile-nav-horizontal {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  gap: 5px;
}

.mobile-nav-horizontal li {
  flex: 1;
  text-align: center;
}

.mobile-nav-horizontal a {
  display: inline-block;
  padding: 0.5rem 0;
  width: 100%;
  font-size: clamp(0.8rem, 2.5vw, 1rem); /* Responsive font */
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
  background-color: #444;
}

.mobile-nav-horizontal a:hover,
.mobile-nav-horizontal a:focus {
  background-color: #007bff;
  color: #fff;
}
/* === Footer === */
.mobile-footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem 1rem;
  margin-top: 2rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.footer-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.footer-content p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.footer-content a {
  color: #00aaff;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

/* Social media icons */
.social-links {
  margin-top: 0.8rem;
}

.social-links a {
  font-size: 1.4rem;
  margin: 0 10px;
  color: white;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #00aaff;
}

.footer-bottom {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #ccc;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: var(--mint); /* Mint color */
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary-blue); /* Blue on hover */
}

/* === Blog Page === */
.blog-container {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background-color: var(--mint, #A8F0D1);
}

.blog-post {
  background-color: white;
  border-left: 6px solid var(--primary-blue, #007BFF);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
}

.blog-post h2 {
  font-size: 1.2rem;
  color: #007BFF;
  margin-bottom: 0.5rem;
}

.blog-post .date {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.5rem;
}

/* === Cart / Shop Page === */
.cart-container {
  padding: 1rem;
  background-color: var(--mint, #A8F0D1);
}

.cart-container h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-blue, #007BFF);
}

.cart-item {
  background: white;
  border-left: 5px solid var(--primary-blue, #007BFF);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.item-info h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.item-info p {
  margin: 0;
  color: #555;
}

.buy-btn {
  background-color: #28a745;
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.buy-btn:hover {
  background-color: #218838;
}

/* === Jobs Page === */
.jobs-container {
  padding: 1rem;
  background-color: var(--mint, #A8F0D1);
}

.jobs-container h2 {
  font-size: 1.3rem;
  color: var(--primary-blue, #007BFF);
  margin-bottom: 1rem;
}

.job-card {
  background: white;
  border-left: 6px solid var(--primary-blue, #007BFF);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
}

.job-card h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.4rem;
}

.job-card .job-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.job-card p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.apply-btn {
  display: inline-block;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.apply-btn:hover {
  background-color: #0056b3;
}

/* === Blog Page === */
.blog-container {
  padding: 1rem;
  background: var(--mint, #A8F0D1);
}

.blog-container h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-blue, #007BFF);
}

.blog-card {
  background: white;
  border-left: 6px solid var(--primary-blue, #007BFF);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.04);
}

.blog-card h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.4rem;
}

.blog-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.6rem;
}

.read-more-btn,
.special-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.read-more-btn {
  background-color: #007BFF;
  color: white;
}

.read-more-btn:hover {
  background-color: #0056b3;
}

.special-btn {
  background-color: #28a745;
  color: white;
}

.special-btn:hover {
  background-color: #218838;
}
