/* ================================
   GLOBAL THEME VARIABLES
================================ */

:root {
  /* Brand Color */
  --accent: #f05454;

  /* Backgrounds */
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-card: #141414;

  /* Text */
  --text-primary: #eaeaea;
  --text-secondary: #bdbdbd;

  /* Borders & shadows */
  --border: #2a2a2a;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

  /* Layout */
  --container-width: 1200px;
}

/* ================================
   LIGHT THEME
================================ */

body.light {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-card: #ffffff;

  --text-primary: #111111;
  --text-secondary: #555555;

  --border: #e2e2e2;
}

/* ================================
   RESET
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  color: var(--text-primary);
  text-decoration: underline;
}

/* ================================
   LAYOUT
================================ */

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: auto;
}

section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* ================================
   HEADER
================================ */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: 0.3s;
}

header.scrolled {
  background: var(--bg-secondary);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: var(--accent);
}

/* ================================
   MOBILE NAV
================================ */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile layout */

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 70px;
    /* left: 80%; */
    right: 0%;
    /* width: 100%; */
    background: var(--bg-secondary);

    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 25px;

    border-top: 1px solid var(--border);

    display: none;
  }

  nav ul.active {
    display: flex;
    right: 0%;
  }
}

/* ================================
   HERO
================================ */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.home {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775036106/imresizer-DSC00965_qvbeff.jpg")
      center/cover no-repeat;
}

.about {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775041635/collage1_p71n1q.jpg")
      center/cover no-repeat;
}

.service {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775590573/MixCollage-08-Apr-2026-01-00-AM-4837_uqttd7.jpg")
      center/cover no-repeat;
}

.studio {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775596814/MixCollage-08-Apr-2026-02-50-AM-77_ussqrb.jpg")
      center/cover no-repeat;
}

.studio-intro {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775597157/MixCollage-08-Apr-2026-02-55-AM-1129_nzo5u0.jpg")
      center/cover no-repeat;
}

.contact {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775601467/MixCollage-08-Apr-2026-04-07-AM-8616_aninln.jpg")
      center/cover no-repeat;
}

.gallery {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775737399/pngtree-black-and-grey-wall-image-background-picture-image_1172485_gzo31i.png")
      center/cover no-repeat;
}

.consoleBg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775737642/fader-digital-mixing-console-with-volume-meter_169016-5233_jmhzwo.avif")
      center/cover no-repeat;
}

.equipmentBg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775737801/music-studio-equipment-stockcake_se9ukf.webp")
      center/cover no-repeat;
}

.telephoneBg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775738314/34781_fqv4gt.jpg")
      center/cover no-repeat;
}

.emailBg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775738486/images_zn7jc5.jpg")
      center/cover no-repeat;
}

.mapSectionBg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775834284/map-time-zones-infographics-time-wallpaper-preview_bk7iam.jpg")
      center/cover no-repeat;
}

.serviceSectionBg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775834928/music-vinyl-record-label-with-sound-notes_1017-33905_wcbivw.avif")
      center/cover no-repeat;
}

.whyChooseUsBg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775835922/istockphoto-518281016-612x612_lk1dpr.jpg")
      center/cover no-repeat;
}

.whatWeOfferBg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775841608/download_ig1tjd.jpg")
      center/cover no-repeat;
}

.testimonialsBg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://res.cloudinary.com/devya77n3/image/upload/v1775843318/pngtree-template-for-3d-review-designs-image_3683798_kgm8db.jpg")
      center/cover no-repeat;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
}

/* ================================
   BUTTON
================================ */

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

/* ================================
   CARDS
================================ */

.card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.imgcard {
  padding: 8px 8px 0 8px;
  border-radius: 10px;
  overflow: hidden;
  position: relative; /* 🔥 REQUIRED for overlay */
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

/* Image styling */
.imgcard img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease; /* 🔥 smooth zoom */
}

/* Card hover (optional but recommended) */
.imgcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border: 1px solid var(--text-primary);
}

/* Image zoom */
.imgcard:hover img {
  transform: scale(1.4);
}

/* Overlay */
.imgcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.4s;
  pointer-events: none; /* 🔥 prevents blocking hover */
}

.imgcard:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

/* ================================
   GRID
================================ */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* ================================
   TWO COLUMN
================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* ================================
   DARK SECTION
================================ */

.dark-section {
  background: var(--bg-secondary);
}

/* ================================
   CONTACT FORM
================================ */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 700px;
  margin: auto;
}

input,
textarea {
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  border-radius: 4px;
  font-size: 14px;
  transition:
    border 0.3s ease,
    box-shadow 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-secondary);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.9;
}

/* ================================
   FOOTER
================================ */

footer {
  background: var(--bg-secondary);
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* ================================
   SCROLL ANIMATION
================================ */

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  nav ul {
    gap: 15px;
  }
}





/* Experience Box - Premium UI */

.experience-box {
    margin-top: 25px;
    display: inline-block;
    width: 100%;
}

.exp-inner {
    background: linear-gradient(135deg, #1f1f1f, #111);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

/* Glow effect */
.exp-inner::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(240,84,84,0.2), transparent 70%);
    top: -10%;
    left: -10%;
    opacity: 0;
    transition: 0.4s;
}

.exp-inner:hover::before {
    opacity: 1;
}

/* Hover lift */
.exp-inner:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

/* Number styling */
.exp-inner span {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent);
    display: block;
}

/* Text styling */
.exp-inner p {
    margin-top: 5px;
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 1px;
}