/* ============================================= */
/* ============== GLOBAL STYLES =============== */
/* ============================================= */

:root {
  --primary: #ffffff;
  --secondary: #cccccc;
  --dark: #000000;
  --dark-gray: #111111;
  --medium-gray: #333333;
  --light-gray: #aaaaaa;
  --transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: var(--primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--dark);
  padding: 15px 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--dark);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--dark);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--light-gray));
}

/* ============================================= */
/* =============== HEADER STYLES ============== */
/* ============================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

header.scrolled {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

.logo-main {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--primary) 0%, var(--light-gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 3px;
  margin-top: 0.3rem;
  color: var(--light-gray);
  font-weight: 400;
  transition: var(--transition);
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-link {
  margin-left: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, var(--primary), var(--light-gray));
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::before {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
}

/* ============================================= */
/* =============== HERO STYLES ================ */
/* ============================================= */

.hero {
  height: 100vh;
  min-height: 800px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomInOut 20s infinite alternate;
}

.hero-text {
  text-align: center;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 5px 15px rgba(0,0,0,0.5);
  background: linear-gradient(to right, var(--primary) 0%, var(--light-gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

.hero-meta {
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-date, .hero-time {
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.btn-hero {
  padding: 1.2rem 3rem;
  font-size: 1rem;
  letter-spacing: 3px;
  border-radius: 0;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-hero i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-hero:hover i {
  transform: translateX(5px);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

/* ============================================= */
/* ============== ABOUT SECTION =============== */
/* ============================================= */

.about-section {
  padding: 100px 0;
  background-color: var(--dark-gray);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('media/texture.png') repeat;
  opacity: 0.05;
  pointer-events: none;
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--light-gray));
}

.about-text p {
  margin-bottom: 20px;
  color: var(--secondary);
  line-height: 1.8;
}

.about-image {
  flex: 1;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ============================================= */
/* ============= EVENT SECTION ================ */
/* ============================================= */

.event-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.event-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('media/dots.png') repeat;
  opacity: 0.03;
  pointer-events: none;
}

.event-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.flyer-container {
  flex: 1;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  transition: var(--transition);
  position: relative;
}

.flyer-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}

.flyer-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.event-details {
  flex: 1;
}

.event-details h3 {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.event-details h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--light-gray));
}

.lineup {
  list-style: none;
  margin-bottom: 30px;
}

.lineup li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
  color: var(--secondary);
}

.lineup li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.event-info p {
  margin-bottom: 15px;
  color: var(--secondary);
  line-height: 1.8;
}

/* ============================================= */
/* ============ TICKETS SECTION =============== */
/* ============================================= */

:root {
  --dark: #121212;
  --dark-gray: #1a1a1a;
  --medium-gray: #333;
  --light-gray: #aaa;
  --primary: #ff5500;
  --gold: #ffd700;
  --silver: #c0c0c0;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: white;
}

.tickets-section {
  padding: 80px 20px;
  background-color: var(--dark-gray);
  position: relative;
}

.tickets-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--medium-gray), transparent);
}

.ticket-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.ticket-card {
  background-color: var(--dark);
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--light-gray));
}

.ticket-card.vip.gold::before {
  background: linear-gradient(to right, var(--gold), #ffea8a);
}

.ticket-card.vip.silver::before {
  background: linear-gradient(to right, var(--silver), #e0e0e0);
}

.ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.ticket-card.vip.gold:hover {
  border-color: var(--gold);
}

.ticket-card.vip.silver:hover {
  border-color: var(--silver);
}

.ticket-card h3 {
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  position: relative;
  display: inline-block;
}

.price::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--light-gray));
}

.vip.gold .price::after {
  background: linear-gradient(to right, var(--gold), #ffea8a);
}

.vip.silver .price::after {
  background: linear-gradient(to right, var(--silver), #e0e0e0);
}

.fee {
  font-size: 0.9rem;
  color: var(--light-gray);
  display: block;
  margin-top: 5px;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: auto;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #ff3d00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 85, 0, 0.3);
}

.vip.gold .btn {
  background-color: var(--gold);
  color: #333;
}

.vip.gold .btn:hover {
  background-color: #ffcc00;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.vip.silver .btn {
  background-color: var(--silver);
  color: #333;
}

.vip.silver .btn:hover {
  background-color: #b0b0b0;
  box-shadow: 0 5px 15px rgba(192, 192, 192, 0.3);
}

@media (max-width: 768px) {
  .ticket-options {
    grid-template-columns: 1fr;
  }
}
/* ============================================= */
/* =========== LOCATION SECTION =============== */
/* ============================================= */

.location-section {
  padding: 100px 0;
  position: relative;
}

.location-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.venue-info {
  flex: 1;
}

.venue-info h3 {
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.venue-info h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--light-gray));
}

