/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    outline: none;
    border: none;
    box-shadow: none;
}
a:focus, a:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    
}

body::-webkit-scrollbar {
  display: none; /* Hides the scrollbar */
}

/* Utility Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Navigation */
/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    background: transparent; /* Default to transparent at the very top */
    box-shadow: none; /* Default to no shadow at the very top */
}

.nav-container.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container.nav-at-top {
    background: transparent;
    box-shadow: none;
}

.nav-content {
    max-width: 1300px;
    margin: auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between; /* Default: logo left, links right */
    align-items: center;
}

.nav-container.nav-at-top .nav-content {
    justify-content: center; /* Center content when at the top */
}

/* Add a transition to the .nav-brand */
.nav-brand {
    transition: opacity 0.5s ease-in-out;

}

/* REPLACE the .nav-container.nav-at-top .nav-brand selector */
.nav-container.nav-at-top .nav-brand {
    opacity: 0;
    display: none;
}

/* REPLACE the .nav-container.scrolled .nav-brand selector */
.nav-container.scrolled .nav-brand {
    opacity: 1;
    visibility: visible;
}

.desktop-nav {
    display: flex;
    gap: 10rem;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    position: relative;
    transform: translateX(0); /* Start centered */
    transition: transform 0.7s cubic-bezier(.4,0,.2,1), justify-content 0.7s cubic-bezier(.4,0,.2,1);
}

/* When scrolled, slide to the right */
.nav-container.scrolled .desktop-nav {
    justify-content: flex-end;
    transform: translateX(4vw); /* Adjust as needed for your layout */
}

@media (max-width: 1300px) {
    .nav-links.desktop-nav {
        padding-right: 5vw;
    }
}

.nav-container.scrolled .desktop-nav {
    justify-content: flex-end; /* On scroll, align to the right */
}

