/* Sekcije ispod hero */
.section {
    padding: 80px 20px;
    text-align: center;
    background-color: #111;
    /* tamno za kontrast sa hero */
    color: #fff;
}

.section:nth-child(even) {
    background-color: #1a1a1a;
    /* naizmenično boje */
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #d1a94f;
    /* zlatna nijansa */
}

.section p {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
}

/* Kontakt sekcija */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(209, 169, 79, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #d1a94f;
    /* zlatna */
}

.contact-info h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #fff;
}

.contact-info-p {
    margin: 20px auto 40px auto;
    font-size: 1rem;
    color: #ddd;
}

.contact-info a {
    color: #d1a94f;
    text-decoration: none;
    transition: color 0.3s;
    word-wrap: break-word;
}

.a-tel-mail {
    color: #d1a94f;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #f5d173;
}

/* O meni sekcija */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    max-width: 800px;
    margin: 20px auto 40px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    text-align: center;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.about-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(209, 169, 79, 0.3);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #d1a94f;
}

.about-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #fff;
}

.about-card p {
    margin: 0;
    font-size: 1rem;
    color: #ddd;
}

/* galerija Muzika */
.music-circle-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.circle-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #d1a94f;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.circle-image:hover img {
  transform: scale(1.1);
}

.circle-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(209, 169, 79, 0.6);
}

/* Sekcija društvene mreže */
#drustvene-mreze {
    background-color: #0f0f0f; /* osnovna boja */
    background-image: repeating-linear-gradient(
        45deg,        /* ugao linija */
        #f3ecdd, /* boja linija */
        rgba(255,255,255,0.05) 25px,
        transparent 10px,
        transparent 20px
    );
}

.social-container {
    text-align: center;
    padding: 50px 20px;
    background-color: #0f0f0f;
}

.social-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #d1a94f;
}

.social-container p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    transition: background 0.3s, transform 0.3s;
}

.social-link.facebook {
    background-color: #1877F2;
}

.social-link.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-link:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.footer p {
    font-size: 0.9rem;
    color: #aaa;
}

.footer-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
  margin-top: 3px;
}

.footer-link-p {
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .circle-image {
    width: 140px;
    height: 140px;
  }
  
  .music-circle-gallery {
    gap: 20px;
  }
}