/* BASE */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* NAV RIGHT + LANG TOGGLE */
.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.lang-btn {
  background: orange;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.85rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-end;
}

.lang-btn:hover {
  background: #e69500;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b2c4a;
  color: white;
  padding: 15px 25px;
  gap: 10px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: invert(1) brightness(2);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.nav h2 {
  margin: 0;
  font-size: 1rem;
}

.nav a {
  color: white;
  margin: 5px 10px;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav img {
  width: 60px;
}

/* HERO */
.hero {
  background: url("images/ship3.jpg") center/cover;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 80px 60px;
}

.overlay h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.overlay h2 {
  font-size: 1.1rem;
}

.overlay h3 {
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  border-radius: 4px;
}

.orange {
  background: orange;
  color: white;
}

.outline {
  background-color: tomato;
  color: white;
}

.buttons {
  margin-top: 20px;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 30px;
  background-color: #f0f4f8;
  gap: 20px;
}

.feature {
  text-align: center;
  background-color: white;
  border-radius: 12px;
  border: 1.5px solid #dde3ea;
  padding: 30px 20px;
  flex: 1 1 180px;
  max-width: 220px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* PRODUCTS */
.products {
  background-color: #f0f4f8;
  padding: 40px 30px;
  text-align: center;
}

.products h2 {
  margin-bottom: 30px;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  display: flex;
  align-items: center;
  border-radius: 16px;
  border: 1.5px solid #dde3ea;
  padding: 30px;
  width: 100%;
  max-width: 560px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  gap: 20px;
  text-align: left;
}

.card-blue {
  background: #d2dceb;
  border-color: #b8cef0;
}

.card-green {
  background: #afebcb;
  border-color: #b0dcc0;
}

.card-text {
  flex: 1;
}

.card-text h3 {
  margin-top: 0;
  color: #0b2c4a;
}

.card-img {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.card-btn {
  display: inline-block;
  margin-top: 14px;
  background: #0b2c4a;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
}

/* FOOTER */
footer {
  background: #0b2c4a;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-social a,
.contact-social-icons a {
  color: white;
  font-size: 22px;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover,
.contact-social-icons a:hover {
  color: orange;
}

.footer-social,
.contact-social-icons {
  margin-bottom: 12px;
}

/* ===== ABOUT PAGE ===== */

.ab-hero {
  background: url("images/ship2.jpg") center/cover;
  height: 220px;
}

.ab-overlay {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  text-align: center;
}

.ab-about {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 40px 24px;
  background: #f9f9f9;
}

.ab-about img {
  width: 38%;
  min-width: 110px;
  max-width: 220px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.ab-about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  min-width: 0;
}

.ab-products {
  background-color: lightyellow;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
}

.ab-card {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
}

.ab-card img {
  width: 100%;
  border-radius: 8px;
}

.ab-card button {
  margin-top: 10px;
  padding: 8px 15px;
  background: orange;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.ab-contact {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #eee;
  padding: 20px;
  gap: 10px;
  text-align: center;
}

/* ===== CONTACT PAGE ===== */

.contact-hero {
  height: 220px;
  background: url("images/ship3.jpg") center/cover;
  position: relative;
}

.contact-overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.contact-section {
  padding: 50px 8%;
  text-align: center;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  background: #f8f8f8;
  padding: 35px 25px;
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-card i {
  font-size: 50px;
  color: #f7b500;
  margin-bottom: 20px;
}

.contact-card a {
  display: inline-block;
  background: #0c2340;
  color: white;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 6px;
}

.contact-info-section {
  padding: 20px 8% 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.info-box,
.contact-info-box {
  background: #b0dcc0;
  padding: 30px;
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #ddd;
}
.info-box{
  background-color: #d2dceb;
}

.map-btn {
  display: inline-block;
  margin-top: 14px;
  background: #0b2c4a;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background 0.2s;
}

.map-btn:hover {
  background: #1a4a72;
}


.contact-social-icons a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s;
}

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0d3558;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-menu.open {
  max-height: 300px;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.08);
}

.mobile-menu .lang-btn-mobile {
  margin: 14px 24px;
  align-self: flex-start;
  background: orange;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {
  .hamburger {
    display: flex;
  }

  .nav-right {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .nav {
    flex-wrap: nowrap;
    padding: 12px 16px;
  }

  .nav-brand h2 {
    font-size: 0.85rem;
  }

  .nav a {
    font-size: 0.8rem;
    margin: 3px 6px;
  }

  .overlay {
    padding: 40px 20px;
  }

  .overlay h1 {
    font-size: 1.4rem;
  }

  .overlay h2 {
    font-size: 0.95rem;
  }

  .overlay h3 {
    font-size: 0.85rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    max-width: 100%;
    width: 100%;
  }

  .ab-overlay {
    padding-left: 20px;
  }

  .ab-about {
    gap: 16px;
    padding: 28px 16px;
  }

  .ab-about-text {
    font-size: 0.85rem;
  }

  .ab-about-text h2 {
    font-size: 1rem;
    margin-top: 0;
  }

  .ab-products {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .ab-card {
    max-width: 100%;
  }

  .contact-hero {
    height: 220px;
  }

  .contact-section {
    padding: 30px 5%;
  }

  .contact-card {
    max-width: 100%;
  }

  .contact-info-section {
    flex-direction: column;
    align-items: center;
    padding: 20px 5%;
  }

  .info-box,
  .contact-info-box {
    max-width: 100%;
  }

  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }

  /* Product cards: stack vertically, image on top */
  .card {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    overflow: hidden;
  }

  .card-img {
    width: 100%;
    height: 180px;
    order: -1; /* image always on top */
  }

  .card-img img {
    border-radius: 0;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }

  .card-text {
    padding: 18px 20px 20px;
    font-size: 0.9rem;
  }

  .card-text h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .card-text p {
    margin: 0;
    line-height: 1.5;
  }
}
/* ===== PRODUCTS PAGE ===== */

.prod-hero {
  background: url("images/food.jpg") center/cover;
  height: 220px;
}

.prod-overlay {
  background: rgba(0, 0, 0, 0.55);
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Filter tabs */
.prod-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 30px 20px 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 26px;
  border: 2px solid #0b2c4a;
  border-radius: 30px;
  background: white;
  color: #0b2c4a;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0b2c4a;
  color: white;
}

/* Grid */
.prod-grid-section {
  padding: 30px 5% 50px;
  background: #f0f4f8;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Product card */
.prod-card {
  background: white;
  border-radius: 16px;
  border: 1.5px solid #dde3ea;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  z-index: 1;
}

.import-badge { background: #0b2c4a; }
.export-badge { background: #2e7d52; }

.prod-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.05);
}

.prod-info {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-info h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #0b2c4a;
}

.prod-info p {
  margin: 0 0 16px;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  flex: 1;
}

.prod-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: bold;
  align-self: flex-start;
  transition: background 0.2s;
}

.prod-order-btn:hover {
  background: #1ebe5c;
}

/* CTA banner */
.prod-cta {
  background: #0b2c4a;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.prod-cta h2 {
  margin-bottom: 10px;
}

.prod-cta p {
  margin-bottom: 24px;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }

  .prod-filter {
    padding: 20px 16px 8px;
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
/* Active nav link */
.nav-links a.nav-active,
.mobile-menu a.nav-active {
  color: orange;
  font-weight: bold;
}