/* Jabëla Website - Quebec Flag Theme */
/* Colors: Blue #002395, White #FFFFFF, Red #ED2939, Gold #FFD700 */

:root {
    --quebec-blue: #002395;
    --quebec-white: #FFFFFF;
    --quebec-red: #ED2939;
    --quebec-gold: #FFD700;
    --dark-blue: #001a7a;
    --light-blue: #0033cc;
    --mystic-purple: #6a4c93;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--quebec-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

/* Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
    opacity: 0.7;
    filter: grayscale(5%) contrast(1.1) brightness(0.8);
    animation: subtleZoom 20s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 35, 149, 0.5) 0%,
        rgba(0, 26, 122, 0.4) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: -1;
    pointer-events: none;
}

/* Additional overlay for hero section to highlight the image */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(0, 35, 149, 0.3) 0%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 35, 149, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--quebec-white);
}

.fleur-de-lys {
    font-size: 1.5em;
    color: var(--quebec-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--quebec-white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--quebec-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--quebec-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--quebec-white);
    transition: all 0.3s ease;
}

/* Social Icons Navigation */
.social-icons-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
}

/* YouTube Icon */
.youtube-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--quebec-white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.youtube-icon:hover {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.4);
    border-color: #FF0000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.youtube-icon svg {
    width: 24px;
    height: 24px;
}

/* Spotify Icon */
.spotify-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--quebec-white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(30, 215, 96, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.spotify-icon:hover {
    color: #1DB954;
    background: rgba(30, 215, 96, 0.4);
    border-color: #1DB954;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(30, 215, 96, 0.5);
}

.spotify-icon svg {
    width: 24px;
    height: 24px;
}

/* SoundCloud Icon */
.soundcloud-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--quebec-white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 85, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.soundcloud-icon:hover {
    color: #FF5500;
    background: rgba(255, 85, 0, 0.4);
    border-color: #FF5500;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 85, 0, 0.5);
}

.soundcloud-icon svg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 2rem;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.title-line {
    display: block;
    color: var(--quebec-white);
    background: linear-gradient(135deg, var(--quebec-white) 0%, var(--quebec-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-subtitle {
    display: block;
    font-size: 0.5em;
    color: var(--quebec-gold);
    font-weight: 400;
    margin-top: 0.5rem;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--quebec-gold);
    color: var(--quebec-blue);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--quebec-white);
    border-color: var(--quebec-white);
}

.btn-secondary:hover {
    background: var(--quebec-white);
    color: var(--quebec-blue);
}

.btn-outline {
    background: transparent;
    color: var(--quebec-white);
    border: 2px solid var(--quebec-white);
    padding: 0.75rem 2rem;
}

.btn-outline:hover {
    background: var(--quebec-white);
    color: var(--quebec-blue);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.mystic-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border: 3px solid var(--quebec-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3); /* Dark background to fill circle if image doesn't fill it */
}

/* Fallback gradient if no image */
.mystic-circle:not([style*="background-image"]) {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(0, 35, 149, 0.3) 70%);
}

.circle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 35, 149, 0.2) 0%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.mystic-circle::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: rotate 20s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fleur-de-lys-large {
    font-size: 8rem;
    color: var(--quebec-gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    z-index: 2;
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--quebec-white);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--quebec-gold);
    margin: 0 auto;
    position: relative;
    animation: scrollDown 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--quebec-gold);
    border-bottom: 2px solid var(--quebec-gold);
    transform: rotate(45deg);
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* Content Sections */
.content-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    background: rgba(0, 26, 122, 0.3);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--quebec-white);
}

.section-title .fleur-de-lys {
    font-size: 2rem;
}

/* Music Section */
.youtube-video-container {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    border: 3px solid var(--quebec-gold);
    background: rgba(0, 0, 0, 0.5);
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Spotify Player */
.spotify-player-container {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(30, 215, 96, 0.2);
    border: 3px solid var(--quebec-gold);
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.spotify-player-container iframe {
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
}

/* SoundCloud Player */
.soundcloud-player-container {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(255, 85, 0, 0.2);
    border: 3px solid var(--quebec-gold);
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.soundcloud-player-container iframe {
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.music-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.music-cover {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--quebec-blue) 0%, var(--mystic-purple) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fleur-de-lys-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 215, 0, 0.05) 10px, rgba(255, 215, 0, 0.05) 20px);
    opacity: 0.3;
}

.play-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.music-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--quebec-gold);
    color: var(--quebec-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.music-title {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--quebec-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-title {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Documentary Section */
.documentary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.documentary-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.documentary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.doc-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--quebec-blue) 0%, var(--mystic-purple) 100%);
    position: relative;
}

.doc-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doc-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.doc-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    flex: 1;
}

/* Biography Section */
.biography-section {
    background: rgba(0, 0, 0, 0.2);
}

.biography-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.biography-text-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.biography-text-content .lead {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--quebec-gold);
}

.biography-text-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.mystic-portrait {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid var(--quebec-gold);
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

.portrait-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 35, 149, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.mystic-portrait .fleur-de-lys-large {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.9);
}

/* Behind the Scenes */
.behind-scenes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bts-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bts-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.bts-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--quebec-blue) 0%, var(--mystic-purple) 100%);
    position: relative;
}

.bts-card h3 {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--quebec-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--quebec-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--quebec-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    color: var(--quebec-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    color: var(--quebec-gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 35, 149, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .social-icons-nav {
        margin-left: 0.5rem;
        gap: 0.5rem;
    }
    
    .youtube-icon,
    .spotify-icon,
    .soundcloud-icon {
        width: 35px;
        height: 35px;
    }
    
    .youtube-icon svg,
    .spotify-icon svg,
    .soundcloud-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .mystic-circle {
        width: 300px;
        height: 300px;
    }

    .mystic-circle::before {
        width: 250px;
        height: 250px;
    }

    .fleur-de-lys-large {
        font-size: 5rem;
    }

    .biography-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .mystic-circle {
        width: 250px;
        height: 250px;
    }

    .fleur-de-lys-large {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .music-grid,
    .video-grid,
    .documentary-grid,
    .behind-scenes-grid {
        grid-template-columns: 1fr;
    }
}


