:root {
	--bg: #050505;
	--panel: #111;
	--text: #ffffff;
	--muted: #cfcfcf;
	--accent: #ffffff;
}

/* Force all links to be white */
a:link,
a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Hover effect */
a:hover {
  color: #ffd700; /* gold on hover */
}
a:active {
  color: #ffd700;
}

.btn {
  color: #ffffff !important;
}

.btn:hover {
  color: #ffffff !important;
}

.hero-text .btn {
  background: linear-gradient(45deg, #7b2ff7, #f107a3); /* purple gradient */
  color: #ffffff !important;
}

body {
  background: 
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)),
    url('hereford-night.png') center/cover no-repeat fixed;

  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background: 
   linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
  url('hereford-night.jpg') no-repeat center center fixed;

  transform: scale(1.1);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3 {
	font-weight: 700;
	letter-spacing: 0.3px;
}

/* Footer links */
.footer-links a {
  display: block;
  color: #ffffff; /* default white */
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffd700; /* yellow hover */
  transform: translateX(5px);
  text-shadow:
    0 0 8px rgba(255,215,0,0.6),
    0 0 18px rgba(255,215,0,0.4);
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #ffd700;
}

body {
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
}

/* Container for the tags */
.music-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center; /* Centers tags on all screen sizes */
  align-items: center;
  max-width: 900px; /* Keeps tags from spreading too wide on desktop */
  margin: 30px auto; /* Centers the container itself and adds vertical spacing */
  padding: 0 20px;
}

/* Individual Tag Style */
.music-tag {
  background-color: #7c3aed; /* Matches your brand purple */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px; /* Clean pill shape */
  font-size: 14px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif; /* Matches your global font */
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: default;
  white-space: nowrap; /* Prevents text from breaking inside a tag */
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

/* Hover effect matching your card styles */
.music-tag:hover {
  transform: translateY(-3px);
  background-color: #6d28d9;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.testimonials {
  background: #111;
  border-radius: 18px;
  margin-top: 30px;
  padding: 80px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  background: transparent;
  transition: all 0.35s ease;
}

.testimonial::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7c3aed, transparent);
  display: block;
  margin: 25px auto 0 auto;
  opacity: 0.7;
}

.testimonial:hover {
  transform: scale(1.02);
}

.stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.testimonial p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ddd;
  max-width: 600px;
  margin: 0 auto 15px auto;
}

.testimonial h4 {
  color: #aaa;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.site-footer {
    margin-top: 80px;
}

.site-footer {
	background: linear-gradient(180deg, #0a0a0a, #050505);
	padding: 60px 20px 30px;
	color: var(--muted);
	border-top: 1px solid rgba(255,255,255,0.08);
	position: relative;
	overflow: hidden;
}

/* 🔥 CENTER GLOW */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(79,70,229,0.8),
        rgba(59,130,246,0.9),
        rgba(79,70,229,0.8),
        transparent
    );

    box-shadow:
        0 0 12px rgba(79,70,229,0.8),
        0 0 25px rgba(59,130,246,0.6);
}

/* MAIN GLOW (move your old ::before here) */
.site-footer::after {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
   filter: blur(120px);
}}

/* 🔥 HOTSPOT */
      .site-footer::after {
	content: "";
	position: absolute;
	width: 250px;
	height: 250px;
	left: 50%;
	top: 35%;
	transform: translate(-50%, -50%);
	filter: blur(60px);
}

/* layout */
.footer-container {
	max-width: 1100px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	position: relative;
	z-index: 2;
}

.footer-social {
    margin-top: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;

    background: rgba(255,255,255,0.05);
    color: #fff;

    transition: 0.3s;
}

.footer-social svg {
    width: 22px;
    height: 22px;
}

/* 🔥 HOVER = GLOW LIKE YOUR BRAND */
.footer-social a:hover {
    background: rgba(79,70,229,0.2);
    transform: scale(1.1);

    box-shadow:
        0 0 12px rgba(79,70,229,0.8),
        0 0 25px rgba(59,130,246,0.6);
}

/* headings */
.footer-container h3,
.footer-container h4 {
	color: white;
	margin-bottom: 12px;
	text-shadow: 0 0 10px rgba(124,58,237,0.6);
}

/* brand */
.footer-brand p {
	margin-bottom: 10px;
}

.footer-cta {
	color: #fff;
	font-weight: bold;
	text-shadow:
		0 0 10px rgba(124,58,237,0.9),
		0 0 25px rgba(124,58,237,0.6);
}

/* links */
.footer-links a {
	display: block;
	color: var(--muted);
	text-decoration: none;
	margin-bottom: 8px;
	transition: 0.3s;
}

.footer-links a:hover {
	color: white;
	transform: translateX(5px);
	text-shadow:
		0 0 8px rgba(124,58,237,0.8),
		0 0 18px rgba(124,58,237,0.6);
}

/* bottom */
.footer-bottom {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.08);
	font-size: 0.85rem;
	opacity: 0.6;
}


nav {
	width: 100%;
	background: #000;
	padding: 18px 30px;
	display: flex;
	justify-content: center;
	gap: 30px;
	position: sticky;
	top: 0;
	z-index: 1000;
}

nav a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}

