/* Global Styles */
:root {
  --primary-color: #8a2be2;
  --secondary-color: #ff1493;
  --dark-bg: #121212;
  --light-text: #ffffff;
  --gray-text: #aaaaaa;
  --section-padding: 80px 0;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--light-text);
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.text-center .section-title:after {
  left: 50%;
  transform: translateX(-50%);
}

.page-title {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed);
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--light-text);
}

.btn-secondary {
  background: transparent;
  color: var(--light-text);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  transition: all var(--transition-speed);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-right: 15px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.tagline {
  font-size: 0.8rem;
  color: var(--gray-text);
}

.desktop-nav {
  display: flex;
}

.nav-list {
  display: flex;
}

.nav-list li {
  margin-left: 30px;
}

.nav-list a {
  position: relative;
  font-weight: 500;
  padding: 5px 0;
}

.nav-list a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: width var(--transition-speed);
}

.nav-list a:hover:after,
.nav-list a.active:after {
  width: 100%;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--dark-bg);
  padding: 50px 30px;
  transition: right 0.3s ease;
  z-index: 1001;
}

.mobile-menu.active {
  right: 0;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-list li {
  margin-bottom: 20px;
}

.mobile-nav-list a {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero/main-hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(to right, rgba(138, 43, 226, 0.2), rgba(255, 20, 147, 0.2));
}

/* Services Section */
.services-section {
  padding: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  transition: transform var(--transition-speed);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-description {
  color: var(--gray-text);
}

/* Events Section */
.events-section {
  padding: var(--section-padding);
  background-color: rgba(255, 255, 255, 0.02);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.event-card {
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition-speed);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.event-date {
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  text-align: center;
}

.date-day {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.date-month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.date-year {
  font-size: 1rem;
}

.event-details {
  padding: 20px;
  flex-grow: 1;
}

.event-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.event-location {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.event-description {
  color: var(--gray-text);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.event-buttons {
  display: flex;
  gap: 10px;
}

/* Artists Section */
.artists-section {
  padding: var(--section-padding);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.artist-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition-speed);
}

.artist-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.artist-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.artist-info {
  padding: 20px;
}

.artist-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.artist-genre {
  color: var(--gray-text);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.artist-social {
  display: flex;
  gap: 15px;
}

.social-link {
  color: var(--gray-text);
  font-size: 1.2rem;
  transition: color var(--transition-speed);
}

.social-link:hover {
  color: var(--primary-color);
}

/* Portfolio Section */
.portfolio-section {
  padding: var(--section-padding);
  background-color: rgba(255, 255, 255, 0.02);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-button {
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--light-text);
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-weight: 600;
}

.filter-button:hover,
.filter-button.active {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.portfolio-category {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  min-width: 30px;
}

.contact-text {
  color: var(--gray-text);
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--light-text);
  font-family: inherit;
  transition: border-color var(--transition-speed);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background: linear-gradient(to right, rgba(138, 43, 226, 0.3), rgba(255, 20, 147, 0.3));
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--gray-text);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
.footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: var(--gray-text);
  transition: color var(--transition-speed);
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--gray-text);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: var(--gray-text);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.testimonial:before {
  content: '\201C';
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: 20px;
  color: rgba(138, 43, 226, 0.2);
  font-family: serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.author-name {
  font-weight: 600;
}

.author-title {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--gray-text);
  font-size: 1.1rem;
}

/* Artist Profile */
.artist-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-top: 50px;
}

.artist-image-container {
  border-radius: 10px;
  overflow: hidden;
}

.artist-profile-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.artist-bio {
  color: var(--gray-text);
}

.artist-music-section {
  padding: var(--section-padding);
  background-color: rgba(255, 255, 255, 0.02);
}

.music-player-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.music-player {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.player-visualization {
  display: flex;
  align-items: flex-end;
  height: 50px;
  gap: 5px;
}

.visualization-bar {
  width: 5px;
  background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
  height: 20px;
  border-radius: 2px;
  animation: visualize 1.5s infinite alternate;
}

.visualization-bar:nth-child(2) {
  animation-delay: 0.1s;
  height: 30px;
}

.visualization-bar:nth-child(3) {
  animation-delay: 0.2s;
  height: 15px;
}

.visualization-bar:nth-child(4) {
  animation-delay: 0.3s;
  height: 25px;
}

.visualization-bar:nth-child(5) {
  animation-delay: 0.4s;
  height: 35px;
}

.visualization-bar:nth-child(6) {
  animation-delay: 0.5s;
  height: 20px;
}

.visualization-bar:nth-child(7) {
  animation-delay: 0.6s;
  height: 30px;
}

.visualization-bar:nth-child(8) {
  animation-delay: 0.7s;
  height: 25px;
}

.visualization-bar:nth-child(9) {
  animation-delay: 0.8s;
  height: 15px;
}

.visualization-bar:nth-child(10) {
  animation-delay: 0.9s;
  height: 35px;
}

@keyframes visualize {
  0% {
    height: 10px;
  }
  100% {
    height: 40px;
  }
}

.player-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  color: var(--light-text);
  font-size: 1.2rem;
}

.track-info {
  display: flex;
  flex-direction: column;
}

.track-title {
  font-weight: 600;
}

.track-artist {
  color: var(--gray-text);
  font-size: 0.9rem;
}

.artist-events-section {
  padding: var(--section-padding);
}

.artist-gallery-section {
  padding: var(--section-padding);
  background-color: rgba(255, 255, 255, 0.02);
}

/* Event Details */
.event-hero-section {
  padding: var(--section-padding);
}

.event-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.event-image-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.event-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.event-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-text);
}

.event-description {
  color: var(--gray-text);
}

.event-lineup-section {
  padding: var(--section-padding);
  background-color: rgba(255, 255, 255, 0.02);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.event-details-section {
  padding: var(--section-padding);
}

.event-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.event-details-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.details-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.details-item p {
  color: var(--gray-text);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.map-container iframe {
  border: none;
}

.event-tickets-section {
  padding: var(--section-padding);
  background-color: rgba(255, 255, 255, 0.02);
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.ticket-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition-speed);
}

.ticket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ticket-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.ticket-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.ticket-header {
  background: linear-gradient(to right, rgba(138, 43, 226, 0.3), rgba(255, 20, 147, 0.3));
  padding: 20px;
  text-align: center;
}

.ticket-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.ticket-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.ticket-content {
  padding: 20px;
}

.ticket-features {
  margin-bottom: 20px;
}

.ticket-features li {
  margin-bottom: 10px;
  color: var(--gray-text);
  position: relative;
  padding-left: 25px;
}

.ticket-features li:before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.ticket-status {
  text-align: center;
  color: var(--gray-text);
  font-weight: 600;
  padding: 10px;
  border: 1px solid var(--gray-text);
  border-radius: 5px;
}

.ticket-note {
  text-align: center;
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-top: 20px;
}

.tickets-note {
  margin-top: 30px;
  color: var(--gray-text);
  font-size: 0.9rem;
}

.event-gallery-section {
  padding: var(--section-padding);
}

/* Portfolio Details */
.portfolio-hero-section {
  padding: var(--section-padding);
}

.portfolio-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.portfolio-image-container {
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.portfolio-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-text);
}

.portfolio-description {
  color: var(--gray-text);
}

.portfolio-services-section {
  padding: var(--section-padding);
  background-color: rgba(255, 255, 255, 0.02);
}

.portfolio-gallery-section {
  padding: var(--section-padding);
}

.portfolio-testimonial-section {
  padding: var(--section-padding);
  background-color: rgba(255, 255, 255, 0.02);
}

.portfolio-stats-section {
  padding: var(--section-padding);
}

.related-projects-section {
  padding: var(--section-padding);
  background-color: rgba(255, 255, 255, 0.02);
}

.related-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition-speed);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-image-container {
  height: 200px;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

.project-content {
  padding: 20px;
}

.project-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.project-description {
  color: var(--gray-text);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .artist-profile,
  .event-hero,
  .portfolio-hero,
  .event-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .page-title {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    padding: 10px;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .date-day {
    font-size: 1.8rem;
  }
  
  .date-month,
  .date-year {
    font-size: 0.9rem;
  }
}
