/* Base Styles */
:root {
    --primary-color: #6c63ff;
    --secondary-color: #4a45b1;
    --dark-color: #2d2d44;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #777;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 100px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    color: var(--dark-color);
}

.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.bg-light {
    background-color: #f9f9f9;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 4px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.6s both;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Band Members Grid */
.band-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 20px 15px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .band-members-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .band-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .band-member {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    
    .member-avatar {
        width: 100%;
        height: 100%;
    }
}

.band-member {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 20px auto;
    border-radius: 50%;
    overflow: hidden;
}

.member-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

.member-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.band-member:hover .member-info {
    opacity: 1;
}

.member-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.member-skill {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.loading-members {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .band-members-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .band-member {
        width: 100px;
        height: 100px;
    }
}

.band-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.member {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light-color);
}

.member h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Concerts Section */
.concerts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.concert-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.concert-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.concert-info {
    padding: 20px;
}

/* Concerts Sections */
.concert-sections {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.concert-section {
    width: 100%;
    margin-bottom: 50px;
}

.concert-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.concerts-section h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.concerts-section.past-concerts {
    opacity: 0.85;
}

.concerts-section.past-concerts h3 {
    color: var(--text-light);
    border-bottom-color: var(--text-light);
}

@media (min-width: 768px) {
    .concerts-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 20px;
        width: 100%;
    }
}

/* For mobile devices */
@media (max-width: 767px) {
    .concerts-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 15px;
    }
}

.no-concerts {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: var(--text-light);
}

/* Concert Cards */
.concert-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Poster container (top half) */
.concert-poster-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
}

.concert-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.concert-poster.placeholder {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    font-size: 3rem;
}

/* Details container (bottom half) */
.concert-details-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.concert-title {
    font-size: 1.25rem;
    margin: 0 0 10px 0;
    color: var(--dark-color);
}

.concert-date {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.concert-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.concert-location i {
    color: var(--primary-color);
}

.concert-description {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.ticket-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.ticket-btn:hover {
    background: var(--secondary-color);
    text-decoration: none;
}

/* Concert poster styles are now defined in the main card section */

.concert-poster.placeholder {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
}

.concert-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.concert-date {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    align-self: flex-start;
}

.concert-title {
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: var(--dark-color);
}

.concert-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.concert-venue {
    font-weight: 600;
    margin-bottom: 5px;
}

.concert-location {
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.concert-location i {
    color: var(--primary-color);
}

.ticket-link {
    margin-top: auto;
    align-self: flex-start;
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ticket-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #bbb;
}

@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* Responsive Styles */
@media (max-width: 768px) {
    .concert-card {
        flex-direction: column;
    }
    
    .concert-poster {
        width: 100%;
        height: 250px;
    }
    
    .concert-details {
        padding: 20px;
    }
    
    .modal-content {
        max-width: 100%;
    }
    
    .close {
        top: 15px;
        right: 25px;
        font-size: 30px;
    }
}

/* Existing styles */
.concert-date {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.concert-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.concert-location {
    display: flex;
    align-items: center;
    color: var(--text-light);
    margin-bottom: 15px;
}

.concert-location i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Instagram Feed */
.instagram-feed {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.instagram-feed h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.instagram-feed h3 i {
    color: #E1306C; /* Instagram brand color */
}

.instagram-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.instagram-post {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.03);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-placeholder {
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

.instagram-placeholder i {
    font-size: 3rem;
    color: #E1306C;
    margin-bottom: 15px;
    display: block;
}

.instagram-placeholder p {
    margin-bottom: 20px;
    color: #666;
}

.instagram-placeholder .btn {
    background: #E1306C;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-placeholder .btn:hover {
    background: #C13584;
    transform: translateY(-2px);
}

/* YouTube Feed */
.youtube-feed {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.youtube-feed h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.youtube-feed h3 i {
    color: #FF0000; /* YouTube brand color */
}

.youtube-videos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.youtube-video {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px 8px 0 0;
}

.youtube-video h4 {
    padding: 0 15px;
    margin: 12px 0 8px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}

.video-description {
    padding: 0 15px 15px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.youtube-placeholder {
    padding: 20px;
    text-align: center;
}

.youtube-placeholder i {
    font-size: 3rem;
    color: #FF0000;
    margin-bottom: 15px;
    display: block;
}

.youtube-placeholder p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
}

.youtube-placeholder .btn {
    background: #FF0000;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.youtube-placeholder .btn:hover {
    background: #CC0000;
    transform: translateY(-2px);
}

/* Social Feeds */
.social-feeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-feed {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-feed h3 {
    padding: 20px;
    background: var(--dark-color);
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.social-feed h3 i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.feed-container {
    height: 400px;
    overflow-y: auto;
    padding: 20px;
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-info {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .band-members {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .member img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .band-members {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}
