@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@900&display=swap');


/* ============================================
   VAMOS 256 - CUSTOM STYLES
   Black & White Premium Theme
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --secondary-gray: #1a1a1a;
    --border-gray: #333333;
    --text-gray: #999999;
    --hover-gray: #2a2a2a;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Main Content Spacing (to account for fixed navbar) */
#main-content {
    padding-top: 76px; /* Height of navbar + some spacing */
    min-height: calc(100vh - 76px);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    transition: var(--transition-smooth);
}

/* === NAVIGATION === */
#mainNav {
    background-color: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

#mainNav .navbar-brand {
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

#mainNav .navbar-brand:hover {
    color: var(--text-gray) !important;
}

#mainNav .nav-link {
    color: var(--primary-white) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition-smooth);
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-white);
    transition: width 0.3s ease;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    width: 70%;
}

#mainNav .nav-link:hover {
    color: var(--text-gray) !important;
}

/* Mobile Menu */
@media (max-width: 991px) {
    #mainNav .navbar-collapse {
        background-color: var(--secondary-gray);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
    }

    #mainNav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }

    #mainNav .nav-link::after {
        display: none;
    }
}

/* === BUTTONS === */
.btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.btn-light {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-white);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

.btn-outline-light {
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

/* === FORMS === */
.form-control {
    background-color: var(--secondary-gray);
    border: 1px solid var(--border-gray);
    color: var(--primary-white);
    padding: 0.75rem 1rem;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.form-control:focus {
    background-color: var(--secondary-gray);
    border-color: var(--primary-white);
    color: var(--primary-white);
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--text-gray);
}

/* === CARDS === */
.card {
    background-color: var(--secondary-gray);
    border: 1px solid var(--border-gray);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-white);
}

.card-img-top {
    object-fit: cover;
    height: 250px;
}

/* === FOOTER === */
footer a:hover {
    color: var(--primary-white) !important;
}

footer .hover-white:hover {
    color: var(--primary-white) !important;
}

/* === UTILITY CLASSES === */
.bg-black {
    background-color: var(--primary-black) !important;
}

.bg-dark-custom {
    background-color: var(--secondary-gray) !important;
}

.text-gray {
    color: var(--text-gray) !important;
}

.border-custom {
    border-color: var(--border-gray) !important;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* === SECTION SPACING === */
section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

/* === LOADING ANIMATION === */
.loading-spinner {
    border: 3px solid var(--border-gray);
    border-top: 3px solid var(--primary-white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === IMAGE OVERLAY === */
.img-overlay {
    position: relative;
    overflow: hidden;
}

.img-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-overlay:hover::after {
    opacity: 1;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--border-gray);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-white);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* === ACCESSIBILITY === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-white);
    outline-offset: 2px;
}



/* ============================================
   HERO SECTION - VAMOS 256 TITLE STYLING
   ============================================ */



/* Hero Title - Bold, Powerful Style */
/* Hero Title - Bold, Powerful Style */
.hero-title {
    font-family: 'Bebas Neue', 'Montserrat', sans-serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    line-height: 1;
    color: #FFFFFF;
    text-transform: uppercase;

    /* Single shadow only */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);

    transform: none;

    /* No animation */
}

/* Floating animation */
/*@keyframes heroTitleFloat {
    0%, 100% {
        transform: rotate(-2deg) translateY(0px);
    }
    50% {
        transform: rotate(-2deg) translateY(-10px);
    }
}*/

/* Individual letter animation (staggered fade-in) */
/*.hero-title .letter {
    display: inline-block;
    opacity: 0;
    animation: letterFadeIn 0.8s ease-out forwards;
}

.hero-title .letter:nth-child(1) { animation-delay: 0.1s; }
.hero-title .letter:nth-child(2) { animation-delay: 0.2s; }
.hero-title .letter:nth-child(3) { animation-delay: 0.3s; }
.hero-title .letter:nth-child(4) { animation-delay: 0.4s; }
.hero-title .letter:nth-child(5) { animation-delay: 0.5s; }
.hero-title .letter:nth-child(6) { animation-delay: 0.6s; }
.hero-title .letter:nth-child(7) { animation-delay: 0.7s; }
.hero-title .letter:nth-child(8) { animation-delay: 0.8s; }
.hero-title .letter:nth-child(9) { animation-delay: 0.9s; }*/

/*@keyframes letterFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotate(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}*/

