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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    overflow-x: hidden;
    width: 100%;
    min-width: 100%;
}

/* Header Navigation */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9), rgba(220, 20, 60, 0.9));
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 0;
}

.header-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 90px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    margin-top: -20px;
    margin-bottom: -20px;
}

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

.header-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-right: -1rem;
}

.header-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-nav a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-separator {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Landing Section */
.hero-landing {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 10rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    max-width: 1200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #8b0000;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #8b0000, #dc143c);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, #dc143c, #ff4500);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #8b0000;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.section-header {
    background: linear-gradient(135deg, #8b0000, #dc143c);
    padding: 1rem 2rem;
    text-align: center;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-content {
    padding: 4rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 100%;
    padding: 0 2rem;
    word-wrap: break-word;
}

.bio-energy, .bio-groove {
    margin-bottom: 1.5rem;
    color: #555;
}

.bio-cta {
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b0000;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legend {
    color: #8b0000;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #ffd700;
    text-underline-offset: 3px;
}

.band-photo {
    display: flex;
    justify-content: flex-end;
}

.band-photo-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    margin-left: auto;
}

.band-photo-img:hover {
    transform: scale(1.02);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item-hidden {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

.gallery-controls {
    text-align: center;
    margin-top: 2rem;
}

.show-more-btn {
    background: linear-gradient(135deg, #8b0000, #dc143c);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, #dc143c, #ff4500);
}

.show-more-btn.hidden {
    display: none;
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    background: #000;
    width: 100%;
    aspect-ratio: 16/9;
}

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

.video-player {
    width: 100%;
    height: auto;
    border: none;
    border-radius: 15px;
    display: block;
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 15px;
    display: block;
}

/* YouTube Shorts (portrait videos) */
.video-item iframe[src*="shorts"] {
    height: 300px;
}

/* Fix video thumbnail width issues when hosting */
.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    display: block;
}

/* Socials Section */
.socials-content {
    text-align: center;
}

.socials-header {
    margin-bottom: 2rem;
}

.socials-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.instagram-follow-link {
    display: inline-block;
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.instagram-follow-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #C13584, #833AB4);
}

.instagram-feed-section {
    margin: 3rem 0;
}

.instagram-feed-section h3 {
    color: #8b0000;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.elfsight-instagram-feed {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 1rem;
}

/* ElfSight Instagram widget styling is handled by the widget itself */

.other-socials {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.other-socials h3 {
    color: #8b0000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.facebook-link {
    display: inline-block;
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    background: linear-gradient(135deg, #42A5F5, #29B6F6);
}

/* Gigs Section */
.gigs-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gig-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 5px solid #8b0000;
}

.gig-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gig-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b0000, #dc143c);
    color: white;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.date-day {
    font-size: 2rem;
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gig-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8b0000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gig-details p {
    color: #666;
    font-size: 1.1rem;
}

/* Band Members Section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.member-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-top: 4px solid #8b0000;
}

.member-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.member-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8b0000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-content {
    text-align: center;
}

.contact-cta {
    font-size: 1.4rem;
    color: #8b0000;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #e9ecef;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 350px;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-link:hover {
    background: linear-gradient(135deg, #8b0000, #dc143c);
    border-color: #8b0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.contact-link .icon {
    font-size: 1.3rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ffd700;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
    margin: 0 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(139, 0, 0, 0.8);
    transform: scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #8b0000, #dc143c);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Responsive Design */
@media (max-width: 768px) and (orientation: portrait) {
    .header-nav {
        padding: 0.8rem 0;
        overflow: visible;
    }
    
    .header-nav-content {
        gap: 1rem;
        padding: 0 1rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
        min-height: 60px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .header-nav-content::-webkit-scrollbar {
        display: none;
    }
    
    .header-logo {
        flex-shrink: 0;
        margin-right: 1.5rem;
    }
    
    .header-logo-img {
        height: 50px;
        margin: 0;
        max-width: 120px;
    }
    
    .header-links {
        gap: 1.5rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    
    .header-nav a {
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .hero-landing {
        height: 100vh;
        min-height: 600px;
        position: relative;
    }
    
    .hero-image {
        top: 0;
        height: 100%;
    }
    
    .hero-content {
        top: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        z-index: 10;
        padding: 0 1.5rem;
    }
    
    .hero-overlay {
        height: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .main-container {
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .section-content {
        padding: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-item-large {
        grid-column: span 1;
        aspect-ratio: 1;
    }
    
    .videos-grid {
        column-count: 2;
        column-gap: 1.5rem;
    }
    
    .video-item {
        margin-bottom: 1.5rem;
    }
    
    .video-item iframe {
        height: 180px;
    }
    
    .video-item iframe[src*="shorts"] {
        height: 250px;
    }
    
    .socials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gig-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .gig-date {
        min-width: 80px;
        height: 80px;
    }
    
    .date-day {
        font-size: 1.5rem;
    }
    
    .contact-link {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 15px;
        font-size: 20px;
        margin: 0 10px;
    }
}

/* Landscape orientation fixes - only for mobile landscape */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    body {
        width: 100vw;
        min-width: 100vw;
        overflow-x: hidden;
    }
    
    .header-nav {
        padding: 0.5rem 0;
        width: 100vw;
        left: 0;
        right: 0;
    }
    
    .header-nav-content {
        padding: 0 1rem;
        gap: 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        max-width: none;
        width: 100%;
    }
    
    .header-nav-content::-webkit-scrollbar {
        display: none;
    }
    
    .header-logo {
        flex-shrink: 0;
        margin-right: 1.5rem;
    }
    
    .header-logo-img {
        height: 45px;
        max-width: 110px;
    }
    
    .header-links {
        gap: 1.5rem;
        flex-shrink: 0;
    }
    
    .header-nav a {
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .main-container {
        width: 100vw;
        max-width: none;
        padding: 2rem 1rem;
    }
    
    .hero-landing {
        width: 100vw;
        height: 100vh;
        min-height: 500px;
        position: relative;
    }
    
    .hero-image {
        width: 100vw;
    }
    
    .hero-overlay {
        width: 100vw;
    }
    
    .hero-content {
        top: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        padding: 0 2rem;
        width: 100vw;
        max-width: 100vw;
    }
    
    .content-section {
        width: 100vw;
        max-width: none;
    }
    
    .section-content {
        width: 100%;
        max-width: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header-nav-content {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }
    
    .header-logo-img {
        height: 40px;
        max-width: 100px;
    }
    
    .header-nav a {
        font-size: 0.8rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-item iframe {
        height: 200px;
    }
    
    .video-item iframe[src*="shorts"] {
        height: 300px;
    }
    
    .socials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo-img {
        max-width: 400px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-content {
        width: 95%;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 10px;
        font-size: 18px;
        margin: 0 5px;
    }
}