.logo {
    height: 3rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.nav-link {
    color: #6a7e62;
    text-decoration: none;
    font-family: 'Michroma', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background: #6a7e62;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: #6a7e62;
    text-decoration: none;
    font-family: 'Michroma', sans-serif;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: white;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: black;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('Images/BG\ Band.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 70%;
    max-width: 64rem;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-subtitle {
    color: white;
    font-family: 'Radley', serif;
    font-size: 1.5rem;
    max-width: 32rem;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.hero-cta {
    background: #6a7e62;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Michroma', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #8aa682;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(106, 126, 98, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid white;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 4px;
    height: 0.75rem;
    background: white;
    border-radius: 2px;
}

/* About Section */
.about-section {
    min-height: 100vh;
    background: black;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    background-image: url('Images/CharlieBG.png');
    background-size: cover;
    background-position: center 25%;
    opacity: 1;
    filter: brightness(1.5);
}

.about-overlay {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%; /* Adjust width to cover only the text area */
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Adjust the last value (0.6) for darkness intensity */
    z-index: 5; /* Ensure it's behind the text but above the background image */
}

.about-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    justify-content: flex-end;
}

.about-text-container {
    max-width: 50%;
}

.about-title {
    color: white;
    font-family: 'Michroma', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-subtitle {
    color: #6a7e62;
    font-family: 'Michroma', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-text {
    color: white;
    font-family: 'Radley', serif;
    font-size: 1.25rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Socials Section */
.socials-videos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.socials-video {
    width: 340px;
    height: 191px; /* 16:9 aspect ratio */
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    background: #000;
    border: none;
}

@media (max-width: 1100px) {
    .socials-video {
        width: 280px;
        height: 158px;
    }
}

@media (max-width: 800px) {
    .socials-videos {
        gap: 1rem;
    }
    .socials-video {
        width: 100%;
        max-width: 350px;
        height: 197px;
    }

.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.8, 0, 0.2, 1), opacity 0.3s, visibility 0.3s;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    gap: 1rem;
    display: flex;
    opacity: 0;
    visibility: hidden;
    /* Remove padding, margin-top, border-radius here */
}

.mobile-nav.active {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.nav-container.scrolled {
    height: 6rem;
}



}



.socials-section {
    min-height: 100vh;
    background: black;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.socials-bg {
    position: absolute;
    inset: 0;
    background-image: url('Images/logobg1.png');
    background-size: cover;
    background-position: center;
}

.socials-bg-2 {
    position: absolute;
    inset: 0;
    background-image: url('https://figma-alpha-api.vercel.app/images/fcb17bb75d60b8fddd01b8a9cc199477d3efe79d');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.socials-logo-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 24rem;
    background-image: url('https://figma-alpha-api.vercel.app/images/11a0c605e30c4c37432517b3072a7ab10485281e');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.socials-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.socials-title {
    color: white;
    font-family: 'Michroma', sans-serif;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.socials-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Instagram gradient background on hover */
.social-icon.instagram {
    background: none;
    /* transition: background 0.3s; */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-icon.instagram:hover, .social-icon.instagram:focus {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icon.instagram:hover .social-svg,
.social-icon.instagram:focus .social-svg {
    color: white;
}
.social-icon.instagram .social-svg {
    color: #fff;
    transition: color 0.3s;
}


.social-icon {
    width: 6rem;
    height: 6rem;
    color: white;
    transition: all 0.3s ease;
    display: block;
}



.social-icon:hover {
    transform: scale(1.1) rotate(6deg);
}

.social-icon.instagram:hover {
    color: #7f656a;
    
}

.social-icon.soundcloud:hover {
    color: #FF3300;
}

.social-icon.tiktok:hover {
    color: #000000;

}

.social-icon.spotify:hover {
    color: #808080;
}

.social-icon.youtube:hover {
    color: #FF0000;
}

.social-svg {
    width: 100%;
    height: 100%;
}

/* EPK Section */
.epk-section {
    min-height: 100vh;
    background: black;
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.epk-bg {
    position: absolute;
    inset: 0;
    background-image: url('Images/logbg2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.epk-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.epk-title {
    color: white;
    font-family: 'Michroma', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.epk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.epk-pack {
    text-align: center;
}

.epk-pack-title {
    color: white;
    font-family: 'Michroma', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.epk-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.epk-image-container {
    position: relative;
    height: 12rem;
    border-radius: 0.5rem;
    overflow: hidden;
    /* group: hover; */
}

.epk-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    
}

.epk-image-container:hover .epk-image {
    transform: scale(1.05);
}

.epk-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    opacity: 0;
    transition: opacity 0.3s ease;

}

.epk-image-container:hover .epk-overlay {
    opacity: 1;
    
}

.download-btn {
    background: #6a7e62;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Michroma', sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #8aa682;
}

.epk-description h4 {
    color: white;
    font-family: 'Radley', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.epk-description p {
    color: white;
    font-family: 'Michroma', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Band Section */
.band-section {
    min-height: 100vh;
    background: black;
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.band-bg {
    position: absolute;
    inset: 0;
    background-image: url('Images/logobg3.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    mix-blend-mode: luminosity;
}

.band-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.band-title {
    color: white;
    font-family: 'Michroma', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

@media screen {
    
}

@media screen and (max-width: 1068px) and (min-width: 700px) {
    .band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    }
    
}



.band-member {
    text-align: center;
}

.band-member-image {
    width: 100%;
    height: 24rem;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    /* group: hover; */
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.band-member-image:hover .member-img {
    transform: scale(1.05);
}

.member-name {
    color: white;
    font-family: 'Michroma', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.member-role {
    color: white;
    font-family: 'Radley', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.member-quote {
    color: white;
    font-family: 'Michroma', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.member-instagram {
    display: inline-block;
    color: white;
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

.member-instagram:hover {
    color: #E4405F;
}

.instagram-icon {
    width: 2rem;
    height: 2rem;
}

.member-handle {
    color: white;
    font-family: 'Michroma', sans-serif;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    background: white;
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-image: url('Images/logbg2.png');
    background-size: cover;
    background-position: center;
}

.contact-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-title {
    color: white;
    font-family: 'Michroma', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-subtitle {
    color: white;
    font-family: 'Michroma', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4rem;
}

.contact-gallery {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.gallery-image {
    flex-shrink: 0;
    width: 10rem;
    height: 14rem;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}


.gallery-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    max-width: 64rem;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #e2dddd;
    font-family: 'Michroma', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: #ffa60062;
    border: 2px solid white;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgb(255, 255, 255);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6a7e62;
    box-shadow: 0 0 0 2px rgba(106, 126, 98, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 8rem;
}

.form-submit {
    background: #a66622;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 3rem;
    border-radius: 0.5rem;
    font-family: 'Radley', serif;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem auto 0;
    min-width: 12rem;
}

.form-submit:hover {
    background: #8a5520;
    transform: scale(1.05);
}

.form-submit:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(106, 126, 98, 0.3);
}

/* Footer */
.footer {
    background: black;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background-image: url('Images/logobg3.png');
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: 1;
}

.footer-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: center;
}

@media (max-width: 780px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-content > * {
        margin-bottom: 2rem;
    }

    .about-overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.6); 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

}

.footer-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;   /* Add this */
    align-items: center;       /* Add this */
    flex-wrap: wrap;          /* Allow wrapping on smaller screens */
    margin-top: 3rem;
}

.footer-social {
    width: 3rem;
    height: 4rem;
    color: white;
    transition: all 0.3s ease;
}
    


.footer-social:hover {
    transform: scale(1.1);
    color: #6a7e62 !important;
}


.footer-social-svg {
    width: 100%;
    height: 100%;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6a7e62;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.contact-label {
    color: #dedede;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #6a7e62;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    padding-bottom: 1.8rem;
    text-align: center;
}

.footer-bottom p {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 20px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .nav-content {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .mobile-menu-btn {
        display: flex;
        margin-right: auto;
        margin-left: 0;
        order: -1;
    }

    img#logo.logo {
        align-self: center;
        justify-content: center;
        margin-top: 0.5rem;

    }
    

    .hero-logo {
        max-width: 90%;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .about-content {
        justify-content: center;
    }
    
    .about-text-container {
        max-width: 100%;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.5rem;
    }
    
    .socials-title {
        font-size: 2rem;
    }
    
    .socials-icons {
        gap: 2rem;
    }
    
    .social-icon {
        width: 4rem;
        height: 4rem;
    }
    
    .epk-title {
        font-size: 2rem;
    }
    
    .epk-pack-title {
        font-size: 1.5rem;
    }
    
    .band-title {
        font-size: 2rem;
    }
    
    .member-name {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        width: 8rem;
        height: 11rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section:last-child {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-content {
        padding: 0 1rem;
    }
    
    .hero-content,
    .about-content,
    .socials-content,
    .epk-content,
    .band-content,
    .contact-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.25rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .socials-icons {
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .member-name {
        font-size: 1.5rem;
    }
    
    .gallery-image {
        width: 6rem;
        height: 8rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 6rem 0 3rem;
    }
    
    .hero-logo {
        max-width: 40rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg,
    .about-bg,
    .socials-bg,
    .socials-bg-2,
    .socials-logo-bg,
    .epk-bg,
    .band-bg,
    .contact-bg,
    .footer-bg {
        background-attachment: scroll;
    }
}