/* ===== AZURIOSA Website Styles ===== */
/* Complete blue color theme conversion from Jakkals Vibes */

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Barlow Condensed', sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* ===== Header Styles ===== */
#header-outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

header#top {
  padding: 10px 0;
}

.logo img {
  height: 40px;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.social-icons a {
  margin: 0 10px;
  font-size: 16px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  opacity: 1;
  color: #1e3a8a;  /* AZURIOSA Blue */
  transform: translateY(-3px);
}

/* Social icons pulse effect */
.social-icons a:hover i {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

#main-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
}

#main-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#main-nav ul li {
  margin: 0 12px;
}

#main-nav ul li a {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

#main-nav ul li a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);  /* AZURIOSA Blue gradient */
  transition: width 0.3s ease;
}

#main-nav ul li a:hover {
  color: #1e3a8a;  /* AZURIOSA Blue */
}

#main-nav ul li a:hover:after {
  width: 100%;
}

#main-nav ul li a.active {
  color: #1e3a8a;  /* AZURIOSA Blue */
}

#main-nav ul li a.active:after {
  width: 100%;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger menu animation */
.mobile-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== Hero Section ===== */
/* ===== Animation Styles ===== */
@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

#hero {
  height: 100vh;
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 70px; /* Header height */
  animation: zoomOut 8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* Slight dark overlay to improve text visibility */
  opacity: 1;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-main {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  transform: translateX(-50px);  /* Move entire logo container to the left */
}

.logo-main img {
  height: 180px;  /* Increased from 120px to 180px */
  animation: logoFloatIn 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes logoFloatIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Position the text */
.quote-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Right align the content on desktop */
  padding-right: 38%; /* Adjust this value to position the text */
  width: 100%;
  animation: quoteSlideIn 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes quoteSlideIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.quote-container p {
  font-family: 'Dosis', sans-serif;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); /* Enhanced text shadow for better visibility */
}

/* ===== Feature Boxes ===== */
#feature-boxes {
  padding: 60px 0;
  background-color: #000000;
  margin-top: 5%;
}

.box-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-box {
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.box-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-box:hover .box-image img {
  transform: scale(1.1);
}

.box-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transition: all 0.3s ease;
}

/* AZURIOSA blue hover effect */
.feature-box:hover .box-overlay {
  background: linear-gradient(to top, rgba(30, 58, 138, 0.6), transparent);
}

.box-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  z-index: 2;
}

.box-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff; /* Always white */
  transition: none; /* Disable transition for title */
}

.box-content p {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
  transition: color 0.3s ease; /* Add transition only for description */
}

.feature-box:hover .box-content p {
  color: #3b82f6; /* AZURIOSA bright blue */
  opacity: 1;
}

/* Keep the title white regardless of hover state */
.feature-box:hover .box-content h3 {
  color: #ffffff;
}

/* ===== Footer ===== */
#footer-outer {
  padding: 30px 0;
  background-color: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer-outer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links ul {
  display: flex;
}

.footer-links ul li {
  margin-right: 20px;
}

.footer-links ul li a {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: #1e3a8a;  /* AZURIOSA Blue */
}

.copyright p {
  font-size: 14px;
  opacity: 0.7;
}

.footer-social ul {
  display: flex;
}

.footer-social ul li {
  margin-left: 15px;
}

