/* Base Styles */
/* famousmain */


.friends-pistols-section {
height: calc(100vh - [fixed header height]px);
  min-height: 400px; /* Set a minimum height to prevent it from becoming too small */
  width: 100vw;
  position: relative;
  overflow: hidden;
  padding-top: 0; /* Remove top padding */
 margin-top: 0; /* Add this to remove any top margin */
}

.friends-pistols-image-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.friends-pistols-title {
  color: white;
  font-size: 4.5rem;
  margin: 0;
  padding-top: 5vh;
  position: relative;
  z-index: 2;
}

.friends-pistols-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: black;
  z-index: 0;
}

.friends-pistols-bg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 5vh;
opacity: 0.85 !important; /* Apply opacity directly to the image */
}



/* Gigs Section Full CSS Solution */

@font-face {
    font-family: 'Chinese Rocks';
    src: url('Fonts/chinese rocks rg.otf') format('opentype');
}

#gigs-lister-expose-normal {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    background-image: url('images/WEBP Images All/fwefgwefweg_edited.webp');
    background-size: cover;
    background-position: center;
    z-index: 3;
    padding: 100px 0 50px 0;
    box-sizing: border-box;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title Wrapper */
.gigs-title-wrapper {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 36px auto;
    position: relative;
    min-height: 120px;
}

/* Main Title */
.gigs-main-title {
    color: white;
    font-family: 'Chinese Rocks', sans-serif;
    font-size: 1.4em;
    text-align: center;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100vw;
    border-top: 5px dashed #ff0000;
    border-bottom: 5px dashed #ff0000;
    box-shadow: 
        0 0 10px rgba(255, 0, 0, 0.8), 
        0 0 20px rgba(0, 0, 255, 0.5);
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px #000, 0 0 5px #ff0000;
    padding: 14px 0;
    position: relative;
    z-index: 1;
}

/* Safety Pins - 2x larger */
.safety-pin {
    width: 120px;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s ease;
    object-fit: contain;
}
.left-pin {
    left: 6vw;
    transform: translateY(-50%) rotate(-33deg);
}
.right-pin {
    right: 6vw;
    transform: translateY(-50%) rotate(33deg);
}

@media (max-width: 900px) {
    .left-pin { left: 1vw; }
    .right-pin { right: 1vw; }
    .safety-pin { width: 70px; }
}
@media (max-width: 600px) {
    .gigs-main-title {
        font-size: 1em;
        padding: 8px 0;
    }
    .left-pin, .right-pin {
        width: 38px;
        left: 1vw;
        right: 1vw;
    }
    .gigs-title-wrapper { min-height: 60px; }
}

/* Widget Container */
.gigs-lister-widget {
    width: 90vw;
    max-width: 1200px;
    border: 12px solid white;
    border-radius: 14px;
    margin-top: 0;
    background: rgba(0,0,0,0.85);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.32);
    padding: 18px 1vw 12px 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Follow Button */
