/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f0f8ff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.lg-sambaled {
  max-width: 20vw;
}

@media screen and (max-width: 600px) {
  .lg-sambaled {
    max-width: 80vw;
  }
}

/* Header */
.header {
  background: #003366;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 1);
  transition: box-shadow 0.3s ease;
}

.header .logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #00bfff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 51, 102, 0.7),
      rgba(0, 80, 158, 0.9)
    ),
    url("../img/eletri.jpg") no-repeat center/cover;
  color: #fff;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: #00bfff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 5px;
  text-decoration: none;
}

.cta-button:hover {
  background: #009acd;
}

/* Products Section */
.products {
  padding: 3rem 0;
  background: #f0f8ff;
  text-align: center;
}

.products h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* About Section */
.about {
  padding: 3rem 0;
  background: #e6f7ff;
  text-align: center;
}

.about h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* News Section */
.news {
  padding: 3rem 0;
  background: #f0f8ff;
  text-align: center;
}

.news h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
}

/* Contact Section */
.contact {
  padding: 3rem 0;
  background: #e6f7ff;
  text-align: center;
}

.contact h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  background: #00bfff;
  color: #fff;
  padding: 0.75rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.contact-form button:hover {
  background: #009acd;
}

/* Footer */
.footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

@keyframes blinkShadow {
  0%,
  100% {
    box-shadow: 0 4px 6px rgba(255, 255, 255, 1);
  }
  95% {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 1);
  }
  6% {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 1);
  }
  5% {
    box-shadow: 0 4px 6px rgba(255, 255, 255, 1);
  }
}

.header.blink-effect {
  animation: blinkShadow 0.3s ease-in-out 2;
}
