.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

li {
  list-style-type: none;
}

h1,
h2 {
  color: #0056b3;
}

p {
  line-height: 1.6;
}

/* Hero sekcija */
.hero-section {
  position: relative;
  background: url("../img/kodiranje.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Overlay za tamniji efekat */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* Osigurava da sadržaj bude iznad overlay-a */
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
}

/* Sekcija o kodiranju */
.about-coding,
.coding-process,
.coding-benefits {
  background: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}

.about-coding h2,
.coding-process h2,
.coding-benefits h2 {
  margin-bottom: 20px;
}

/* Usluge kodiranja */
.coding-services {
  padding: 40px 20px;
}

.coding-services ul {
  list-style: none;
  padding: 0;
}

.coding-services li {
  font-size: 1.1em;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.coding-services li i {
  color: #0056b3;
  margin-right: 10px;
}

/* CTA Sekcija */
.cta-section {
  background: #0056b3;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section .btn {
  background: white;
  color: #0056b3;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.cta-section .btn:hover {
  background: #e9ecef;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
}
/* Base styles for the button */
.responsive-btn {
  background-color: #4caf50; /* Green background */
  color: white; /* White text */
  border: none; /* Remove border */
  padding: 15px 32px; /* Padding for the button */
  text-align: center; /* Center the text */
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Inline button */
  font-size: 16px; /* Text size */
  border-radius: 8px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Hover effects */
.responsive-btn:hover {
  background-color: #45a049; /* Darker green on hover */
  transform: scale(1.05); /* Slightly enlarge the button */
}

/* Active button state */
.responsive-btn:active {
  background-color: #388e3c; /* Even darker green when clicked */
  transform: scale(1); /* Reset size on click */
}

/* Responsive styles */
@media (max-width: 768px) {
  .responsive-btn {
    padding: 12px 24px; /* Smaller padding on tablets and smaller screens */
    font-size: 14px; /* Smaller text size */
  }
}

@media (max-width: 480px) {
  .responsive-btn {
    padding: 10px 20px; /* Even smaller padding on mobile */
    font-size: 12px; /* Even smaller text size */
  }
}

#list {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
  height: 0;
  color: black;
  overflow: hidden;
  width: 0;
}
