/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Content transition for dramatic entrance */
header,
main,
nav,
footer,
.imigongo-corner {
  transition: opacity 1.5s ease, transform 2s ease;
  transform-origin: center;
  will-change: opacity, transform;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
  position: relative;
}

/* Dramatic Entrance Animation */
.entrance-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  z-index: 9999;
  animation: backgroundFade 2.5s forwards ease-in-out;
  pointer-events: none;
  perspective: 1500px;
  overflow: hidden;
}

.zoom-text {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 15vh;
  font-weight: 700;
  color: transparent;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  letter-spacing: 10px;
  text-transform: uppercase;
  animation: zoomIn 2.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.zoom-text-echo {
  display: none; /* Simplified by removing echo */
}

.zoom-glow {
  position: absolute;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: 50%;
  animation: glowExpand 2s forwards ease-out;
}

@keyframes zoomInEcho {
  0% {
    font-size: 20vh;
    opacity: 0;
    transform: scale(0.2) translateZ(-400px);
  }
  20% {
    opacity: 0.3;
    font-size: 28vh;
  }
  40% {
    opacity: 0.5;
    font-size: 45vh;
    transform: scale(0.7) translateZ(-250px);
  }
  70% {
    opacity: 0.3;
    font-size: 75vh;
    transform: scale(1.2) translateZ(-50px);
  }
  100% {
    opacity: 0;
    font-size: 160vh;
    transform: scale(3.2) translateZ(600px);
  }
}

@keyframes glowExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }

  40% {
    width: 40vw;
    height: 40vw;
    opacity: 0.2;
  }

  80% {
    width: 100vw;
    height: 100vw;
    opacity: 0.3;
  }

  100% {
    width: 200vw;
    height: 200vw;
    opacity: 0;
  }
}

@keyframes zoomIn {
  0% {
    font-size: 15vh;
    opacity: 0.2;
    letter-spacing: 15px;
    transform: translateZ(-300px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
  }

  40% {
    opacity: 0.6;
    font-size: 25vh;
    letter-spacing: 10px;
    transform: translateZ(-100px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
  }

  70% {
    opacity: 0.9;
    font-size: 40vh;
    letter-spacing: 5px;
    transform: translateZ(100px);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  }

  90% {
    opacity: 0.7;
    font-size: 70vh;
    letter-spacing: 2px;
    transform: translateZ(300px);
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
  }

  100% {
    opacity: 0;
    font-size: 100vh;
    letter-spacing: 0px;
    transform: translateZ(500px);
    -webkit-text-stroke: 0px rgba(255, 255, 255, 0);
  }
}

@keyframes backgroundFade {
  0%,
  40% {
    background-color: #000;
  }

  70% {
    background-color: rgba(0, 0, 0, 0.9);
  }

  90% {
    background-color: rgba(0, 0, 0, 0.5);
  }

  100% {
    background-color: rgba(0, 0, 0, 0);
    visibility: hidden;
  }
}

/* Imigongo background patterns */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      45deg,
      rgba(139, 69, 19, 0.03) 25%,
      transparent 25%
    ),
    linear-gradient(-45deg, rgba(139, 69, 19, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(139, 69, 19, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(139, 69, 19, 0.03) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      rgba(210, 105, 30, 0.03) 2px,
      transparent 2px
    ),
    radial-gradient(rgba(210, 105, 30, 0.02) 2px, transparent 2px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  z-index: -1;
  pointer-events: none;
}

/* Imigongo corner decorations */
.imigongo-corner {
  position: fixed;
  width: 150px;
  height: 150px;
  z-index: 1;
  pointer-events: none;
}

.imigongo-corner--top-left {
  top: 0;
  left: 0;
  background: linear-gradient(
      135deg,
      #8b4513 0%,
      #8b4513 15%,
      transparent 15.1%
    ),
    repeating-linear-gradient(
      45deg,
      #8b4513,
      #8b4513 5px,
      #d2691e 5px,
      #d2691e 10px
    );
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.2;
}

.imigongo-corner--top-right {
  top: 0;
  right: 0;
  background: linear-gradient(
      225deg,
      #8b4513 0%,
      #8b4513 15%,
      transparent 15.1%
    ),
    repeating-linear-gradient(
      -45deg,
      #8b4513,
      #8b4513 5px,
      #d2691e 5px,
      #d2691e 10px
    );
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.2;
}

.imigongo-corner--bottom-left {
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #8b4513 0%, #8b4513 15%, transparent 15.1%),
    repeating-linear-gradient(
      135deg,
      #8b4513,
      #8b4513 5px,
      #d2691e 5px,
      #d2691e 10px
    );
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  opacity: 0.2;
}

.imigongo-corner--bottom-right {
  bottom: 0;
  right: 0;
  background: linear-gradient(
      -45deg,
      #8b4513 0%,
      #8b4513 15%,
      transparent 15.1%
    ),
    repeating-linear-gradient(
      -135deg,
      #8b4513,
      #8b4513 5px,
      #d2691e 5px,
      #d2691e 10px
    );
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Imigongo Divider */
.imigongo-divider {
  height: 40px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    #000 0px,
    #000 20px,
    #8b4513 20px,
    #8b4513 40px,
    #d2691e 40px,
    #d2691e 60px
  );
  position: relative;
  margin: 0;
  overflow: hidden;
}

.imigongo-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    45deg,
    #8b4513,
    #8b4513 10px,
    #d2691e 10px,
    #d2691e 20px
  );
  opacity: 0.7;
}

.imigongo-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    #8b4513,
    #8b4513 10px,
    #d2691e 10px,
    #d2691e 20px
  );
  opacity: 0.7;
}

