/* === GLOBAL FONTS === */
* {
  box-sizing: border-box;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff6a00;
}

h2, h3 {
  color: #ff6a00;
}

.content {
  line-height: 1.8;
  font-size: 1.1rem;
  font-weight: 100;
  text-align: justify;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  border-left: 1px solid #ff6a00;
  border-right: 1px solid #ff6a00;
  padding: 0 1rem;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.content::first-letter {
  font-size: 3rem;
  font-weight: 100;
  float: left;
  line-height: 1;
  margin-right: 8px;
  font-family: 'Poppins', sans-serif;
}

/* === TITLE STYLING === */
.sound-installation h1,
.sound-services h2,
.equipment-section h3 {
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}

.sound-services h2::after,
.equipment-section h3::after {
  content: '';
  width: 60px;
  height: 4px;
  color: #ff6a00;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

.equipment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.equipment-item,
.service-item,
.content .part {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;
}
.equipment-item:nth-child(odd),
.service-item:nth-child(odd) {
  animation-delay: 0.2s;
}
.equipment-item:nth-child(even),
.service-item:nth-child(even) {
  animation-delay: 0.4s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sound-services {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  border-right: 2px solid #ff6a00;
  padding: 15px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
  list-style: none;
  font-size: 24px;
  padding-left: 50px;
}

.service-item:hover {
  transform: scale(1.03);
  color: #ff6a00;
}

/* === EQUIPMENT SECTION === */
.equipment-item {
  background-color: rgb(255, 255, 255);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.equipment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.equipment-item p {
  font-size: 0.95rem;
  margin-top: 10px;
  color: #444;
}

/* === CALL TO ACTION BUTTON === */
.cta {
  margin-top: 60px;
  text-align: center;
}
.contact-button {
  display: inline-block;
  background: linear-gradient(to right, #ff6a00, #ee0979);
  padding: 15px 35px;
  color: white;
  font-size: 1.1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.contact-button:hover {
  background: linear-gradient(to right,#ee0979, #ff6a00);
  transform: scale(1.05);
}

/* === SECTION STYLING === */
.sound-installation,
.equipment-section {
  padding: 60px 20px;
  border-bottom: 1px solid #f56e07;
}
.sound-services {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 60px 20px;
  text-align: center;
}

.sound-services li::before {
  content: '✔';
  position: absolute;
  left: 20px;
  top: 20px;
  color: #ff6a00;
  font-size: 1.2rem;
}


/* Default: Mobile - 1 column */
.equipment-grid {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Tablet and up: 3 columns */
@media (min-width: 768px) {
  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.equipment-item img {
  width: 100%;
  max-width: 300px;
  max-height: 200px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.equipment-item h4 {
  text-align: center;
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

#scrollToTopBtn:hover {
  box-shadow: 0 2px 4px white;
  background-color: darkgray;
  background: linear-gradient(to bottom, #05525e, #c5bfbff0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}