
/* Rosina & The Weavers - Main Stylesheet */

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

body {
    background-color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* ===================================
   Z-INDEX SCALE
   1-10: Content layers
   100-200: UI elements
   1000+: Critical overlays
   =================================== */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 0 20px;
    position: relative;
    max-width: 2000px; /* Prevent massive scaling on ultra-wide screens */
    margin: 0 auto;
}

/* Logo Styles */
.logo-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: -75px;
}

.logo-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

/* Hero Image Styles */
.hero-image-container {
    width: 100%;
    max-width: none;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 800px;
}

.hero-image {
    width: 110%;
    height: 100%;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    object-position: 50% 65%;
    transform: translateX(-10%);
    loading: lazy; /* Performance: lazy load images */
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .logo-container {
        max-width: 400px;
        margin-bottom: -30px;
    }

    .logo-image {
        max-width: 350px;
    }

    .hero-image-container {
        max-width: 900px;
        height: 450px;
    }

    .hero-image {
        width: 120%;
        transform: translateX(-10%);
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .hero-section {
        padding: 10px 15px 80px 15px; /* MOBILE FIX: Less top space, more bottom for arrow */
        justify-content: center; /* MOBILE FIX: Align to top instead of center */
    }

    .logo-container {
        max-width: 300px;
        margin-bottom: -20px;
    }

    .logo-image {
        max-width: 250px;
    }

    .hero-image-container {
        max-width: 100%;
        height: 300px;
    }

    .hero-image {
        width: 120%;
        transform: translateX(-10%);
    }
}

/* ===================================
   SCROLL DOWN ARROW
   =================================== */

.scroll-down-arrow {
    position: absolute;
    bottom: 40px; /* ADJUST THIS: Distance from bottom of hero section */
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    
    /* Arrow icon styling */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* ADJUST THIS: Arrow circle size */
    height: 50px;
    
    /* Visual styling */
    color: rgba(255, 255, 255, 0.7); /* ADJUST THIS: Arrow color (semi-transparent white) */
    background-color: rgba(255, 255, 255, 0.05); /* ADJUST THIS: Background (very subtle) */
    border: 2px solid rgba(255, 255, 255, 0.3); /* ADJUST THIS: Border color */
    border-radius: 50%; /* Makes it a circle */
    
    /* Animation */
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* Bouncing animation */
    animation: bounce 2s infinite;
}

/* Arrow icon size */
.scroll-down-arrow i {
    font-size: 24px; /* ADJUST THIS: Icon glyph size */
}

/* Hover effect */
.scroll-down-arrow:hover {
    color: #E91E8C; /* ADJUST THIS: Pink/mauve on hover */
    background-color: rgba(233, 30, 140, 0.1);
    border-color: #E91E8C;
    transform: translateX(-50%) translateY(-5px); /* Lift up slightly */
}

/* Bouncing animation keyframes */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .scroll-down-arrow {
        bottom: 30px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-down-arrow i {
        font-size: 20px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .scroll-down-arrow {
        bottom: 80px; /* MOBILE FIX: Moved up from 20px for better visibility */
        width: 40px;
        height: 40px;
    }
    
    .scroll-down-arrow i {
        font-size: 18px;
    }
}

/* ============================================ */
/* ABOUT SECTION */
/* ============================================ */

/* Development Separator - Remove when spacing is perfect */
.dev-separator {
    border-top: 0px solid #E91E8C;
}

.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px; /* ADJUST THIS: Controls vertical spacing around section */
    position: relative;
}

.about-container {
    width: 100%;
    /* CONTAINER WIDTH CONTROL:
       - max-width: none;     = Full screen width (image flush left, extends across screen)
       - max-width: 1200px;   = Centered container with margins on both sides
       - max-width: 90%;      = Centered container at 90% of screen width
    */
    max-width: none; /* ADJUST THIS: Set to 1200px to contain width, or none for full-width */
    position: relative;
    display: flex;
    align-items: center;
}

/* About Image - Takes up ~2/3 width on left side */
.about-image-wrapper {
    width: 66.666%; /* ADJUST THIS: Controls image width (2/3 = 66.666%) */
    position: relative;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 900px; /* ADJUST THIS: Controls maximum image height */
    loading: lazy;
}

/* About Text Overlay - Positioned from center, overlaps image and black space */
.about-text-overlay {
    position: absolute;
    left: 50%; /* Start from center of container */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    width: 50%; /* ADJUST THIS: Controls text container width */
    z-index: 10;
    padding: 40px; /* ADJUST THIS: Controls padding around text */
}

.about-text {
    color: #ffffff;
    font-size: 2rem; /* ADJUST THIS: Controls text size */
    line-height: 1.3; /* ADJUST THIS: Controls line spacing */
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-text-overlay {
        width: 60%;
        padding: 30px;
    }

    .about-text {
        font-size: 1.2rem;
        line-height: 1.7;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .about-section {
        min-height: auto; /* FIX: Remove forced full-screen height causing black gaps */
        padding: 30px 15px; /* FIX: Was 0px - added breathing room */
    }

    .about-container {
        flex-direction: column;
    }

    .about-image-wrapper {
        width: 100%;
    }

    .about-image {
        max-height: 400px;
    }

    .about-text-overlay {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        padding: 20px; /* FIX: Was 0px 20px */
        margin-top: 20px;
    }

    .about-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* ===================================
   VIDEOS SECTION (Page 3)
   =================================== */

.videos-section {
    padding: 80px 20px; /* ADJUST THIS: Top/bottom spacing around entire video section */
    background-color: #000000;
}

.videos-container {
    max-width: none; /* ADJUST THIS: Full width container (change to 1400px to limit max width) */
    width: 100%; /* Container spans full width */
    margin: 0 auto;
}

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* Loading spinner for YouTube API */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #E91E8C;
    font-size: 2rem;
    z-index: 5;
}

/* Carousel wrapper - now stacks vertically (video on top, controls below) */
.carousel-wrapper {
    display: flex;
    flex-direction: column; /* ADJUST THIS: Stack video and controls vertically */
    align-items: center;
    gap: 30px; /* ADJUST THIS: Space between video player and controls (arrows + dots) */
    position: relative;
    z-index: 1;
}

/* Video container - full width with small side buffers */
.carousel-container {
    width: calc(100% - 80px); /* ADJUST THIS: Full width minus left/right buffer (40px each side) */
    /* BUFFER OPTIONS:
       - calc(100% - 80px)  = 40px buffer on each side (total 80px, DEFAULT)
       - calc(100% - 120px) = 60px buffer on each side (total 120px, more breathing room)
       - calc(100% - 40px)  = 20px buffer on each side (total 40px, tighter)
       - 100%               = No buffer, truly full width edge-to-edge
    */
    max-width: none; /* No maximum width limit - uses all available space */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Controls container - arrows and dots in one row */
.carousel-controls {
    display: flex;
    align-items: center;
    gap: 40px; /* ADJUST THIS: Space between arrows and indicator dots */
    justify-content: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
    z-index: 1;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000000;
    z-index: 1;
}

.video-wrapper iframe,
.video-wrapper > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Navigation arrow controls - positioned below video player */
.carousel-arrow-container {
    display: flex;
    gap: 20px; /* ADJUST THIS: Space between left and right arrows */
    justify-content: center;
    align-items: center;
}

.carousel-arrow {
    background-color: rgba(255, 255, 255, 0.1); /* ADJUST THIS: Arrow background (semi-transparent white) */
    border: 2px solid rgba(255, 255, 255, 0.3); /* ADJUST THIS: Arrow border color */
    color: #ffffff; /* ADJUST THIS: Arrow icon color */
    width: 60px; /* ADJUST THIS: Arrow button width */
    height: 60px; /* ADJUST THIS: Arrow button height */
    border-radius: 50%; /* Makes arrow button circular */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    user-select: none;
    outline: none;
    position: relative;
    z-index: 1000;
}

.carousel-arrow:disabled {
    opacity: 0.3; /* ADJUST THIS: Opacity when arrow is disabled (at start/end of carousel) */
    cursor: not-allowed;
}

/* Hover effect - pink/mauve accent */
.carousel-arrow:hover:not(:disabled) {
    background-color: rgba(233, 30, 140, 0.3); /* ADJUST THIS: Pink background on hover */
    border-color: #E91E8C; /* ADJUST THIS: Pink border on hover */
    transform: scale(1.1); /* ADJUST THIS: Slightly enlarge on hover */
}

.carousel-arrow:active:not(:disabled) {
    transform: scale(0.95); /* ADJUST THIS: Slightly shrink when clicked */
}

/* Arrow icon sizing */
.carousel-arrow svg,
.carousel-arrow i {
    pointer-events: none;
    font-size: 28px; /* ADJUST THIS: Size of the arrow icon glyph */
}

/* Indicator dots - show which video is currently active */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px; /* ADJUST THIS: Space between individual indicator dots */
}

.indicator {
    width: 12px; /* ADJUST THIS: Indicator dot width */
    height: 12px; /* ADJUST THIS: Indicator dot height */
    border-radius: 50%; /* Makes indicators circular */
    background-color: rgba(255, 255, 255, 0.3); /* ADJUST THIS: Inactive dot color */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.5); /* ADJUST THIS: Dot color on hover */
    transform: scale(1.2); /* ADJUST THIS: Slightly enlarge on hover */
}

.indicator.active {
    background-color: #E91E8C; /* ADJUST THIS: Active dot color (pink/mauve) */
    transform: scale(1.3); /* ADJUST THIS: Active dot is larger */
}

/* Tablet responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .carousel-wrapper {
        gap: 20px; /* Tighter spacing between video and controls */
    }

    .carousel-container {
        width: calc(100% - 60px); /* Slightly smaller side buffers on tablet (30px each) */
    }

    .carousel-arrow-container {
        gap: 15px; /* Tighter spacing between arrows */
    }

    .carousel-arrow {
        width: 50px; /* Smaller arrow buttons on tablet */
        height: 50px;
    }

    .carousel-arrow svg,
    .carousel-arrow i {
        font-size: 24px; /* Smaller arrow icons on tablet */
    }
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .videos-section {
        padding: 30px 15px; /* Tighter mobile spacing */
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px; /* Tighter spacing on mobile */
    }

    .carousel-wrapper {
        gap: 15px; /* Tighter spacing between video and controls */
    }

    .carousel-container {
        width: calc(100% - 30px); /* Minimal side buffers on mobile (15px each) */
    }

    .carousel-arrow-container {
        gap: 12px; /* Tighter spacing between arrows */
    }

    .carousel-arrow {
        width: 45px; /* Smaller arrow buttons on mobile */
        height: 45px;
    }

    .carousel-arrow svg,
    .carousel-arrow i {
        font-size: 20px; /* Smaller arrow icons on mobile */
    }

    .carousel-indicators {
        gap: 10px; /* Tighter spacing between dots */
    }

    .carousel-controls {
        gap: 25px; /* Tighter spacing between arrows and dots on mobile */
    }

    .indicator {
        width: 10px; /* Smaller indicator dots on mobile */
        height: 10px;
    }
}