/* Overlay for contrast on hero section */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

/* Navigation Styles */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
}

.nav-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  transition: opacity 0.3s ease;
}

.nav-logo a:hover {
  opacity: 0.8;
}

.nav-links ul {
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/ABOU7775.jpg');
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  animation: zoomEffect 15s infinite alternate;
  transform-origin: center center;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s forwards 0.5s;
}

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

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 8px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
  transform: skewX(-25deg);
}

.cta-button:hover {
  background-color: #fff;
  color: #000;
}

.cta-button:hover::before {
  transform: translateX(200%) skewX(-25deg);
}

/* Content Sections */
section {
  padding: 100px 0;
  position: relative;
}

section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-align: center;
}

/* Featured Section Styles */
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* Imigongo-inspired decorative element */
.featured-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: repeating-linear-gradient(
    45deg,
    #000,
    #000 10px,
    #8b4513 10px,
    #8b4513 20px,
    #d2691e 20px,
    #d2691e 30px
  );
  opacity: 0.6;
}

.featured-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: repeating-linear-gradient(
    -45deg,
    #000,
    #000 10px,
    #8b4513 10px,
    #8b4513 20px,
    #d2691e 20px,
    #d2691e 30px
  );
  opacity: 0.6;
}

.gallery-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.gallery-item.reverse {
  flex-direction: row-reverse;
}

.gallery-image {
  flex: 1;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
  position: relative;
  border: 10px solid #000;
}

/* Imigongo-inspired border pattern */
.gallery-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 5px,
      #8b4513 5px,
      #8b4513 10px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 5px,
      #8b4513 5px,
      #8b4513 10px
    );
  background-size: 10px 10px;
  z-index: -1;
  pointer-events: none;
}

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

.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.gallery-image:hover img {
  transform: scale(1.05);
}

.gallery-info {
  flex: 1;
  padding: 30px;
  position: relative;
}

/* Imigongo-inspired background pattern */
.gallery-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10px 10px,
      rgba(210, 105, 30, 0.2) 2px,
      transparent 0
    ),
    radial-gradient(
      circle at 25px 25px,
      rgba(210, 105, 30, 0.2) 2px,
      transparent 0
    );
  background-size: 30px 30px;
  z-index: -1;
  opacity: 0.5;
}

.gallery-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}

.gallery-info h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #8b4513,
    #8b4513 5px,
    #d2691e 5px,
    #d2691e 10px
  );
}

/* Imigongo-inspired section heading */
section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 30px 15px;
}

section h2::before,
section h2::after {
  content: '';
  position: absolute;
  height: 10px;
  width: 100px;
  background: repeating-linear-gradient(
    45deg,
    #8b4513,
    #8b4513 5px,
    #d2691e 5px,
    #d2691e 10px
  );
}

section h2::before {
  top: -20px;
  left: calc(50% - 50px);
}

section h2::after {
  bottom: 0;
  left: calc(50% - 50px);
}

.featured-section .container {
  text-align: center;
  position: relative;
}

