/* FLINTA PAGE STYLES */
/* Color Palette:
   #bc89ff - Light Pink/Purple (backgrounds, main content area)
   #ffffff - White (primary accent, highlights, text on dark)
   #392a49 - Dark Purple (text, borders)
   #2a1c36 - Darker Purple (outer backgrounds, shadows)
   #00DE82 - Green (animations, highlights, special accents)
*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
body {
    margin: 0;
    padding: 0;
    font-family: 'Verdana','Trebuchet MS','Courier New';
    font-size: medium;
    color:#392a49;
    font-size: 1em;
  }
 
  h1, h2 {
    color: #392a49;
    margin-bottom: 8px;
    margin-top: 15px;
    text-align: center;
    font-size: 1.3em;
  }
  
 
  .smallInfoText {
    font-style: normal;
    font-size: 0.8em;
    text-align: center;
    color:#392a49;
    margin: 5px 5px 10px 5px;
  }

  .heroText {
    font-size: 1em;
    line-height: 1.5;
    text-align: center;
  }

/* Logo styles */
#logo{
  height: 210px;
  width: 210px;
  margin: 1px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

#logo-container{
  text-align: center;
  width: 100%;
  position: relative;
}

/* Animated ring around logo */
#logo-container::before{
  content: "";
  position: absolute;
  margin-top: -3px;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background-color: #00DE82;
  animation: circleFillFlinta 2.5s linear infinite;
}