/* Optional: Glitch effect on hover */
.hero-title:hover {
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
    0% {
        text-shadow:
            4px 4px 0px rgba(0, 0, 0, 0.8),
            8px 8px 0px rgba(0, 0, 0, 0.6);
    }
    25% {
        text-shadow:
            -2px 2px 0px rgba(255, 0, 0, 0.8),
            2px -2px 0px rgba(0, 255, 255, 0.8);
    }
    50% {
        text-shadow:
            2px -2px 0px rgba(0, 255, 0, 0.8),
            -2px 2px 0px rgba(255, 0, 255, 0.8);
    }
    75% {
        text-shadow:
            -2px -2px 0px rgba(0, 0, 255, 0.8),
            2px 2px 0px rgba(255, 255, 0, 0.8);
    }
    100% {
        text-shadow:
            4px 4px 0px rgba(0, 0, 0, 0.8),
            8px 8px 0px rgba(0, 0, 0, 0.6);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-title {
        -webkit-text-stroke: 2px #FFFFFF;
        text-stroke: 2px #FFFFFF;
        transform: rotate(-1deg);
    }
}


/* Push hero content down */
#hero .container {
    padding-top: 25vh; /* Adjust this value */
}

/* OR use margin instead */
#hero .row {
    margin-top: 25vh; /* Adjust this value */
}


/* Hero background image - full coverage */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* Hero section gradient fade at bottom */
#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 50%, #000000 100%);
    pointer-events: none;
    z-index: 1;
}

/* Make sure hero content is above the gradient */
#hero .container {
    position: relative;
    z-index: 2;
}


/* ============================================
   SOCIAL MEDIA ICONS - BRAND COLORS
   ============================================ */

/* Base social icon styling */
/*.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}*/


/* Social Icons - Black & White Only */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #FFFFFF;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.social-icon i {
    font-size: 1.5rem;
}

/* Push hero content down */


/*!* Spotify - Green *!
.social-icon-spotify {
    color: #1DB954;
    background-color: rgba(29, 185, 84, 0.1);
}

.social-icon-spotify:hover {
    color: #1DB954;
    background-color: rgba(29, 185, 84, 0.2);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 185, 84, 0.4);
}

!* YouTube - Red *!
.social-icon-youtube {
    color: #FF0000;
    background-color: rgba(255, 0, 0, 0.1);
}

.social-icon-youtube:hover {
    color: #FF0000;
    background-color: rgba(255, 0, 0, 0.2);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

!* Instagram - Gradient *!
.social-icon-instagram {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584);
    color: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icon-instagram:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
    filter: brightness(1.2);
}

!* TikTok - Cyan/Pink *!
.social-icon-tiktok {
    color: #00F2EA;
    background-color: rgba(0, 242, 234, 0.1);
}

.social-icon-tiktok:hover {
    color: #00F2EA;
    background-color: rgba(0, 242, 234, 0.2);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 242, 234, 0.4);
}

!* Apple Music - Red/Pink *!
.social-icon-apple {
    color: #FA243C;
    background-color: rgba(250, 36, 60, 0.1);
}

.social-icon-apple:hover {
    color: #FA243C;
    background-color: rgba(250, 36, 60, 0.2);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 20px rgba(250, 36, 60, 0.4);
}

!* Facebook - Blue *!
.social-icon-facebook {
    color: #1877F2;
    background-color: rgba(24, 119, 242, 0.1);
}

.social-icon-facebook:hover {
    color: #1877F2;
    background-color: rgba(24, 119, 242, 0.2);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

!* Twitter/X - Keep White (no brand color) *!
.social-icon-twitter {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon-twitter:hover {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}*/

/* Pulse animation for social icons */
@keyframes socialPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.social-icon:hover {
    animation: socialPulse 0.6s ease-in-out;
}

/* For larger social icons in hero section */
.hero-social-icon {
    font-size: 2rem;
    width: 55px;
    height: 55px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .social-icon {
        width: 40px;
        height: 40px;
    }

    .hero-social-icon {
        font-size: 1.75rem;
        width: 50px;
        height: 50px;
    }
}


/* Remove weird spacing between hero and next section */

#latest-release {
    margin-top: -60px; /* Pull section UP to overlap with hero gradient */
    padding-top: 5rem; /* Keep content below the gradient */
}

/* Latest Release heading */
.section-heading {
    margin-bottom: 3rem;
}