/* ============================================ */
/* SHARED ICON STYLES                           
   All icon styling is consolidated at the 
   bottom of this file — search for            
   "MASTER ICON STYLES" to find it.            
   ============================================ */

/* ============================================ */
/* FOLLOW US SECTION (Page 4) */
/* ============================================ */

.follow-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px; /* FIXED: Standardized padding */
    position: relative;
    background-color: #000000;
}

.follow-container {
    width: 100%;
    max-width: none;
    position: relative;
    display: flex;
    align-items: center;
}

/* ===================================
   TEXT CONTENT (Left Side - 1/3 width)
   =================================== */

.follow-text-content {
    width: 60%; /* ADJUST THIS: Controls text section width (default 1/3 = 33.333%) */
    padding: 30px 120px; /* ADJUST THIS: 
                           - First value: top/bottom padding
                           - Second value: left/right padding (creates inset from edge) */
    z-index: 10;
    position: relative;
}

.follow-heading {
    color: #ffffff;
    font-size: 2rem; /* ADJUST THIS: Heading text size */
    font-weight: 400; /* ADJUST THIS: Font weight (300=light, 400=normal, 700=bold) */
    line-height: 1.3; /* ADJUST THIS: Line spacing */
    margin: 0 0 40px 0; /* ADJUST THIS: Space below heading before icons */
    text-align: left;
    letter-spacing: 0.01em;
}