.footer-social ul li a {
  font-size: 16px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-social ul li a:hover {
  opacity: 1;
  color: #1e3a8a;  /* AZURIOSA Blue */
  transform: translateY(-3px);
}

/* Footer Newsletter Styles */
.footer-newsletter {
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-newsletter h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-newsletter p {
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-newsletter .newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.footer-newsletter .newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 15px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
  outline: none;
  transition: background-color 0.3s ease;
}

.footer-newsletter .newsletter-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter .newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .newsletter-form button {
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);  /* AZURIOSA Blue gradient */
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 4px 4px 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-newsletter .newsletter-form button:hover {
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);  /* AZURIOSA reversed gradient */
}

/* Button ripple effect */
.footer-newsletter .newsletter-form button:after,
.cookie-accept:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.footer-newsletter .newsletter-form button:hover:after,
.cookie-accept:hover:after {
  width: 300%;
  height: 300%;
}

/* Form feedback styles */
.footer-newsletter .form-message {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 4px;
  display: none;
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-newsletter .form-message.success {
  background-color: rgba(46, 204, 113, 0.2);
  border: 1px solid #2ecc71;
  color: #2ecc71;
}

.footer-newsletter .form-message.error {
  background-color: rgba(231, 76, 60, 0.2);
  border: 1px solid #e74c3c;
  color: #e74c3c;
}

/* ===== Cookie Consent Banner ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.95);
  color: #fff;
  padding: 15px;
  z-index: 999;
  display: none;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-text {
  margin: 0;
  flex: 1;
  min-width: 200px;
  padding-right: 20px;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-accept {
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);  /* AZURIOSA Blue gradient */
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cookie-accept:hover {
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);  /* AZURIOSA reversed gradient */
}

.cookie-more {
  color: #fff;
  text-decoration: underline;
  padding: 8px 15px;
}

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo {
  animation: pulse 1.5s infinite ease-in-out;
}

.loader-logo img {
  max-width: 150px;
}

/* ===== Parallax Effect ===== */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-position 0.5s ease-out;
}

/* ===== Music Player Styles ===== */
.music-player {
  background-color: rgba(10, 10, 10, 0.7);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.music-player-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.music-player-cover {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 15px;
}

.music-player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-player-info {
  flex: 1;
}

.music-player-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.music-player-artist {
  font-size: 14px;
  opacity: 0.7;
}

.music-player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.music-player-controls button {
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.music-player-controls button:hover {
  opacity: 1;
  color: #1e3a8a;  /* AZURIOSA Blue */
}

.music-player-play {
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);  /* AZURIOSA Blue gradient */
  border-radius: 50%;
  font-size: 18px;
}

.music-player-progress {
  height: 4px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 5px;
}

.music-player-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);  /* AZURIOSA Blue gradient */
  transition: width 0.1s linear;
}

.music-player-time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.7;
}

/* ===== Page Header Styles ===== */
#page-header-wrap {
  height: 225px;
  background-color: #000000;
  position: relative;
  margin-top: 90px;
}

#page-header-bg {
  height: 225px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

#page-header-bg h1 {
  color: #ffffff;
  font-size: 48px;
  margin-left: 10%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Discography Page Styles ===== */
.discography-container {
  padding: 60px 0;
  background-color: #000000;
}

.section-header {
  margin-bottom: 30px;
  padding-left: 10%;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header h2 {
  color: #1e3a8a;  /* AZURIOSA Blue */
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.section-header p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
}

.gallery-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 60px;
}

.music-item-link {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a;
  aspect-ratio: 1/1;
  text-decoration: none;
  color: white;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-item-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.music-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.music-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.music-item-link:hover img {
  transform: scale(1.1);
}

.music-item .work-info-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.music-item .work-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.music-item-link:hover .work-info-bg,
.music-item-link:hover .work-info {
  opacity: 1;
}

/* AZURIOSA blue hover effect */
.music-item-link:hover .work-info-bg {
  background-color: rgba(30, 58, 138, 0.6);
}

.music-item .work-info h3 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  transition: transform 0.3s ease;
  transform: translateY(20px);
}

.music-item-link:hover .work-info h3 {
  transform: translateY(0);
}

.music-item .work-info p {
  font-size: 14px;
  text-align: center;
  opacity: 0.8;
}

.youtube-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);  /* AZURIOSA Blue gradient */
  color: #ffffff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.youtube-play-btn:hover {
  background: linear-gradient(45deg, #3b82f6, #06b6d4);  /* AZURIOSA secondary gradient */
  transform: scale(1.05);
}

/* ===== Contact Page Styles ===== */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 60px;
}