/* Section divider styling */
.section-divider {
  margin: 20px 0;
}

/* Album specific styling */
.album-cover {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

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

.album-cover:hover .album-overlay {
  opacity: 1;
}

.album-play-btn {
  width: 60px;
  height: 60px;
  background: rgba(210, 105, 30, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.album-play-btn:hover {
  transform: scale(1);
  background: rgba(210, 105, 30, 1);
}

.album-play-btn span {
  font-size: 24px;
  color: #fff;
  margin-left: 5px; /* Offset for play icon */
}

.album-details {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.album-details span {
  position: relative;
}

.album-details span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -12px;
}

/* Art Gallery specific styling */
.art-gallery-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 1));
}

.gallery-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.7;
}

.gallery-meta span {
  position: relative;
}

.gallery-meta span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -12px;
}

.gallery-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.8;
}

.view-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.view-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    #8b4513,
    #8b4513 10px,
    #d2691e 10px,
    #d2691e 20px
  );
  z-index: -1;
  transition: transform 0.5s ease;
}

.view-button::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background-color: #000;
  z-index: -1;
  transition: all 0.3s ease;
}

.view-button:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Footer Styles */
footer {
  background-color: #0a0a0a;
  padding: 30px 0 15px; /* Reduced from 60px 0 30px (50% height) */
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* Reduced from 30px */
  position: relative;
}

/* Key Icons */
.key-decoration {
  position: absolute;
  color: rgba(212, 175, 55, 0.35); /* Gold color with transparency */
  font-size: 28px;
  z-index: 1;
  animation: float 8s infinite ease-in-out;
}

/* Music Icons */
.music-decoration {
  position: absolute;
  color: rgba(255, 255, 255, 0.2); /* White color with transparency */
  font-size: 28px;
  z-index: 1;
  animation: float 8s infinite ease-in-out;
}

.key-1 {
  top: 15px;
  left: 10%;
  font-size: 45px;
  animation-delay: 0s;
  transform: rotate(-15deg);
  --rotation: -15deg;
}

.key-2 {
  bottom: 25px;
  right: 15%;
  font-size: 40px;
  animation-delay: 1.5s;
  transform: rotate(10deg);
  --rotation: 10deg;
}

.key-3 {
  top: 30%;
  right: 10%;
  font-size: 38px;
  animation-delay: 0.7s;
  transform: rotate(-5deg);
  --rotation: -5deg;
}

.key-4 {
  top: 15px;
  right: 25%;
  font-size: 32px;
  animation-delay: 2s;
  transform: rotate(20deg);
  --rotation: 20deg;
}

.key-5 {
  bottom: 20px;
  left: 20%;
  font-size: 35px;
  animation-delay: 1s;
  transform: rotate(-10deg);
  --rotation: -10deg;
}

.key-6 {
  top: 40%;
  left: 15%;
  font-size: 42px;
  animation-delay: 0.3s;
  transform: rotate(15deg);
  --rotation: 15deg;
}

.treble-clef {
  top: 25%;
  left: 30%;
  font-size: 38px;
  animation-delay: 1.2s;
  transform: rotate(10deg);
  --rotation: 10deg;
}

.quarter-note {
  bottom: 40px;
  right: 30%;
  font-size: 32px;
  animation-delay: 0.5s;
  transform: rotate(-8deg);
  --rotation: -8deg;
}

.eighth-note {
  top: 35%;
  right: 20%;
  font-size: 36px;
  animation-delay: 1.8s;
  transform: rotate(12deg);
  --rotation: 12deg;
}

.drum-icon {
  bottom: 30%;
  left: 25%;
  font-size: 34px;
  animation-delay: 0.9s;
  transform: rotate(-5deg);
  --rotation: -5deg;
}