/* ===================================
   SOCIAL MEDIA ICONS
   =================================== */

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 50px; /* ADJUST THIS: Space between icons */
    align-items: center;
}

/* ===================================
   IMAGE (Right Side - 2/3 width)
   =================================== */

.follow-image-wrapper {
    width: 100%; /* ADJUST THIS: Controls image section width (default 2/3 = 66.666%) */
    margin-left: -200px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end; /* Aligns image to right edge */
}

.follow-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 1200px; /* ADJUST THIS: Controls maximum image height */
    loading: lazy;
    
    object-position: center 55%; /* ADJUST THIS: 
                                       - First value: horizontal position (left/center/right or 0-100%)
                                       - Second value: vertical position (top/center/bottom or 0-100%)
                                       Examples:
                                       - center top = horizontally centered, top of image visible
                                       - right center = right side of image, vertically centered
                                       - 30% 70% = 30% from left, 70% from top */
    
    /* BLACK AND WHITE FILTER */
    filter: grayscale(100%); /* ADJUST THIS: 
                                - 100% = full black & white
                                - 50% = half color, half B&W
                                - 0% = full color
                                
                                OPTIONAL ADJUSTMENTS (add to filter):
                                - contrast(110%) = Increase contrast by 10%
                                - brightness(90%) = Darken by 10%
                                - Example: filter: grayscale(100%) contrast(110%) brightness(95%); */
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .follow-section {
        padding: 60px 20px;
    }

    .follow-container {
        flex-direction: column; /* Stack vertically on tablet */
    }

    .follow-text-content {
        width: 100%; /* Full width on tablet */
        padding: 40px 60px;
        text-align: center; /* Center text on tablet */
    }

    .follow-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center; /* Center icons on tablet */
        gap: 18px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 24px; /* Slightly smaller on tablet */
    }

    .follow-image-wrapper {
        width: 100%; /* Full width on tablet */
        justify-content: center;
        margin-top: 40px; /* Space above image when stacked */
        margin-left: 0; /* FIXED: Reset negative margin on tablet */
    }

    .follow-image {
        max-height: 500px;
        width: 100%;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .follow-section {
        min-height: auto; /* FIX: Remove forced full-screen height causing black gaps */
        padding: 30px 15px; /* FIX: Was 0px - added breathing room */
    }

    .follow-text-content {
        padding: 20px; /* FIX: Was 0px 20px */
    }

    .follow-heading {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 15px;
        height: 15px;
        font-size: 7px; /* Smaller on mobile */
    }

    .follow-image-wrapper {
        margin-top: 20px; /* FIX: More space above image */
        margin-left: 0; /* FIX: Remove negative margin on mobile */
    }

    .follow-image {
        max-height: 400px;
    }
}