.contact-left, .contact-right {
  flex: 1;
  min-width: 300px;
  padding: 8%;
  position: relative;
}

.contact-left {
  background-color: #0a0a0a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/dj-background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.contact-left-content {
  position: relative;
  z-index: 1;
}

.contact-right {
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);  /* AZURIOSA Blue gradient */
  color: #ffffff;
}

.contact-left h2, .contact-right h3 {
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-left p {
  max-width: 475px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.toggle {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
}

.toggle h3 {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.toggle h3:hover {
  color: rgba(255, 255, 255, 0.8);
}

.toggle h3 i {
  margin-right: 10px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.toggle.active h3 i.fa-plus-circle {
  transform: rotate(135deg);
}

.toggle-content {
  padding: 0 0 10px 25px;
}

.toggle-content p {
  margin: 5px 0;
}

.toggle-content a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.toggle-content a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.toggle-content a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.toggle-content a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Contact Form Styles */
.contact-form {
  margin-top: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);  /* AZURIOSA Blue gradient */
  color: white;
  border: none;
  padding: 12px 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);  /* AZURIOSA reversed gradient */
}

/* ===== Biography Page Styles ===== */
.biography-container {
  padding: 80px 0;
  background-color: #000000;
}

.bio-wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.bio-image {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.bio-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.bio-image img:hover {
  transform: scale(1.02);
}

.bio-content {
  flex: 2;
  min-width: 300px;
}

.bio-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.bio-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);  /* AZURIOSA Blue gradient */
}

.bio-text {
  margin-bottom: 30px;
  line-height: 1.8;
}

.bio-text p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
}

.bio-text p strong {
  font-weight: 500;
  color: #1e3a8a;  /* AZURIOSA Blue */
}

.bio-quote {
  padding: 30px;
  margin: 40px 0;
  background-color: rgba(30, 58, 138, 0.1);
  border-left: 4px solid #1e3a8a;  /* AZURIOSA Blue */
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
}

.bio-timeline {
  margin: 60px 0;
}

.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 40px;
  border-left: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  border-left-color: #1e3a8a;  /* AZURIOSA Blue */
}

.timeline-item:hover .timeline-date {
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);  /* AZURIOSA reversed gradient */
}

.timeline-date {
  position: absolute;
  left: -15px;
  top: 0;
  background-color: #1e3a8a;  /* AZURIOSA Blue */
  color: #ffffff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.timeline-content {
  padding: 5px 0 0 20px;
}

.timeline-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.timeline-description {
  font-size: 16px;
  line-height: 1.6;
}

.future-section {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.future-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
}

/* ===== Store Page Styles ===== */
.store-container {
  padding: 80px 0;
  text-align: center;
}

.coming-soon {
  margin: 40px auto;
  max-width: 800px;
  padding: 40px;
  background-color: rgba(10, 10, 10, 0.7);
  border-radius: 8px;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.coming-soon h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.coming-soon p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
  animation-delay: 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.preview-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #0a0a0a;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.preview-item:hover {
  transform: translateY(-10px);
}

.preview-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.preview-item:hover .preview-image img {
  opacity: 0.9;
}

.preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transition: all 0.3s ease;
}

.preview-item:hover .preview-overlay {
  background: linear-gradient(to top, rgba(30, 58, 138, 0.7), transparent);
}

.preview-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.preview-price {
  font-size: 18px;
  color: #3b82f6;  /* AZURIOSA bright blue */
  font-weight: 700;
  transition: color 0.3s ease;
}

.preview-item:hover .preview-title,
.preview-item:hover .preview-price {
  color: #ffffff;
}

.coming-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);  /* AZURIOSA Blue gradient */
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Privacy, Terms & Conditions Page Styles */
.privacy-container, 
.terms-container {
  padding: 60px 0;
  background-color: #000000;
}