/* Services section in footer */
.footer-services {
  margin: 15px 0;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.footer-services h3 {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-services ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  list-style: none;
}

.footer-services li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-services li:before {
  content: '★';
  position: absolute;
  left: 0;
  color: #d4af37;
}

/* Contact section in footer */
.footer-contact {
  margin: 20px 0;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.footer-contact h3 {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.8);
  margin: 5px 10px;
}

.footer-contact i {
  color: #d4af37;
  margin-right: 5px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #d4af37;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotation, 0deg));
  }
  50% {
    transform: translateY(-5px) rotate(var(--rotation, 0deg)); /* Reduced from -10px */
  }
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; /* Reduced from 28px */
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.social-icons {
  display: flex;
  gap: 15px; /* Reduced from 20px */
  margin-bottom: 15px; /* Reduced from 30px */
}

.social-icon {
  display: inline-block;
  width: 30px; /* Reduced from 40px */
  height: 30px; /* Reduced from 40px */
  line-height: 30px; /* Reduced from 40px */
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 14px; /* Reduced from 18px */
}

.social-icon i {
  line-height: 30px; /* Reduced from 40px */
}

.social-icon:hover {
  background-color: #fff;
  color: #000;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px; /* Reduced from 20px */
  margin-bottom: 15px; /* Reduced from 30px */
}

.footer-links a {
  font-size: 12px; /* Reduced from 14px */
  opacity: 0.7;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  opacity: 1;
  color: #d4af37;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; /* Reduced from -4px */
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.copyright {
  font-size: 11px; /* Reduced from 12px */
  opacity: 0.6;
  text-align: center;
}

.footer-signature {
  font-size: 10px; /* Reduced from 11px */
  opacity: 0.5;
  text-align: center;
  margin-top: 8px; /* Reduced from 15px */
  font-style: italic;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 4rem;
  }

  /* Gallery responsive styles for tablets */
  .gallery-grid {
    gap: 80px;
  }

  .gallery-item {
    gap: 40px;
  }

  .gallery-info h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s ease;
    z-index: 99;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 100;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero-content h1 {
    font-size: 3rem;
    letter-spacing: 5px;
  }

  .hero-content p {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  section h2 {
    font-size: 2rem;
  }

  /* Adjust Imigongo patterns for mobile */
  .featured-section::before,
  .featured-section::after {
    height: 15px;
  }

  section h2::before,
  section h2::after {
    width: 80px;
  }

  section h2::before {
    left: calc(50% - 40px);
  }

  section h2::after {
    left: calc(50% - 40px);
  }

  .gallery-image::before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }

  .gallery-image {
    border-width: 5px;
  }

  /* Responsive Imigongo background elements */
  .imigongo-corner {
    width: 100px;
    height: 100px;
  }

  .imigongo-divider {
    height: 30px;
  }

  .imigongo-divider::before,
  .imigongo-divider::after {
    height: 8px;
  }

  /* Gallery responsive styles */
  .gallery-item {
    flex-direction: column;
    gap: 30px;
  }

  .gallery-item.reverse {
    flex-direction: column;
  }

  .gallery-info h3 {
    font-size: 1.8rem;
  }

  .gallery-info p {
    font-size: 1rem;
  }

  /* Album and Art Gallery responsive styles */
  .album-play-btn {
    width: 50px;
    height: 50px;
  }

  .album-play-btn span {
    font-size: 20px;
  }

  .album-details,
  .gallery-meta {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .album-details span:not(:last-child)::after,
  .gallery-meta span:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .cta-button {
    padding: 10px 25px;
    font-size: 12px;
  }

  /* Mobile Imigongo patterns */
  .imigongo-corner {
    width: 70px;
    height: 70px;
  }

  .imigongo-divider {
    height: 20px;
  }

  .imigongo-divider::before,
  .imigongo-divider::after {
    height: 5px;
  }

  /* Album and Art Gallery mobile styles */
  .album-play-btn {
    width: 40px;
    height: 40px;
  }
  .album-play-btn span {
    font-size: 16px;
    margin-left: 3px;
  }

  .album-details,
  .gallery-meta {
    font-size: 0.8rem;
    gap: 10px;
  }

  .section-divider {
    margin: 10px 0;
  }

  .footer-links ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  } /* Small mobile gallery styles */
  .gallery-grid {
    gap: 60px;
  }

  .gallery-info h3 {
    font-size: 1.5rem;
  }

  .gallery-info p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .view-button {
    padding: 8px 20px;
    font-size: 12px;
  }
}

/* WhatsApp Floating Chat Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-icon {
  font-size: 32px;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-icon {
    font-size: 26px;
  }
}

/* Disabled link styling */
.disabled-link {
  color: #888;
  cursor: not-allowed;
  text-decoration: none;
  opacity: 0.7;
  position: relative;
}

.disabled-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background-color: #888;
  opacity: 0.5;
}