/* ============================================ */
/* BEHIND THE SCENES SECTION */
/* ============================================ */

.bts-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px; /* ADJUST THIS: Controls vertical spacing around section */
    position: relative;
}

.bts-container {
    width: 100%;
    max-width: none;
    position: relative;
    display: flex;
    align-items: center;
}

/* Behind the Scenes Image - Takes up ~2/3 width on left side */
.bts-image-wrapper {
    width: 66.666%; /* ADJUST THIS: Controls image width (2/3 = 66.666%) */
    position: relative;
    z-index: 1;
}

.bts-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 900px; /* ADJUST THIS: Controls maximum image height */
    loading: lazy;
}

/* Behind the Scenes Text Overlay - Positioned from center, overlaps image and black space */
.bts-text-overlay {
    position: absolute;
    left: 50%; /* Start from center of container */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    width: 50%; /* ADJUST THIS: Controls text container width */
    z-index: 10;
    padding: 40px; /* ADJUST THIS: Controls padding around text */
}

.bts-heading {
    color: #ffffff;
    font-size: 2.5rem; /* ADJUST THIS: Heading text size */
    font-weight: 500; /* ADJUST THIS: Font weight (300=light, 400=normal, 700=bold) */
    line-height: 1.3; /* ADJUST THIS: Line spacing */
    margin: 0 0 20px 0; /* ADJUST THIS: Space below heading before body text */
    text-align: left;
    letter-spacing: 0.01em;
}

.bts-text {
    color: #ffffff;
    font-size: 2rem; /* ADJUST THIS: Heading text size */
    font-weight: 400; /* ADJUST THIS: Font weight (300=light, 400=normal, 700=bold) */
    line-height: 1.3; /* ADJUST THIS: Line spacing */
    margin: 0 0 40px 0; /* ADJUST THIS: Space below heading before icons */
    text-align: left;
    letter-spacing: 0.01em;
}