.privacy-wrapper,
.terms-wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-content,
.terms-content {
  background-color: #0a0a0a;
  border-radius: 5px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.privacy-content h2,
.terms-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1e3a8a;  /* AZURIOSA Blue */
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #1e3a8a;  /* AZURIOSA Blue */
  padding-bottom: 10px;
}

.privacy-content h3,
.terms-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #3b82f6;  /* AZURIOSA bright blue */
}

.privacy-content p, .privacy-content ul, .privacy-content ol,
.terms-content p, .terms-content ul, .terms-content ol {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 300;
}

.privacy-content ul, .privacy-content ol,
.terms-content ul, .terms-content ol {
  margin-left: 20px;
}

.privacy-content ul li, .privacy-content ol li,
.terms-content ul li, .terms-content ol li {
  margin-bottom: 10px;
}

.privacy-content a,
.terms-content a {
  color: #3b82f6;  /* AZURIOSA bright blue */
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy-content a:hover,
.terms-content a:hover {
  text-decoration: underline;
  color: #1e3a8a;  /* AZURIOSA Blue */
}

/* ===== Unsubscribe Page Styles ===== */
.unsubscribe-container {
  max-width: 600px;
  margin: 150px auto 50px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  text-align: center;
  animation: fadeIn 1s ease;
}

.unsubscribe-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
}

.unsubscribe-message {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.success {
  color: #4CAF50;
}

.error {
  color: #1e3a8a;  /* AZURIOSA Blue */
}

.back-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);  /* AZURIOSA Blue gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);  /* AZURIOSA reversed gradient */
  transform: translateY(-3px);
}

/* ===== Media Queries ===== */
@media screen and (max-width: 992px) {
  .box-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #footer-outer .container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links, .copyright, .footer-social {
    margin: 10px 0;
  }
  
  .footer-links ul, .footer-social ul {
    justify-content: center;
  }
  
  .bio-wrapper {
    flex-direction: column;
  }
  
  .bio-image {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  #main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    z-index: 1001;
  }
  
  #main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  #main-nav ul li {
    margin: 8px 0;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .social-icons {
    justify-content: flex-end;
  }
  
  .quote-container {
    padding-right: 0 !important;
    align-items: center !important;
  }
  
  .quote-container p {
    font-size: 24px;
    text-align: center !important;
  }
  
  /* Ensure the hero background shows on mobile */
  #hero {
    background-attachment: scroll; /* Change to scroll for mobile */
    background-position: right center !important; /* Position the right edge of image for mobile */
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    padding-right: 0;
    margin-bottom: 15px;
  }
  
  .footer-newsletter .newsletter-form {
    flex-direction: column;
  }
  
  .footer-newsletter .newsletter-form input[type="email"] {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .footer-newsletter .newsletter-form button {
    border-radius: 4px;
    width: 100%;
  }
  
  #page-header-bg h1 {
    margin-left: 5%;
    font-size: 36px;
  }
  
  .bio-title {
    font-size: 28px;
  }
  
  .bio-quote {
    font-size: 18px;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .music-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .section-header {
    padding-left: 5%;
  }
  
  .preview-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-content,
  .terms-content {
    padding: 25px;
  }
  
  .privacy-content h2,
  .terms-content h2 {
    font-size: 24px;
  }
  
  .privacy-content h3,
  .terms-content h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 576px) {
  .box-row {
    grid-template-columns: 1fr;
  }
  
  .footer-links ul {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links ul li {
    margin: 5px 0;
  }
  
  .quote-container p {
    font-size: 20px;
  }
  
  /* Additional mobile fixes */
  #hero {
    height: 100vh;
    min-height: 500px; /* Ensure minimum height */
  }
  
  .logo-main {
    transform: translateX(-20px);  /* Move logo container to the left on mobile */
  }
  
  .logo-main img {
    height: 140px; /* Increased from 90px to 140px for mobile */
  }
  
  .coming-soon {
    padding: 30px 20px;
    margin: 30px 20px;
  }
  
  .coming-soon h2 {
    font-size: 28px;
  }
  
  .coming-soon p {
    font-size: 16px;
  }
}