.venue-info p {
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: 1.1rem;
}

.map-container {
  flex: 1;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
  z-index: 1;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================= */
/* =============== FOOTER STYLES ============== */
/* ============================================= */

footer {
  padding: 60px 0 30px;
  background-color: var(--dark);
  border-top: 1px solid var(--medium-gray);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.social-links a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 5px;
}

.social-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.social-links a:hover::after {
  width: 100%;
}

.copyright {
  text-align: center;
  color: var(--light-gray);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ============================================= */
/* ============== ANIMATIONS ================== */
/* ============================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* ============================================= */
/* ============ RESPONSIVE STYLES ============= */
/* ============================================= */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .about-content,
  .event-content,
  .location-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
  }

  .nav-list.active {
    right: 0;
  }

  .nav-link {
    margin: 1.5rem 0;
    font-size: 1.2rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 3rem;
    letter-spacing: 5px;
  }

  .hero-date, .hero-time {
    font-size: 1.1rem;
  }

  .about-content,
  .event-content,
  .location-content {
    flex-direction: column;
  }

  .about-image,
  .flyer-container,
  .event-details,
  .venue-info,
  .map-container {
    width: 100%;
  }

  .map-container {
    height: 300px;
    margin-top: 30px;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }

  .logo-main {
    font-size: 1.5rem;
  }

  .logo-sub {
    font-size: 0.6rem;
  }

  .btn-hero {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .ticket-options {
    flex-direction: column;
    align-items: center;
  }

  .ticket-card {
    max-width: 100%;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}/* ============================================= */
/* ============= SERVICES SECTION ============== */
/* ============================================= */

.services-section {
  padding: 100px 0;
  background-color: var(--dark-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--dark);
  padding: 40px 30px;
  border: 1px solid var(--medium-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card.featured {
  border: 1px solid var(--primary);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-features li {
  margin-bottom: 10px;
  color: var(--secondary);
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

/* ============================================= */
/* ============ PORTFOLIO SECTION ============== */
/* ============================================= */

.portfolio-section {
  padding: 100px 0;
  position: relative;
}

.portfolio-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.portfolio-audio h3, 
.portfolio-video h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.portfolio-audio h3::after,
.portfolio-video h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--light-gray));
}

.audio-player {
  margin-bottom: 30px;
}

.track-info {
  margin: 20px 0;
}

.track-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.track-info p {
  color: var(--light-gray);
  font-size: 0.9rem;
}

audio {
  width: 100%;
  margin: 10px 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================= */
/* =========== TESTIMONIALS SECTION ============ */
/* ============================================= */

.testimonials-section {
  padding: 100px 0;
  background-color: var(--dark-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background-color: var(--dark);
  padding: 30px;
  border: 1px solid var(--medium-gray);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(255,255,255,0.05);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--secondary);
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* ============================================= */
/* ============= CONTACT SECTION =============== */
/* ============================================= */

.contact-section {
  padding: 100px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--light-gray));
}

.contact-info p {
  margin-bottom: 30px;
  color: var(--secondary);
}

.contact-methods {
  list-style: none;
  margin-bottom: 30px;
}

.contact-methods li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-methods i {
  margin-right: 15px;
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-5px);
  color: var(--light-gray);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: transparent;
  border: 1px solid var(--medium-gray);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================= */
/* ============= FOOTER STYLES ================ */
/* ============================================= */

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo .logo-main {
  font-size: 1.5rem;
}

.footer-logo .logo-sub {
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background: var(--primary);
  transition: var(--transition);
}

.footer-links a:hover::after {
  width: 100%;
}

/* ============================================= */
/* ============ RESPONSIVE STYLES ============= */
/* ============================================= */

@media (max-width: 1024px) {
  .portfolio-content {
      gap: 30px;
  }
}

@media (max-width: 768px) {
  .portfolio-content,
  .contact-content {
      grid-template-columns: 1fr;
  }
  
  .portfolio-audio,
  .portfolio-video,
  .contact-info,
  .contact-form {
      width: 100%;
  }
  
  .portfolio-video {
      margin-top: 50px;
  }
  
  .footer-content {
      flex-direction: column;
      text-align: center;
  }
  
  .footer-links {
      margin-top: 30px;
      flex-wrap: wrap;
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
      grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
      grid-template-columns: 1fr;
  }
}