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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.tel-number {
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    color: grey;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.section-title-script {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
}

.section-title-caps {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
}

/* ========================================
   NAVIGATION / HEADER
   ======================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

nav ul li a:hover,
nav ul li a.active {
    color: #666;
}

/* Dropdown Menu */
nav ul li .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

nav ul li .dropdown li {
    width: 100%;
}

nav ul li .dropdown li a {
    padding: 12px 20px;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

nav ul li .dropdown li:last-child a {
    border-bottom: none;
}

nav ul li .dropdown li a:hover {
    background-color: #f5f5f5;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arts-council-logo img {
    height: 40px;
    width: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTIONS - PARALLAX
   ======================================== */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: -10px;
    letter-spacing: 2px;
}

.hero-band-name {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 20px;
    margin-bottom: 40px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-outline {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.btn-outline-dark {
    border-color: #000;
    color: #000;
}

.btn-outline-dark:hover {
    background: #000;
    color: #fff;
}

.btn-solid {
    display: inline-block;
    padding: 15px 50px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.btn-solid:hover {
    background: transparent;
    color: #fff;
}

/* ========================================
   CONTENT SECTIONS WITH PARALLAX BACKGROUND
   ======================================== */

.content-parallax-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 40px;
    overflow: hidden;
}

.content-parallax-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    z-index: -1;
}

.content-parallax-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.content-parallax-section .content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.content-column h2 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.content-column p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ddd;
}

.content-column .btn-outline {
    margin-top: 30px;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background-color: #fff;
    color: #000;
    padding: 60px 40px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
}

.footer-section p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #666;
    font-size: 16px;
}

.contact-details {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #000;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #999;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #666;
    transform: translateY(-3px);
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscribe-form input[type="email"] {
    padding: 15px;
    border: 1px solid #ccc;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
    border-color: #666;
}

.subscribe-form input[type="email"]::placeholder {
    color: #999;
}

.subscribe-form button {
    padding: 15px 30px;
    background-color: #999;
    color: #fff;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #666;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.footer-bottom a {
    font-size: 13px;
    color: #999;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #666;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    nav ul {
        gap: 25px;
    }

    nav ul li a {
        font-size: 12px;
    }

    .hero-band-name {
        font-size: 48px;
        letter-spacing: 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .content-parallax-section .content-wrapper {
        gap: 60px;
    }

    .content-column h2 {
        font-size: 20px;
    }

    .content-column p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    nav ul li .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: #f9f9f9;
    }

    nav ul li.dropdown-open .dropdown {
        display: block;
    }

    .arts-council-logo {
        display: none;
    }

    .hero-band-name {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .hero-title {
        font-size: 28px;
    }

    .content-parallax-section {
        padding: 80px 20px;
    }

    .content-parallax-section .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Parallax fallback for mobile/touch devices */
@supports (-webkit-touch-callout: none) {
    .hero-parallax,
    .content-parallax-section .parallax-bg {
        background-attachment: scroll;
    }
}

/* ========================================
   MUSIC PAGE STYLES
   ======================================== */

/* Music Hero Section */
.music-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../media/images/Heads.png') center center/cover no-repeat;
    margin-top: 80px;
}

.music-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.music-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.music-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    letter-spacing: 15px;
    color: #fff;
    margin: 0;
}

/* Album showcase section */
.album-showcase {
    background: #000;
    padding: 80px 40px;
}

.album-showcase-content {
    max-width: 1400px;
    margin: 0 auto;
}

.featured-album-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.featured-album-cover {
    text-align: center;
}

.featured-album-cover img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.featured-album-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    letter-spacing: 8px;
    margin-bottom: 10px;
}

.featured-album-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    color: #999;
    margin-bottom: 30px;
}

.featured-album-info p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.featured-album-info .btn-outline {
    margin-right: 20px;
}

/* Albums Grid */
.albums-grid-section {
    margin-top: 80px;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.album-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.album-item:hover {
    transform: translateY(-10px);
}

.album-item img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    cursor: pointer;
}

.album-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: #ccc;
    margin-bottom: 5px;
}

.album-item .price {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #999;
}

.album-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #000;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.album-item-wrapper {
    position: relative;
}

/* Album Description */
.album-description {
    background: #111;
    padding: 60px 40px;
    text-align: center;
}

.album-description p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.8;
    color: #ccc;
    max-width: 900px;
    margin: 0 auto 30px;
}

.album-description a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.album-description a:hover {
    color: #999;
}

.arts-council-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.arts-council-section img {
    height: 60px;
    width: auto;
    filter: invert(1);
}

/* Media Section */
.media-section {
    background: #000;
    padding: 80px 40px;
}

.media-content {
    max-width: 1200px;
    margin: 0 auto;
}

.media-item {
    margin-bottom: 60px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Bandcamp embed styles */
.bandcamp-embed {
    border: 0;
    width: 100%;
    height: 120px;
}

/* YouTube embed container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

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

/* Music Page Responsive Styles */
@media (max-width: 968px) {
    .featured-album-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .music-hero h1 {
        font-size: 48px;
        letter-spacing: 10px;
    }
}

@media (max-width: 768px) {
    .music-hero h1 {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .albums-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .featured-album-info h2 {
        font-size: 28px;
    }

    .album-description p {
        font-size: 18px;
    }
}