/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

        /* Base Styles */
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            background: url('https://images.pexels.com/photos/1763075/pexels-photo-1763075.jpeg?auto=compress&cs=tinysrgb&w=1600') center top/cover fixed;
            min-height: 100vh;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
        }

        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
            margin-top: 0;
            background: white;
            box-shadow: 0 0 50px rgba(0,0,0,0.5);
            flex: 1;
        }

        /* Header */
        header {
            background: #2c3e50;
            color: white;
            padding: 1.5rem;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-img {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        h1 {
            font-size: 2rem;
            font-weight: 700;
        }

        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.7;
        }

        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('Image/I1.jpg') center top/cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.3rem;
        }

        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .page {
            background: white;
        }

        section {
            margin-bottom: 3rem;
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
            font-weight: 700;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 1rem;
        }

        .about-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        /* Video */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Gigs */
        .gigs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .gig-card {
            background: #f5f5f5;
            padding: 1.5rem;
            border-left: 4px solid #2c3e50;
        }

        .gig-date {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .gig-venue {
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        /* Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 3rem;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        label {
            font-weight: 600;
        }

        .required::after {
            content: " *";
            color: red;
        }

        input, textarea {
            padding: 0.7rem;
            border: 1px solid #ccc;
            font-family: inherit;
        }

        input[required] {
            border-left: 3px solid red;
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        button {
            padding: 0.8rem;
            background: #2c3e50;
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        button:hover {
            background: #1a252f;
        }

        .contact-info p {
            margin-bottom: 1rem;
        }

        .social-links {
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: #3b5998;
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .social-links a:hover {
            opacity: 0.8;
        }

        /* Map */
        .map-container {
            width: 100%;
            height: 350px;
            margin-top: 2rem;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 2rem;
            text-align: center;
            width: 100%;
            margin-top: 3rem;
        }

        .footer-contact {
            margin-top: 1rem;
        }

        /* Page Management */
        .page-hidden {
            display: none;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .gallery-item {
            overflow: hidden;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        /* Samples */
        .samples-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .sample-card {
            background: #f5f5f5;
            padding: 6rem;
        }

        .sample-card h3 {
            margin-bottom: 3rem;
            color: #2c3e50;
        }

        /* Responsive - Tablet */
        @media (max-width: 1023px) {
            .content-wrapper {
                width: calc(100% - 40px);
                margin: 0 20px;
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Responsive - Mobile */
        @media (max-width: 768px) {
            .content-wrapper {
                width: calc(100% - 30px);
                margin: 0 15px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .samples-grid,
            .gigs-grid {
                grid-template-columns: 1fr;
            }

            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #2c3e50;
                padding: 1rem;
                gap: 1rem;
            }

            nav ul.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 410px) {
            .content-wrapper {
                width: calc(100% - 20px);
                margin: 0 10px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            header {
                padding: 1rem;
            }

            .logo-img {
                width: 50px;
                height: 40px;
            }

            h1 {
                font-size: 1.4rem;
            }

            .hero {
                height: 300px;
            }

            .hero h2 {
                font-size: 1.6rem;
            }

            main {
                padding: 2rem 1rem;
            }

            .gigs-grid {
                grid-template-columns: 1fr;
            }
        }


footer {
    background: #2c3e50;
    color: white;
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

    box-sizing: border-box;
}

/* Footer text */
footer p {
    margin: 0.25rem 0;
    font-size: 1rem;
}

/* Footer contact section */
.footer-contact {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.4em;
}

/* Social links inside footer */
footer .social-links {
    margin-top: 0.5rem;
}
footer .social-links a {
    background: #3b5998;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.95rem;
    text-decoration: none;
    margin: 0 0.25rem;
    transition: opacity 0.3s;
}

footer .social-links a:hover {
    opacity: 0.7;
}

/* Tablet (extra credit) */
@media (max-width: 1023px) {
    footer {
        padding: 2rem 1.5rem;
    }
}

/* Mobile layout */
@media (max-width: 768px) {
    footer {
        font-size: 0.95rem;
        padding: 1.8rem 1rem;
    }

    footer .social-links a {
        display: block;
        margin: 0.4rem auto;
        width: fit-content;
    }
}

/* Small mobile (<=410px) */
@media (max-width: 410px) {
    footer {
        font-size: 0.9rem;
        padding: 1.5rem 0.5rem;
        gap: 0.7rem;
    }

    footer .social-links a {
        font-size: 0.85rem;
        padding: 0.45rem 0.9rem;
    }
}


.C {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.5rem auto;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.page:not(.page-hidden) {
    flex: 1;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-grid .about-image {
    order: 1;
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}

.about-grid .about-text {
    order: 2;
    text-align: left;
}

@media (max-width: 1023px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid .about-image {
        max-height: none;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.hero {
    margin-top: 108px;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem 3rem 2rem; /* top padding to avoid being hidden */
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem 2rem 2rem; /* top padding = header height */
}

.about-text h2 {
    margin-top: 0;
    margin-bottom: 0.3rem; /* small gap between h2 and small text */
}

.about-text p {
    margin-top: 0.3rem;  /* small gap between paragraphs */
    margin-bottom: 0.5rem;
    line-height: 1.5; /* tighter than default if needed */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto; /* centers the video */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.samples-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem; /* spacing between videos */
}

.sample-card {
    flex: 1 1 600px; /* min width 600px, grow to fill space */
    max-width: 1000px; /* max width of each video */
}

.responsive-video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 ratio */
    position: relative;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.samples-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; /* space between videos */
    margin: 0 auto;
    max-width: 1200px; /* optional: limit max width of grid */
}

.sample-card {
    flex: 1 1 400px;   /* min width 400px, grows as needed */
    max-width: 600px;  /* max width per video */
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px; /* optional: rounded corners */
}

/* Optional: adjust spacing for mobile screens */
@media (max-width: 600px) {
    .samples-grid {
        gap: 1rem;
    }
}