/* ===================================
   BEHIND THE SCENES ICONS
   =================================== */

.bts-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* ADJUST THIS: Space between icons */
    align-items: center;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .bts-section {
        padding: 60px 20px;
    }

    .bts-text-overlay {
        width: 60%;
        padding: 30px;
    }

    .bts-text {
        font-size: 1.2rem;
        line-height: 1.7;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .bts-section {
        min-height: auto; /* FIX: Remove forced full-screen height causing black gaps */
        padding: 30px 15px; /* FIX: Reduced from 40px for tighter mobile spacing */
    }

    .bts-container {
        flex-direction: column;
    }

    /* MOBILE REORDERING: Swap image and text positions */
    .bts-text-overlay {
        order: 1; /* Text appears first on mobile */
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        padding: 30px 20px;
        margin-top: 20px;
    }

    .bts-image-wrapper {
        width: 100%;
        order: 2; /* Image appears second on mobile */
    }

    .bts-image {
        max-height: 400px;
    }

    .bts-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .bts-icons {
        gap: 10px; /* MOBILE FIX: Match Follow Us gap */
    }
    
    .bts-icon {
        width: 15px;
        height: 15px;
        font-size: 7px; /* STANDARDIZED: Match Follow Us icons */
    }   
}

/* ============================================ */
/* MERCH SECTION */
/* ============================================ */

.merch-section {
    min-height: auto; /* FIXED: Remove forced full-screen height - let content determine height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px; /* ADJUST THIS: Vertical spacing around section */
    position: relative;
    background-color: #000000;
}

.merch-container {
    width: 100%;
    max-width: none;
    position: relative;
    display: flex;
    align-items: center;
}

/* ===================================
   TEXT CONTENT (Left Side - 40% width)
   =================================== */

.merch-text-content {
    width: 40%; /* ADJUST THIS: Controls text section width */
    padding: 0px 80px; /* ADJUST THIS: 
                           - First value: top/bottom padding
                           - Second value: left/right padding (creates inset from edge) */
    z-index: 10;
    position: relative;
}

.merch-heading {
    color: #ffffff;
    font-size: 2rem; /* ADJUST THIS: Heading text size */
    font-weight: 400; /* ADJUST THIS: Font weight (300=light, 400=normal, 700=bold) */
    line-height: 1.3; /* ADJUST THIS: Line spacing */
    margin: 0 0 20px 0; /* ADJUST THIS: Space below heading before subtext */
    text-align: left;
    letter-spacing: 0.01em;
}

.merch-subtext {
    color: #ffffff;
    font-size: 1.2rem; /* ADJUST THIS: Subtext size */
    font-weight: 300; /* ADJUST THIS: Lighter weight for subtext */
    line-height: 1.5;
    margin: 0; /* Removed margin - now controlled by wrapper */
    text-align: left;
}

/* ===================================
   BANDCAMP TEXT + ICON (Inline)
   =================================== */

.merch-bandcamp-wrapper {
    display: flex;
    align-items: center; /* Vertically align text and icon */
    gap: 15px; /* ADJUST THIS: Space between text and icon */
    margin-bottom: 0; /* ADJUST THIS: Space below the text+icon row */
}

/* ===================================
   PRODUCT IMAGES (Right Side - 60% width)
   =================================== */

.merch-images-wrapper {
    width: 60%; /* ADJUST THIS: Controls images section width */
    display: flex;
    justify-content: flex-end; /* Align images to the right */
    align-items: center;
    gap: 30px; /* ADJUST THIS: Space between product images */
    padding: 0px 200px 0px 0px; /* ADJUST THIS: Padding around image group */
    position: relative;
    z-index: 1;
}

.merch-product-link {
    display: block;
    transition: all 0.3s ease;
    max-width: 250px; /* ADJUST THIS: Maximum width of each product image */
}

/* Product image hover effect */
.merch-product-link:hover {
    transform: translateY(-8px) scale(1.05); /* ADJUST THIS: Lift and scale on hover */
}

.merch-product-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Maintains aspect ratio without cropping */
    border-radius: 8px; /* ADJUST THIS: Rounded corners on images */
    loading: lazy;
    
    /* Optional: Add subtle shadow for depth */
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.1); /* ADJUST THIS: Pink glow effect */
    transition: box-shadow 0.3s ease;
}