/* Animated color cycle for logo ring */
@keyframes circleFillFlinta{
  0%   { background-color: #00DE82; } /* Green */
  33%  { background-color: #ffffff; } /* White */
  66%  { background-color: #2a1c36; } /* Dark Purple */
  100% { background-color: #00DE82; }
}

/* FLINTA Corner Banner */
.flinta-corner-banner {
  position: absolute;
  top: 30px;
  left: -40px;
  width: 200px;
  background: linear-gradient(135deg, #ffffff 0%, #00DE82 100%);
  color: #392a49;
  padding: 8px 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85em;
  text-align: center;
  transform: rotate(-45deg);
  transform-origin: center center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  border: 2px solid #392a49;
  transition: all 0.3s ease;
  -webkit-text-stroke: 0.5px #392a49;
  overflow: hidden;
  display: block;
}

.flinta-corner-banner:hover {
  background: linear-gradient(135deg, #00DE82 0%, #ffffff 100%);
  transform: rotate(-45deg) scale(1.05);
  transform-origin: center center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.flinta-corner-banner marquee {
  margin: 0;
  padding: 0;
  display: block;
  white-space: nowrap;
}

  /* Main container to hold the central column */
#main-container {
    display: flex;
    justify-content: center;  
    padding: 0px 0px 20px 0px;
    min-height: 100vh;
    background-color: #2a1c36;
    background-image: url('bg.png');
    background-repeat: repeat;
    box-shadow: 5px 5px 0 #ffffff, 8px 8px 0 #ffffff;
    position: relative;
  }
  
  /* The central column */
  #central-column {
    background-color: #bc89ff;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    border: 2px solid #392a49;
    border-left: 2px solid #00DE82;
    box-shadow: 3px 3px 0 #ffffff, 5px 5px 0 #00DE82, 8px 8px 0 #2a1c36;
    position: relative;
    overflow: hidden;
  }
  

 /* General heading style with white text and dark outline */
.retro-heading {
    font-weight:600;
    font-size: 2.3em;
    line-height: 1.2;
    text-align: center;
    color: #ffffff;
    margin: 20px 20px 10px 20px;
    -webkit-text-stroke: 1px #392a49;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

/* Individual span elements */
.retro-heading span {
    display: inline-block;
    margin: 0 5px;
    white-space: nowrap;
}

.breakable-text {
  white-space: normal;
  word-break: break-word;
}

  /* Animated shadows cycling through FLINTA colors */
  .shadow-orange {
    animation: shadowGreenCycle 2.5s infinite ease-in-out;
  }
  
  .shadow-magenta {
    animation: shadowPurpleCycle 2.5s infinite ease-in-out;
  }
  
  .shadow-blue {
    animation: shadowLightPurpleCycle 2.5s infinite ease-in-out;
  }
  
  .shadow-purple {
    animation: shadowDarkPurpleCycle 2.5s infinite ease-in-out;
  }
  
  /* Keyframes for green animation */
  @keyframes shadowGreenCycle {
    0% {
      text-shadow: 
        2px 2px 0 #00DE82,
        4px 4px 0 #00DE82;
    }
    33% {
      text-shadow: 
        2px 2px 0 #bc89ff,
        4px 4px 0 #bc89ff;
    }
    66% {
      text-shadow: 
        2px 2px 0 #2a1c36,
        4px 4px 0 #2a1c36;
    }
    100% {
      text-shadow: 
        2px 2px 0 #00DE82,
        4px 4px 0 #00DE82;
    }
  }
  
  @keyframes shadowPurpleCycle {
    0% {
      text-shadow: 
        2px 2px 0 #ffffff,
        4px 4px 0 #ffffff;
    }
    33% {
      text-shadow: 
        2px 2px 0 #2a1c36,
        4px 4px 0 #2a1c36;
    }
    66% {
      text-shadow: 
        2px 2px 0 #00DE82,
        4px 4px 0 #00DE82;
    }
    100% {
      text-shadow: 
        2px 2px 0 #ffffff,
        4px 4px 0 #ffffff;
    }
  }
  
  @keyframes shadowLightPurpleCycle {
    0% {
      text-shadow: 
        2px 2px 0 #2a1c36,
        4px 4px 0 #2a1c36;
    }
    33% {
      text-shadow: 
        2px 2px 0 #00DE82,
        4px 4px 0 #00DE82;
    }
    66% {
      text-shadow: 
        2px 2px 0 #ffffff,
        4px 4px 0 #ffffff;
    }
    100% {
      text-shadow: 
        2px 2px 0 #2a1c36,
        4px 4px 0 #2a1c36;
    }
  }
  
  @keyframes shadowDarkPurpleCycle {
    0% {
      text-shadow: 
        2px 2px 0 #392a49,
        4px 4px 0 #392a49;
    }
    33% {
      text-shadow: 
        2px 2px 0 #00DE82,
        4px 4px 0 #00DE82;
    }
    66% {
      text-shadow: 
        2px 2px 0 #ffffff,
        4px 4px 0 #ffffff;
    }
    100% {
      text-shadow: 
        2px 2px 0 #392a49,
        4px 4px 0 #392a49;
    }
  }
  
  
  
  section {
    margin-bottom: 30px;
  }
  
  ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  ul li {
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    color: #392a49;
    font-size: 0.8em;
    margin: 5px;
  }
  
  
  /* Keyframes for the animated drop shadow on buttons */
  @keyframes buttonShadowAnimationFlinta {
    0% {
      box-shadow: 5px 5px 0 #00DE82,
                  8px 8px 0 #00DE82;
    }
    33% {
      box-shadow: 5px 5px 0 #ffffff,
                  8px 8px 0 #ffffff;
    }
    66% {
      box-shadow: 5px 5px 0 #2a1c36,
                  8px 8px 0 #2a1c36;
    }
    100% {
      box-shadow: 5px 5px 0 #00DE82,
                  8px 8px 0 #00DE82;
    }
  }

  
/* Container to center the button */
#whatsapp-button-container {
    text-align: center;
    margin: 15px 0px 20px 0px;
    }
  
  /* WhatsApp button */
  #whatsapp-button {
    background-color: #392a49;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2em;
    padding: 16px 5px 26px 5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    box-shadow: 5px 5px 0 #00DE82;
    animation: buttonShadowAnimationFlinta 2.5s infinite ease-in-out;
  }
  
  /* WhatsApp icon container (the green circle) */
  .whatsapp-icon {
    background-color: #00DE82;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  a {
    color:#00DE82;
    text-decoration: underline;
  }

  /* WhatsApp icon image */
  .whatsapp-icon img {
    width: 20px;
    height: 20px;
  }
  
  /* Hover effect */
  #whatsapp-button:hover {
    background-color: #ffffff;
    color: #392a49;
  }
  
  .whatsapp-text {
    margin-left: 10px;
  }

  /* HR dividers in FLINTA colors */
  hr.orange {
    border: 3px solid #00DE82;
    width: 100%;
    border-radius: 3px;
  }

  hr.blue {
    border: 3px solid #ffffff;
    width: 100%;
    border-radius: 3px;
  }

  hr.purple {
    border: 3px solid #2a1c36;
    width: 100%;
    border-radius: 3px;
  }

  hr.pink {
    border: 3px solid #392a49;
    width: 100%;
    border-radius: 3px;
  }

/* Instagram button styles */
.instagram-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  z-index: 9999;
  background-color: #392a49;
  border-radius: 50%;
  box-shadow: 2px 2px 10px #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instagram-btn img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* Hover effect */
.instagram-btn:hover {
  background-color: #00DE82;
  box-shadow: 4px 4px 12px rgba(0, 222, 130, 0.5);
}

  /* Media query for mobile screens */
  @media (max-width: 768px) {
    #main-container {
      padding: 0 10px;
    }
  
    #central-column {
      max-width: 100%;
      margin: 0 auto;
    }
  }
  
#thumbnail-container {
    text-align: center;
    margin-top: 20px;
}

