/* Elkamoush - Clean Stylesheet */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Josefin Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* Navbar */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 10px 20px;
}

#navbar .nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#navbar .logo img { height: 50px; width: auto; }

#navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

#navbar .nav-links a {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #303030;
  transition: color 0.2s;
}

#navbar .nav-links a:hover { color: #0d395e; }
#navbar .nav-links a.active { color: #0d395e; }

/* Body spacing for fixed navbar */
body { padding-top: 70px; }

/* Hero */
.hero {
  background: #0d395e;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 0 0 10px;
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

/* Products Section */
.products-section {
  background: #f8fafb;
  padding: 60px 20px;
}

.products-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a3a5c;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.products-section .lead {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.product-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.product-card .card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #edf3f6;
  position: relative;
}

.product-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card .card-img img.focus-yellowbelly {
  object-position: center 72%;
}

.product-card:hover .card-img img {
  transform: scale(1.05);
}

.product-card .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d395e, #1a3a5c);
}

.product-card .img-placeholder span {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  padding: 20px;
}

.product-card .card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-card .card-header h3 {
  margin: 0 0 4px;
  color: #1a3a5c;
  font-size: 1.35rem;
}

.product-card .scientific {
  color: #2196F3;
  font-size: 0.92rem;
  font-style: italic;
  margin: 0;
}

.product-card .meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.product-card .meta-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}

.product-card .meta-row strong {
  color: #1a3a5c;
  min-width: 105px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.product-card .meta-row span {
  color: #555;
}

.state-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
}

.state-badge.frozen {
  background: #e3f2fd;
  color: #0d47a1;
}

.state-badge.mixed {
  background: #e8f5e9;
  color: #2e7d32;
}

/* Nutrition Section */
.product-card .nutrition {
  margin-top: auto;
  padding: 14px;
  background: #f8fafb;
  border-radius: 8px;
  border: 1px solid #eef2f5;
}

.product-card .nutrition-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a3a5c;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-card .nutrition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.product-card .nut-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.82rem;
}

.product-card .nut-label {
  color: #888;
}

.product-card .nut-val {
  color: #333;
  font-weight: 600;
  text-align: right;
}

/* Footer */
.footer {
  background: #62859C;
  padding: 40px 20px 20px;
}

.footer .partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer .partner-logos img {
  height: 60px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer .partner-logos img:hover { opacity: 1; }

.footer .copyright {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* Contact Cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 30px 0 55px;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(13,57,94,0.08);
  padding: 30px;
}

.contact-card h3 {
  color: #1a3a5c;
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.contact-card p {
  color: #555;
  line-height: 1.8;
  margin: 0 0 10px;
}

.contact-card .contact-value {
  color: #0d395e;
  line-height: 1.8;
  margin: 0;
  font-weight: 600;
}

.contact-info-box {
  background: #fff;
  border-radius: 12px;
  padding: 34px;
  box-shadow: 0 12px 35px rgba(13,57,94,0.08);
}

.contact-info-box h3 {
  color: #1a3a5c;
  margin: 0 0 15px;
  font-size: 1.8rem;
}

.contact-info-box p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  #navbar .nav-links { gap: 15px; }
  #navbar .nav-links a { font-size: 14px; }
  .hero h1 { font-size: 1.8rem; }
  .products-section h2, .contact-info-box h3 { font-size: 1.5rem; }
  .product-grid, .contact-grid { grid-template-columns: 1fr; }
  .product-card .nutrition-grid { grid-template-columns: 1fr 1fr; }
  .footer .partner-logos img { height: 40px; }
}

@media (max-width: 480px) {
  #navbar { padding: 8px 15px; }
  #navbar .logo img { height: 40px; }
  #navbar .nav-links { gap: 10px; }
  #navbar .nav-links a { font-size: 13px; }
  body { padding-top: 55px; }
  .hero { padding: 50px 15px; }
  .hero h1 { font-size: 1.5rem; }
  .products-section, .contact-section { padding: 40px 15px; }
  .product-card .card-body, .contact-card { padding: 18px; }
  .contact-info-box { padding: 20px; }
}
