/* Uncomment when you have the font files in the same directory as index.html
@font-face {
    font-family: 'steelfishregular';
    src: url('steelfish_rg-webfont.woff2') format('woff2'),
         url('steelfish_rg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*/

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Carousel Section */
.hero-section {
    position: relative;
    padding: 4rem 2rem 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-title {
    font-family: 'steelfishregular', 'Montserrat', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* Image Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(1.1);
}

/* Mobile Carousel */
.gallery-carousel {
    display: none;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
}

.gallery-carousel .gallery-item {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: fadeIn 1s ease-in-out;
}

.gallery-carousel .gallery-item.active {
    display: block;
}

.gallery-carousel .gallery-item:hover {
    transform: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.tab-button {
    font-family: 'steelfishregular', 'Montserrat', sans-serif;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: -1;
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.tab-button:hover::before {
    left: 0;
}

.tab-button.active {
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: slideIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Social Media Section */
.social-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

.social-card {
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid transparent;
    text-align: center;
    overflow: hidden;
    min-height: 200px;
    position: relative;
    width: 100%;
}

.social-card.facebook-card {
    max-width: 400px;
}

.social-card.instagram-card {
    max-width: 540px;
    min-height: 600px;
}

.social-card .fb-page {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.social-card .instagram-media {
    margin: 0 auto !important;
    max-width: 100% !important;
}

/* Custom Facebook Widget */
.fb-widget-custom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.fb-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.fb-profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid transparent;
    object-fit: cover;
}

.fb-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.fb-info p {
    font-size: 0.9rem;
    margin: 0;
}

.fb-like-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

.fb-visit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fb-visit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

/* Custom Instagram Widget */
.ig-widget-custom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.ig-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.ig-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.ig-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.ig-info p {
    font-size: 0.9rem;
    margin: 0;
}

.ig-post-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.ig-post-wrapper .instagram-media {
    margin: 0 auto !important;
    max-width: 100% !important;
}

.ig-visit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ig-visit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

/* Loading placeholder */
.social-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
}

.social-loading .spinner {
    border: 3px solid transparent;
    border-top: 3px solid transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.skeleton {
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Shows Section */
.shows-section {
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid transparent;
    margin: 2rem 0;
    overflow-x: auto;
    position: relative;
}

/* Scroll indicators */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
    animation: bounce 2s infinite;
}

.scroll-indicator.left {
    left: 10px;
}

.scroll-indicator.right {
    right: 10px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(5px);
    }
}

.shows-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
    min-width: 600px;
}

.shows-table thead th {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
}

.shows-table tbody tr {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.shows-table tbody tr:hover {
    transform: scale(1.02);
}

.shows-table td {
    padding: 1.5rem 1rem;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.shows-table tbody tr td:first-child {
    border-left: 1px solid transparent;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.shows-table tbody tr td:last-child {
    border-right: 1px solid transparent;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.venue-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.lineup {
    font-size: 0.9rem;
}

/* Booking Section */
.booking-section {
    text-align: center;
    margin: 4rem 0;
    padding: 4rem 2rem;
    border-radius: 12px;
    border: 1px solid transparent;
}

.booking-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-link {
    display: inline-block;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.booking-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

/* Client Logos */
.clients-section {
    margin: 4rem 0;
    padding: 2rem;
    border-radius: 12px;
}

.clients-section h4 {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.logo-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.logo-carousel::-webkit-scrollbar {
    display: none;
}

.logo-item {
    flex: 0 0 auto;
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5) contrast(0.8);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1.2) contrast(1);
    opacity: 0.8;
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 3rem;
}

.spinner {
    border: 3px solid transparent;
    border-top: 3px solid transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem 2rem;
    }

    .gallery-grid {
        display: none;
    }

    .gallery-carousel {
        display: block;
    }

    .nav-tabs {
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .shows-table {
        font-size: 0.85rem;
    }

    .shows-table td {
        padding: 1rem 0.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .social-card {
        padding: 1rem;
    }

    .social-card.facebook-card,
    .social-card.instagram-card {
        max-width: 100%;
    }

    .booking-section h3 {
        font-size: 1.8rem;
    }

    .booking-link {
        font-size: 1.1rem;
    }

    .scroll-indicator {
        display: flex;
    }
}

/* Fix overflow issues below 450px */
@media (max-width: 450px) {
    .container {
        padding: 0 1rem;
    }

    /* Facebook card fixes */
    .social-card.facebook-card {
        padding: 1rem;
        max-width: 100%;
    }

    .fb-widget-custom {
        padding: 0.5rem;
    }

    .fb-profile-pic {
        width: 60px;
        height: 60px;
    }

    .fb-info h3 {
        font-size: 1rem;
    }

    .fb-info p {
        font-size: 0.8rem;
    }

    .fb-visit-button {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    /* Instagram card fixes */
    .social-card.instagram-card {
        padding: 1rem;
        overflow: hidden;
    }

    .ig-widget-custom {
        padding: 0.5rem;
    }

    .ig-icon {
        width: 50px;
        height: 50px;
    }

    .ig-info h3 {
        font-size: 1rem;
    }

    .ig-info p {
        font-size: 0.8rem;
    }

    .ig-visit-button {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .ig-post-wrapper .instagram-media {
        min-width: 100% !important;
        width: 100% !important;
    }

    /* Shows section fixes */
    .shows-section {
        padding: 1rem 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .shows-table {
        min-width: 500px;
        font-size: 0.75rem;
    }

    .shows-table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }

    .shows-table td {
        padding: 0.75rem 0.5rem;
    }

    .venue-name {
        font-size: 0.85rem;
    }

    .lineup {
        font-size: 0.75rem;
    }

    /* Tab buttons more compact */
    .tab-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    /* Booking section adjustments */
    .booking-section {
        padding: 2rem 1rem;
    }

    .booking-link {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
        word-break: break-all;
    }
}