/* Enhance shadow on hover */
.merch-product-link:hover .merch-product-image {
    box-shadow: 0 8px 30px rgba(233, 30, 140, 0.3); /* ADJUST THIS: Stronger pink glow on hover */
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .merch-section {
        padding: 60px 20px;
    }

    .merch-container {
        flex-direction: column; /* Stack vertically on tablet */
    }

    .merch-text-content {
        width: 100%; /* Full width on tablet */
        padding: 40px 60px;
        text-align: left; /* ADJUST THIS: Left-aligned text on tablet (was center) */
    }

    .merch-heading {
        font-size: 1.8rem;
    }

    .merch-subtext {
        font-size: 1.1rem;
    }

    .merch-bandcamp-wrapper {
        justify-content: flex-start; /* ADJUST THIS: Left-aligned on tablet (was center) */
    }

    .merch-images-wrapper {
        width: 100%; /* Full width on tablet */
        justify-content: center; /* Center images on tablet */
        gap: 20px;
        padding: 40px 20px;
    }

    .merch-product-link {
        max-width: 200px; /* Smaller images on tablet */
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .merch-section {
        min-height: auto; /* FIX: Remove forced full-screen height causing black gaps */
        padding: 30px 15px; /* FIX: Tighter mobile spacing */
    }

    .merch-text-content {
        padding: 20px;
    }

    .merch-heading {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .merch-subtext {
        font-size: 1rem;
    }

    .merch-bandcamp-wrapper {
        gap: 10px; /* Tighter spacing on mobile */
    }

    .merch-icon {
        width: 15px;
        height: 15px;
        font-size: 7px; /* STANDARDIZED: Match Follow Us icons */
    }

    .merch-images-wrapper {
        flex-direction: column; /* Stack images vertically on mobile */
        gap: 20px;
        padding: 30px 20px;
    }

    .merch-product-link {
        max-width: 180px; /* Smaller images on mobile */
    }
}

/* ============================================ */
/* CONTACT US SECTION */
/* ============================================ */

.contact-us-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px; /* FIXED: Standardized padding */
    position: relative;
}

.contact-us-container {
    width: 100%;
    max-width: none;
    position: relative;
    display: flex;
    align-items: center;
}

/* Contact Us Image - Takes up ~2/3 width on left side */
.contact-us-image-wrapper {
    width: 66.666%; /* ADJUST THIS: Controls image width (2/3 = 66.666%) */
    position: relative;
    z-index: 1;
}

.contact-us-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 900px; /* ADJUST THIS: Controls maximum image height */
    loading: lazy;
}

/* Contact Us Text Overlay - Positioned from center, overlaps image and black space */
.contact-us-text-overlay {
    position: absolute;
    left: 50%; /* Start from center of container */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    width: 50%; /* ADJUST THIS: Controls text container width */
    z-index: 10;
    padding: 40px; /* ADJUST THIS: Controls padding around text */
}

/* Entire heading + icon as a clickable link */
.contact-us-heading-link {
    display: flex;
    align-items: center; /* Vertically center heading and icon */
    gap: 20px; /* ADJUST THIS: Space between heading and icon */
    margin-bottom: 20px; /* ADJUST THIS: Space below heading/icon row */
    text-decoration: none; /* Remove underline */
    color: #ffffff; /* Default white */
    transition: color 0.3s ease; /* Smooth color transition */
    cursor: pointer;
}

/* Hover effect - both text and icon turn magenta together */
.contact-us-heading-link:hover {
    color: #E91E8C; /* Magenta/pink on hover */
}

.contact-us-heading-link:hover .contact-us-heading {
    color: #E91E8C; /* Magenta/pink on hover */
}

.contact-us-heading-link:hover .contact-us-icon-inline {
    color: #E91E8C; /* Magenta/pink on hover */
    transform: translateY(-3px) scale(1.1); /* Slight lift effect */
}

.contact-us-heading {
    color: inherit; /* Inherit from parent link */
    font-size: 2.5rem; /* ADJUST THIS: Heading text size */
    font-weight: 500; /* ADJUST THIS: Font weight (300=light, 400=normal, 700=bold) */
    line-height: 1.3; /* ADJUST THIS: Line spacing */
    margin: 0; /* Remove margin - controlled by wrapper */
    text-align: left;
    letter-spacing: 0.01em;
    transition: color 0.3s ease; /* Smooth color transition */
}