nav a:hover {
	opacity: 0.8;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

header {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background: radial-gradient(circle at center, #111 0%, #000 70%);
	overflow: hidden;
	padding: 40px 20px 20px 20px;
	gap: 30px;
}

.hero-logo-strip {
	animation: floatLogo 5s ease-in-out infinite;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1980px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	margin-top: 20px;
}


.hero-logo-strip::after {
	content: "";
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, 0.18),
			transparent);
	animation: shine 8s infinite linear;
	pointer-events: none;
	z-index: 5;
}

.wide-logo {
	width: 100%;
	max-width: 1980px;
	height: auto;
	max-height: 682px;
	object-fit: contain;
	position: relative;
	z-index: 2;
}

.mobile-logo {
	display: none;
	width: 100%;
	height: auto;
}

.why-image {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.why-image img {
    width: 100%;
    max-width: 750px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
}

.why-image-slider {
  position: relative;
  width: 100%;
  max-width: 750px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 40px auto;
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);

  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}

.why-image-slider:hover {
  transform: translateY(-6px);

  box-shadow:
    0 14px 34px rgba(124, 58, 237, 0.18),
    0 0 18px rgba(124, 58, 237, 0.12);

  border-color: rgba(124, 58, 237, 0.35);
}


/* IMAGES */
.why-image-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.why-image-slider img.active {
  opacity: 1;
}

/* ACTIVE IMAGE */
.why-image-slider img.active {
    opacity: 1;
}

/* SLOW ZOOM ON HOVER */
.why-image-slider:hover img.active {
    transform: scale(1.08);
}

.hero-light {
	position: absolute;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
	border-radius: 50%;
	animation: drift 10s infinite alternate ease-in-out;
	top: 0%;
	left: -10%;
	z-index: 1;
	filter: blur(40px);
}

@keyframes drift {
	from {
		transform: translateX(0px) translateY(0px);
	}

	to {
		transform: translateX(700px) translateY(160px);
	}
}

@keyframes shine {
	from {
		left: -30%;
	}

	to {
		left: 100%;
	}
}

@keyframes floatLogo {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-3px);
	}
}

@keyframes underlineGlow {
	0% {
		width: 55px;
		opacity: 0.5;
	}

	50% {
		width: 110px;
		opacity: 1;
	}

	100% {
		width: 55px;
		opacity: 0.5;
	}
}

.hero-text {
	text-align: center;
}

header h1 {
	font-size: 3rem;
	margin-bottom: 15px;
}

header p {
	font-size: 1.2rem;
	color: var(--muted);
	margin-bottom: 25px;
}

.btn {
	display: inline-block;
	padding: 14px 30px;
	background: white;
	color: black;
	text-decoration: none;
	border-radius: 8px;
	font-weight: bold;
}

.btn:hover {
	box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

section {
	max-width: 1100px;
	margin: auto;
	padding: 80px 20px;
}

h2 {
	font-size: 2rem;
	margin-bottom: 50px;
	text-align: center;
	position: relative;
	display: table;
	margin-left: auto;
	margin-right: auto;
	letter-spacing: 1px;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -12px;
	transform: translateX(-50%);
	width: 70px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #ffffff, #999, #ffffff);
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
	animation: underlineGlow 3s ease-in-out infinite;
}

#services {
	background: #111;
	border-radius: 18px;
	margin-top: 30px;
}

.about,
.contact {
	background: #181818;
	border-radius: 18px;
	padding: 80px 20px;
	margin-top: 30px;
}

.contact {
	background: #202020;
	text-align: center;
}

.services,
.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.card {
	background: linear-gradient(145deg, #232323, #151515);
	padding: 32px;
	border-radius: 18px;
	text-align: center;
	transition: 0.35s ease;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.card:hover {
	transform: translateY(-6px);
	box-shadow:
		0 14px 34px rgba(124, 58, 237, 0.18),
		0 0 18px rgba(124, 58, 237, 0.12);
	border-color: rgba(124, 58, 237, 0.35);
}

.card h3 {
	font-size: 1.2rem;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
	color: white;
}

.card p {
	color: #cfcfcf;
	font-size: 0.97rem;
	line-height: 1.7;
}

.verified {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #7c3aed;
}

.about-text {
	max-width: 900px;
	margin: auto;
	text-align: left;
	color: var(--muted);
	line-height: 1.8;
}

.about-text img {
	width: 350px;
	float: left;
	margin: 0 25px 20px 0;
	border-radius: 14px;
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);

	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-text img:hover {
	transform: scale(1.05) rotate(-1deg);
	box-shadow: 0 12px 35px rgba(124, 58, 237, 0.35);
}

.contact form {
	max-width: 550px;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

input,
textarea {
	padding: 14px;
	border: none;
	border-radius: 8px;
	background: #1a1a1a;
	color: white;
}

button {
	padding: 14px;
	border: none;
	border-radius: 8px;
	background: white;
	color: black;
	font-weight: bold;
	cursor: pointer;
}

footer {
	text-align: center;
	padding: 30px;
	background: #080808;
	color: var(--muted);
}

.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25d366;
	color: white;
	padding: 14px 18px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: bold;
}

@media (max-width:768px) {

        h2 {
    font-size: 1.4rem;
}
	.wide-logo {
		display: none;
	}

	.mobile-logo {
		display: block;
	}

	header h1 {
		font-size: 2rem;
	}

        header h2 {
        font-size: 1.3rem;
        margin-top: 10px;

        }

	.about-text img {
		float: none;
		display: block;
		margin: 0 auto 20px auto;
		width: 100%;
		max-width: 320px;
	}

	.about-text {
		text-align: center;
	}
}

nav a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
}
