@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Big+Shoulders+Text:wght@700&display=swap');
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.css";

/* ---------- Core ---------- */
html {
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  /* Studio-vibe page background (swap the image to whatever you like) */
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(10,10,20,.55), rgba(0,0,0,.9)),
    url('../images/studio-bg.jpg') center / cover fixed no-repeat;
  color: #fff;
}
body, p, td {
  font-family: 'Roboto', sans-serif;
  font-size: 1.0rem;
  line-height: 1.4em;
}
a {
  text-decoration: underline;
  color: #fff;
}
a.anchor {
  display: block;
  position: relative;
  top: -170px;
  visibility: hidden;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background-color: #002582;
  border-color: #002582;
}
.btn-primary:focus {
  background-color: #002582;
  border-color: #002582;
}
.btn-primary:hover {
  background-color: #003DD6;
  border-color: #003DD6;
}

/* ---------- Layout helpers ---------- */
.container-fluid { padding: 0px; }
.purple-bg { background-color: #442F64; }
p.lead { font-size: 1.1em; line-height: 1.5em; margin-bottom: .8rem; } /* add breathing room */
h3 { font-size: 2.2rem; }

/* ---------- Header / Nav ---------- */
.navbar{
  position:absolute;
  width:100%;
  z-index:10;
  max-width:100%;
}
.logo {
  font-family: 'Big Shoulders Text', sans-serif;
  font-size: 36px;
  margin-top: 10px;
  color: #fff;
}
header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: rgba(0,2,34,0);
  -webkit-transition: background-color 400ms linear;
  -moz-transition: background-color 400ms linear;
  -o-transition: background-color 400ms linear;
  -ms-transition: background-color 400ms linear;
  transition: background-color 400ms linear;
}
header.scrolled {
  background-color: rgba(0,2,34,1.0);
  border-bottom: 4px solid #002582;
}
.navbar {
  display: block;
  font-size: 1.0em;
  font-weight: normal;
  text-transform: uppercase;
  padding-left: 0;
  padding-right: 0;
}
.nav-item {
  margin-right: 6px;
  padding: 10px;
  font-size: 1.0em;
}
.nav-item a {
  color: #fff;
  text-decoration: none;
  border-radius: .4rem;
  padding: .15rem .35rem; /* easier hit target */
}
.nav-item a:hover,
.nav-item a:focus {
  background: rgba(255,255,255,.08);
}
.navbar-toggler {
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 2px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-collapse.show { background: #111; }

/* ---------- Hero / Carousel ---------- */
#homeCarouselCaption {
  position:absolute;
  z-index:15;
  width: 100%;
  top: 120px;
}

/* Make hero images always readable: add an overlay on the whole hero */
#homeCarousel {
  position: relative;
}
#homeCarousel::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:12;
  pointer-events:none;
  /* Dark gradient overlay so text stays legible on any photo */
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.65));
}

/* If you want a dedicated hero background image, set it here.
   This will sit under any .carousel-item backgrounds. */
#homeCarousel {
  background:
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.4)),
    url('../images/studio-bg.jpg') center/cover no-repeat;
}

/* Carousel slides still supported (kept from your original) */
#homeCarousel .carousel-item {
  height: 520px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

/* Left/right hero tiles */
#homePhotoLeft {
  background:url(../images/rocco-gig.jpg);
  background-size: cover;
  background-position: center center;
  border: solid 3px #fff;
  margin-left: 15px;
  margin-right: -15px;
  min-height: 260px; /* ensure presence even if no image loads */
}
#homePhotoRight {
  margin-left: 15px;
  padding-right: 30px;
  margin-top: .6rem; /* give the image/button stack some space */
}
#homePhotoRight img {
  border: solid 3px #fff;
}

/* Jumbotron readability tweaks */
.jumbotron {
  background: rgba(0,0,0,0.6);
  border: solid 3px #fff;
  border-radius: 10px;
  margin-left: 15px;
  margin-top: 0px;
  margin-bottom: 30px;
  padding: 1.2rem .75rem 1.6rem .75rem;
  backdrop-filter: blur(2px);
}
.jumbotron h2 {
  font-size: 1.5rem;
  line-height: 1em;
}
.jumbotron h1 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  font-family: 'Big Shoulders Text', sans-serif;
  margin-bottom: .4rem;
}

/* ---------- Accordion (Music) ---------- */
#accordion .card {
  background-color: #222;
  border-color: #002582;
  margin-bottom: 6px;
}
#accordion .card-header {
  padding: 0.75rem 0.5rem;
  background-color: #002582;
}
#accordion .card-header .btn {
  font-size: 22px;
  line-height: 24px;
  color: #fff;
  text-align: left;
  text-decoration: none;
}
#accordion .card-header .btn i {
  font-size: 22px;
  line-height: 22px;
  padding-right: 10px;
  margin-top: -3px;
  display: block;
  float: left;
}

/* ---------- Social ---------- */
.social-icons i {
  font-size: 48px;
  line-height: 68px;
  padding-left: 15px;
  display: block;
  float: right;
}
.social-icons img {
  margin-top: 12px;
  display: block;
  float: right;
  margin-left: 15px;
}
.social-icons a { color: #fff; }
.clear-float { clear: both; }

/* ---------- Photos / Services ---------- */
.img-thumbnail {
  margin: 8px;
  background-color: #dee2e6;
  padding: 0.08rem;
  border-radius: 8px;
}
#services {
  background-color: #002582;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-box-shadow: 5px 5px 11px 14px #002582;
  box-shadow: 5px 5px 11px 14px #002582;
  border-radius: 8px;
}
#services ul { padding-left: 15px; }

/* ---------- Responsive ---------- */
/* X-Small devices */
@media (max-width: 575px) { }

/* Small devices (<= 768px) */
@media (max-width: 768px) {
  #homeCarousel .carousel-item { height: 520px; }
  .jumbotron { margin-right: 15px; }
}

/* Medium devices (>= 768px) */
@media (min-width: 768px) {
  body, p, td {
    font-size: 1.1rem;
    line-height: 1.4em;
  }
  .logo { margin-top: 17px; }
  #homeCarousel .carousel-item { height: 520px; }
  .container-fluid { padding: 15px; }
  #accordion .card-header .btn i { font-size: 30px; line-height: 30px; }
  .nav-item { font-size: 0.8em; }
  #contactMiddle { text-align: center; }
}

/* Large devices (>= 992px) */
@media (min-width: 992px) {
  .jumbotron h1 { font-size: 3rem; }
  .jumbotron h2 { font-size: 2rem; }
  #homeCarousel .carousel-item { height: 700px; }
  .nav-item { margin-right: 20px; }
  .logo { margin-top: 10px; font-size: 36px; }
  .nav-item { font-size: 0.9em; }
}

/* Extra large (>= 1200px) */
@media (min-width: 1200px) {
  .jumbotron h1 { font-size: 3.2rem; }
  .jumbotron h2 { font-size: 2.2rem; }
  .nav-item { font-size: 1em; }
}