/* ---------- Global Styles ---------- */




* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #eee;
  background-color: #121212;
  scroll-behavior: smooth;
}

a {
  color: rgb(33, 100, 158);;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}



/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  background: url('Assets/Images/mixer.jpg');
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0,0,0,0.7);
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  animation: fadeUp 1s ease forwards;
}

.hero p {
  font-size: 1.5rem;
  animation: fadeUp 1.2s ease forwards;
}

/* ---------- Keyframes ---------- */
@keyframes fadeUp {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* ---------- Content Sections ---------- */
.content-section {
  padding: 60px 20px;

  transition: all 0.6s ease-in-out;
}

.content-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.content-section p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  text-align: center;
  color: #ddd;
}

/* ---------- Services Section ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-box {
  background: #1e1e1e;
  border-left: 4px solid rgb(33, 100, 158);;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.service-box h3 {
  margin: 15px 0;
  color: #fff;
}

.service-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ---------- Contact Section ---------- */
#contact a {
  color: rgb(33, 100, 158);
  font-weight: bold;
}

/* ---------- Footer ---------- */
footer {
  background: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
}

/* ---------- Responsive Typography ---------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
}

/* ---------- Portfolio Section ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.portfolio-item {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 2px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  border-color: rgb(33, 100, 158);
}

.portfolio-item h3 {
  margin: 15px 0 5px;
  color: #fff;
}

.portfolio-item p {
  color: #ccc;
  font-size: 0.95rem;
}

/* ---------- Custom Audio Player ---------- */
.audio-player {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #1a1a1a;
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}

.audio-player:hover {
  transform: translateY(-3px);
}

.play-btn {
  background: #7a96e8;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.1);
  background: #204e9f;
}

.play-icon, .pause-icon {
  width: 24px;
  height: 24px;
}

.pause-icon {
  display: none;
}

/* Show pause icon when playing */
.audio-playing .play-icon {
  display: none;
}

.audio-playing .pause-icon {
  display: block;
}

.progress-container {
  flex: 1;
  height: 8px;
  background: #333;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.progress {
  width: 0%;
  height: 100%;
  background: #1e3fcf;
  border-radius: 4px;
  transition: width 0.1s linear;
}

.time {
  color: #ccc;
  font-size: 0.9rem;
  min-width: 50px;
  text-align: right;
  font-family: monospace;
}