.contact-us-text {
    color: #ffffff;
    font-size: 2rem; /* ADJUST THIS: Heading text size */
    font-weight: 400; /* ADJUST THIS: Font weight (300=light, 400=normal, 700=bold) */
    line-height: 1.3; /* ADJUST THIS: Line spacing */
    margin: 0 0 40px 0; /* ADJUST THIS: Space below heading before icons */
    text-align: left;
    letter-spacing: 0.01em;
}

/* ===================================
   CONTACT US ICONS
   =================================== */

/* Inline icon (next to heading) - now inside the link */
.contact-us-icon-inline {
    font-size: 40px; /* ADJUST THIS: Icon size - matches heading scale */
    color: inherit; /* Inherit color from parent link */
    transition: all 0.3s ease; /* Smooth transitions */
}

/* Standard icon container (if you add more icons later) */
.contact-us-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 49px; /* ADJUST THIS: Space between icons */
    align-items: center;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .contact-us-section {
        padding: 60px 20px;
    }

    .contact-us-text-overlay {
        width: 60%;
        padding: 30px;
    }

    .contact-us-text {
        font-size: 1.2rem;
        line-height: 1.7;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .contact-us-section {
        min-height: auto; /* FIX: Remove forced full-screen height causing black gaps */
        padding: 30px 15px; /* FIX: Reduced from 40px for tighter mobile spacing */
    }

    .contact-us-container {
        flex-direction: column;
    }

    .contact-us-image-wrapper {
        width: 100%;
    }

    .contact-us-image {
        max-height: 400px;
    }

    .contact-us-text-overlay {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        padding: 30px 20px;
        margin-top: 20px;
    }

    .contact-us-heading-link {
        gap: 15px; /* Tighter spacing on mobile */
    }

    .contact-us-heading {
        font-size: 1.8rem; /* Smaller heading on mobile */
    }

    .contact-us-icon-inline {
        font-size: 32px; /* Smaller icon on mobile */
    }

    .contact-us-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* ============================================ */
/* MASTER ICON STYLES
   Controls: .social-icon, .bts-icon, 
             .merch-icon, .contact-us-icon
   
   HOW ICON SIZING WORKS:
   Total space per icon = width + (padding × 2) + gap
   Example: 40px + (6px × 2) + 20px = 72px per icon
   For 7 icons on one line you need: 72 × 7 = 504px
   
   To fit more icons on one line, reduce:
     1. gap     (in .social-icons etc. above — space BETWEEN icons)
     2. padding (clickable area AROUND the icon glyph)
     3. width/height (the icon container box)
     4. font-size (the icon glyph itself — visual size only)
   ============================================ */

.social-icon,
.bts-icon,
.merch-icon,
.contact-us-icon {
    width: 30px;            /* ADJUST THIS: Container box width */
    height: 30px;           /* ADJUST THIS: Container box height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;         /* ADJUST THIS: Icon color (default white) */
    background-color: transparent;
    border-radius: 8px;     /* ADJUST THIS: Rounded corners (50% = circle) */
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 6px;           /* ADJUST THIS: Clickable area around icon glyph */
    font-size: 35px;        /* ADJUST THIS: Icon glyph size (visual size only) */
}

/* Hover effect — pink/mauve accent */
.social-icon:hover,
.bts-icon:hover,
.merch-icon:hover,
.contact-us-icon:hover {
    color: #E91E8C;                          /* ADJUST THIS: Hover color */
    background-color: rgba(233, 30, 140, 0.1); /* ADJUST THIS: Hover background */
    transform: translateY(-3px) scale(1.1);  /* ADJUST THIS: Lift + grow on hover */
}

/* Mobile Icon Overrides - Reasonable mobile sizing */
@media (max-width: 480px) {
    .social-icon,
    .bts-icon,
    .merch-icon {
        width: 30px !important;     /* Reasonable mobile size */
        height: 30px !important;    /* Reasonable mobile size */
        font-size: 24px !important; /* Readable icon size */
        padding: 8px !important;    /* Good tap target */
    }
}