.gig-follow-cta {
    display: inline-block;
    font-family: 'Chinese Rocks', sans-serif;
    font-size: 22px;
    background: linear-gradient(90deg, #ff0000 0%, #222 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 28px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 12px rgba(255,0,0,0.15);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
}
.gig-follow-cta:hover {
    background: linear-gradient(90deg, #222 0%, #ff0000 100%);
    box-shadow: 0 4px 24px rgba(0,0,255,0.22);
    transform: scale(1.06);
}

/* Gig Event List */
.gig-event-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Gig Event Item (entire column is a link) */
.gig-event-list li {
    margin-bottom: 10px;
}
.gig-event-list li:last-child {
    margin-bottom: 0;
}
.gig-event {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border-radius: 7px;
    padding: 10px 16px 8px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
    transition: box-shadow 0.3s, background 0.3s, border-left 0.3s;
    border-left: 5px solid #ff0000;
    min-width: 0;
    text-decoration: none;
    outline: none;
}
.gig-event:visited {
    color: inherit;
}
.gig-event:hover, .gig-event:focus {
    background: rgba(255,255,255,0.09);
    box-shadow: 0 6px 20px rgba(255,0,0,0.09);
    border-left: 5px solid #0000ff;
    text-decoration: none;
}

/* Gig Event Date */
.gig-event-date {
    font-family: 'Chinese Rocks', sans-serif;
    font-size: 0.93em;
    color: #fff;
    margin-bottom: 1px;
    text-shadow: 1px 1px 4px #000;
    letter-spacing: 1px;
}

/* Gig Event Location */
.gig-event-location {
    font-size: 0.88em;
    color: #fff;
    margin-bottom: 4px;
    opacity: 0.8;
    text-shadow: 1px 1px 2px #000;
}

/* Gig Event Title - Alternating Colors */
.gig-event-title {
    font-family: 'Chinese Rocks', sans-serif;
    font-size: 1em;
    margin-bottom: 6px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px #000;
}
.gig-event-list li:nth-child(odd) .gig-event-title {
    color: #ff0000;
}
.gig-event-list li:nth-child(even) .gig-event-title {
    color: #0055ff;
}

/* Gig Event Actions */
.gig-event-actions {
    display: flex;
    gap: 10px;
}

/* Ticket Button */
.gig-event-ticket-cta {
    background-color: #ff0000;
    color: white;
    padding: 6px 14px;
    font-size: 12px;
    font-family: 'Chinese Rocks', sans-serif;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255,0,0,0.09);
    letter-spacing: 1.2px;
    cursor: pointer;
    display: inline-block;
}
.gig-event:hover .gig-event-ticket-cta,
.gig-event:focus .gig-event-ticket-cta {
    background-color: #0055ff;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,255,0.12);
    transform: translateY(-1px) scale(1.04);
}

@media (max-width: 900px) {
    .gigs-lister-widget {
        width: 98vw;
        max-width: 98vw;
        padding: 7px 1vw;
    }
}
@media (max-width: 600px) {
    .gigs-main-title {
        font-size: 0.8em;
        padding: 6px 0;
    }
    .left-pin, .right-pin {
        width: 60px;
        left: 1vw;
        right: 1vw;
    }
    .gigs-title-wrapper { min-height: 40px; }
    .gigs-lister-widget { padding: 3vw 0; }
    .gig-event { padding: 6px 6px 5px 8px; }
    .gig-event-title { font-size: 0.82em; }
    .gig-event-date, .gig-event-location { font-size: 0.76em; }
    .gig-event-ticket-cta { font-size: 10px; padding: 4px 7px; }
}

@font-face {
    font-family: 'MailartRubberstamp-Regular';
    src: url('Fonts/MailartRubberstamp-Regular.otf') format('opentype');
}

.gigs-additional-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.gigs-poster-column {
    width: calc(50% - 10px);
    padding: 15px;
    box-sizing: border-box;
}

.gigs-poster-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 5px solid white;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.gigs-poster-column a {
    display: block;
}

.gigs-poster-image:hover {
    transform: scale(1.05);
}

.gigs-right-column {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

.gigs-social-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px; /* Added rounded corners */
}

.gigs-social-column h3, 
.gigs-social-column p {
    color: white;
    font-family: 'Chinese Rocks', sans-serif; /* Ensure using Chinese Rocks for this text */
}

.gigs-social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between icons */
}

.social-links {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: white;
    padding: 3px;
    transition: transform 0.3s ease;
}

.social-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.ents24 {
    box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.6);
}


.more-gigs-link {
   font-size: 1.5em; 
   transition: all 0.3s ease; 
}

.more-gigs-link:hover {
   transform: scale(1.1); 
}

.more-gigs-image {
   position: absolute; 
   bottom: 35px; 
   right: calc(10px + 250px); 
   width: 60px; 
   height: 60px; 
   z-index: 10; 
   transition: transform 0.3s ease; 
}

.more-gigs-image img {
   width: 100%; 
   height: 100%; 
   object-fit: contain; 
}

.more-gigs-image:hover {
   transform: scale(1.2) rotate(5deg); 
}

/* Gig History Section */
.gig-history {
   width: 100%; /* Full width */
   background-color: rgba(0, 0, 0, 0.4); /* Background color */
   padding: 20px; /* Padding for content */
   font-size: 16px; /* Font size set to Arial */
   font-family: Arial, sans-serif; /* Font family set to Arial */
   max-height: 600px; /* Increased height to double previous size */
   overflow-y: auto; /* Scroll if content exceeds height */
   border-radius: 10px; /* Rounded corners for consistency */
}

.gig-history h3 {
    color: white; /* Title color */
    margin-bottom: 15px; /* Spacing below title */
    font-family: 'Chinese Rocks', sans-serif; /* Title font set to Chinese Rocks */
    font-size: 32px; /* Increased font size for the title */
}

.gig-history h4 {
   color:white; /* Subheading color */
   margin-bottom :10px; /* Spacing below subheading */
}

.gig-history p {
   color:white; /* Paragraph text color */
   margin :5px 0; /* Spacing between paragraphs */
}

/* Improved scrollbar styling for better aesthetics */
.gig-history::-webkit-scrollbar {
   width :10px; /* Width of scrollbar */
}

.gig-history::-webkit-scrollbar-track {
   background :rgba(255,255,255,0.1); /* Background of scrollbar track */
   border-radius :5px; /* Rounded corners for track */
}

.gig-history::-webkit-scrollbar-thumb {
   background :rgba(255,255,255,0.3); /* Color of scrollbar thumb */
   border-radius :5px; /* Rounded corners for thumb */
}

.gig-history::-webkit-scrollbar-thumb:hover {
   background :rgba(255,255,255,0.5); /* Hover state for thumb */
}

