
/* Refactored */

body {
  background-color: #0b0b0b;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.soon-bg{
  background-color: black;
}
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%); /* Center the video */
  z-index: -1; /* Place the video behind other content */
}
.svg-container{
  display: grid; 
  margin: auto;
}

.soon_svg_es {
  width: 70%;
  margin: auto;
  margin-top: 400px;
  z-index: 10;
}
.soon_svg {
  display: none;
}
.artist-image-container{
  width: 120px;
  height: 300px;
  background-color: blue;
}

.contact-image-container {
  position: relative;
  width: 500px;   /* set your desired size */
  height: 500px;
  min-width: 500px;   /* set your desired size */
  min-height: 500px;
  overflow: hidden;
}

.content-title{
  margin-top: 100px;
  margin-left: 1em;
}

.content {
  margin-top: 10px;
  flex-grow: 1;
  margin-bottom: 100px;
  padding: 0 15px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
  color: white;
}
.footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

.form-margin{ 
  margin-left: 100px;
}

.flex-contact {
  display: flex;
}

.image-container img {
  width: 100%;
  cursor: pointer;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;    /* match container */
  height: 100%;
  z-index: 2;      /* higher than iframe */
  pointer-events: none; /* let clicks go through */
}
.map-holder iframe{
  width: 100%;   /* set your desired size */
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}
/* Modal responsive styling */
.modal-content {
  text-align: left;
  height: 80%;
  width: 80vw;
  background: black;
  color: white;
  padding: 20px;
  position: relative;
  text-align: center;
}

/* Mobile artist header */
.mobile-artist-header {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.mobile-artist-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.mobile-artist-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.mobile-artist-name {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
  text-align: left;
}

/* Responsive modal adjustments */
@media (max-width: 768px) {
  .modal-content {
    height: 90%;
    width: 95vw;
    margin: 20px auto;
  }
  
  .modal-body {
    flex-direction: column;
  }
  
  .mobile-artist-header {
    height: 180px;
  }
  
  .mobile-artist-name {
    font-size: 1.8rem;
  }
  
  .col-md-8 {
    padding: 15px !important;
  }
}

@media (max-width: 576px) {
  .modal-content {
    height: 95%;
    width: 100vw;
    margin: 10px auto;
    border-radius: 0;
  }
  
  .mobile-artist-header {
    height: 150px;
    border-radius: 0;
  }
  
  .mobile-artist-name {
    font-size: 1.5rem;
  }
  
  .col-md-8 {
    padding: 10px !important;
  }
  
  .btn-close {
    top: 10px !important;
    right: 10px !important;
  }
}

.navbar {
  background-color: black;
}
.navbar .container-fluid {
  display: flex;
  align-items: center;
}
.navbar-nav {
  margin: auto;
  display: flex;
  align-items: center;
}

/* Navbar logo styling */
.navbar-logo {
  height: 40px;
  width: auto;
  max-width: 150px;
  filter: brightness(0) invert(1); /* Ensures white color */
}

/* Responsive navbar */
@media (max-width: 768px) {
  .navbar-logo {
    height: 30px;
    max-width: 120px;
  }
  
  .navbar-nav {
    gap: 0.5rem !important;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    height: 25px;
    max-width: 100px;
  }
  
  .navbar-nav {
    gap: 0.25rem !important;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}

/* Content responsive adjustments */
.content {
  margin-top: 10px;
  flex-grow: 1;
  margin-bottom: 100px;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .content {
    margin-bottom: 80px;
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .content {
    margin-bottom: 60px;
    padding: 0 5px;
  }
}

/* Footer responsive */
.footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .footer {
    padding: 10px;
    font-size: 0.8rem;
  }
}

/* Instagram post container styling */
.instagram-post-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
  min-height: 120px;
  position: relative;
}

.instagram-post-container:hover {
  transform: scale(1.05);
}

.instagram-post-container iframe {
  border: none;
  background: transparent;
}

/* Instagram embed styling */
.instagram-embed {
  width: 100%;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}

/* Instagram post preview styling */
.instagram-post-preview {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.instagram-post-preview:hover {
  transform: scale(1.05);
}

.post-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-image iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.post-image iframe[style*="opacity: 1"] {
  opacity: 1;
}

/* Hide Instagram embed header using external CSS */
.instagram-post-container {
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

/* Alternative approach - use clip-path to hide header */
.instagram-post-container iframe {
  clip-path: inset(20% 0 0 0);
  transform: scale(1.1);
  transform-origin: center;
}

.post-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
}

.post-placeholder i {
  font-size: 2rem;
  margin-bottom: 8px;
  opacity: 0.9;
}

.post-placeholder span {
  font-size: 0.7rem;
  opacity: 0.8;
  text-align: center;
  line-height: 1.2;
}

.post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.instagram-post-preview:hover .post-overlay {
  opacity: 1;
}

.post-link {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.post-link:hover {
  background: rgba(0, 0, 0, 0.9);
  color: white;
}

/* Modal scrollable content */
.modal-content .modal-body {
  overflow: hidden;
}

.modal-content .col-md-8 {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.modal-content .col-md-8::-webkit-scrollbar {
  width: 6px;
}

.modal-content .col-md-8::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content .col-md-8::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.modal-content .col-md-8::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.square-decoration-div{
  background-color: white;
  height: 35px;
}

.subtitle{
  display: inline;
  background-color: red;
}

.bio-content{
  margin-top: -100px;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive bio content */
@media (max-width: 768px) {
  .bio-content {
    width: 100%;
    margin-top: -50px;
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .bio-content {
    margin-top: -30px;
    padding: 0 10px;
  }
}

.partners-logo-container{
  margin-left: auto;
  margin-right: auto;
}

.partners-logo-container img{
  height: 100px;
  margin: 20px;
  margin-bottom: 12x0px;
}

/* Responsive partner logos */
.partner-logo {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.partner-logo:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .partner-logo {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .partner-logo {
    height: 50px;
  }
}

/* Contact form responsive styling */
.contact-form-container {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 15px;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .contact-form-container {
    padding: 10px;
    margin-top: 10px;
  }
}

/* Contact image container responsive */
.contact-image-container {
  position: relative;
  width: 100%;
  height: 300px;
  min-width: 100%;
  min-height: 300px;
  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .contact-image-container {
    height: 250px;
    min-height: 250px;
  }
}

@media (max-width: 576px) {
  .contact-image-container {
    height: 200px;
    min-height: 200px;
  }
}

/* Map holder responsive */
.map-holder {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-holder iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 12px;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  border-radius: 12px;
}

/* Instagram account feed styling */
.instagram-account-feed {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  margin-top: 20px;
}

.instagram-account-feed iframe {
  border: none;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Spotify account feed styling */
.spotify-account-feed {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  margin-top: 20px;
}

.spotify-account-feed iframe {
  border: none;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Social switcher styling */
.social-switcher {
  display: flex;
  gap: 10px;
}

.social-switcher .btn {
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-width: 2px;
}

.social-switcher .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-switcher .btn.active {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: white;
}

.social-switcher .btn:not(.active) {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.social-switcher .btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}