#thumbnail-container .gallery-thumbnail {
    display: inline-block;
    margin: 2px;
    cursor: pointer;
}
  
#event-list-container {
  margin: 0px 0px 15px 0px;
  text-align: center;
}

#event-details {
  margin: 0px 0px 5px 0px;
  text-align: center;
}
 
#event-list-container a {
  display: inline-block;
  padding: 3px 10px;
  background-color: #ffffff;
  color: #392a49;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.1s ease-in-out;
}

/* Hover effect */
#event-list-container a:hover {
  background-color: #00DE82;
}

/* Crew Section Styles */
#crew-section {
  margin: 30px 0;
  text-align: center;
}

.crew-members-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.crew-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  text-align: center;
}

.crew-member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  border: 4px solid transparent;
  background: linear-gradient(#bc89ff, #bc89ff) padding-box,
              linear-gradient(45deg, #00DE82, #ffffff, #2a1c36, #392a49) border-box;
  animation: borderColorCycleFlinta 2.5s infinite ease-in-out;
}

@keyframes borderColorCycleFlinta {
  0% {
    background: linear-gradient(#bc89ff, #bc89ff) padding-box,
                linear-gradient(45deg, #00DE82, #ffffff, #2a1c36, #392a49) border-box;
  }
  33% {
    background: linear-gradient(#bc89ff, #bc89ff) padding-box,
                linear-gradient(45deg, #ffffff, #2a1c36, #392a49, #00DE82) border-box;
  }
  66% {
    background: linear-gradient(#bc89ff, #bc89ff) padding-box,
                linear-gradient(45deg, #2a1c36, #392a49, #00DE82, #ffffff) border-box;
  }
  100% {
    background: linear-gradient(#bc89ff, #bc89ff) padding-box,
                linear-gradient(45deg, #00DE82, #ffffff, #2a1c36, #392a49) border-box;
  }
}

.crew-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crew-member-name {
  font-size: 1.2em;
  font-weight: bold;
  color: #392a49;
  margin: 10px 0;
}

.crew-member-socials {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.crew-member-socials .social-link {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 7px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.crew-member-socials .social-link:hover {
  background-color: #00DE82;
  transform: scale(1.1);
}

.crew-member-socials .social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
}
