/* Modern responsive styles for EuroPack */

/* Basic resets */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header and navigation */
header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar-logo img {
  height: 60px;
}

.navbar-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.navbar-menu li {
  margin-left: 20px;
  position: relative;
}

.navbar-menu a {
  font-weight: bold;
  color: #333;
  padding: 8px 0;
  display: block;
}

.navbar-menu li:hover > a {
  color: #007bff;
}

/* Submenu styling */
.navbar-menu li ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 0;
  min-width: 200px;
  z-index: 1000;
}

.navbar-menu li:hover ul {
  display: block;
}

.navbar-menu li ul li {
  margin: 0;
}

.navbar-menu li ul a {
  padding: 8px 20px;
  font-weight: normal;
  color: #333;
}

.navbar-menu li ul a:hover {
  background: #f0f0f0;
  color: #007bff;
}

/* Hero section */
.hero {
  position: relative;
  background: url('img/euro3d-2.gif') no-repeat center/cover;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 48px;
  margin: 0 0 10px;
}

.hero p {
  font-size: 20px;
  margin: 0;
}

/* Section common styles */
.section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

/* Values list */
.values-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.values-list li {
  width: calc(33.333% - 20px);
  margin: 10px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .values-list li {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .values-list li {
    width: 100%;
  }
}

/* Vision & Mission cards */
.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.vision-mission .card {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.vision-mission .card h3 {
  margin-top: 0;
  font-size: 22px;
  margin-bottom: 10px;
}

/* ISO section */
.iso-section p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.iso-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.iso-card {
  text-align: center;
  max-width: 200px;
}

.iso-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.iso-title {
  margin-top: 10px;
  font-weight: bold;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
}

footer .social {
  text-align: center;
  margin-bottom: 10px;
}

footer .social span {
  font-weight: bold;
  margin-right: 10px;
}

footer .social a {
  color: #fff;
  margin: 0 10px;
  font-weight: bold;
}

footer .social a:hover {
  color: #007bff;
}

footer .copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}