/*
Theme Name: Soraya Ebelle
Theme URI: https://sorayaebelle.com
Author: Claude Kuate
Author URI: https://example.com
Description: A minimal, poetic, and immersive theme for the artist Soraya Ebelle, reflecting her Afro sound contemporary and pop jazz acoustique universe.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: soraya-ebelle
*/

/* --- Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #000000;
    --accent-red: #d13d31;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(0, 0, 0, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(10px);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .custom-logo-link img {
    max-height: 80px;
    width: auto;
}

.site-logo-text {
    font-family: serif;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

/* Footer Logo */
.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo .custom-logo-link img {
    max-height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo .custom-logo-link img:hover {
    opacity: 1;
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social-icon {
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Copyright */
.site-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.main-navigation a:hover {
    opacity: 0.7;
}

/* Sub-menu styling */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 220px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.main-navigation li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul li {
    width: 100%;
    margin-bottom: 0.5rem;
}

.main-navigation ul ul li:last-child {
    margin-bottom: 0;
}

.main-navigation ul ul a {
    font-size: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-navigation ul ul li:last-child a {
    border-bottom: none;
}

/* Third level menu */
.main-navigation ul ul ul {
    top: 0;
    left: 100%;
    transform: translateX(10px);
}

.main-navigation ul ul li:hover>ul {
    transform: translateX(0);
}

.header-utilities {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.util-icon {
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    transition: opacity 0.3s ease;
}

.util-icon:hover {
    opacity: 0.7;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--bg-dark);
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.6rem;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-immersive {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Overlay for hero slides */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, var(--overlay-opacity, 0.4));
    z-index: 1;
    transition: background 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding-top: 80px;
    /* Offset for fixed header */
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn {
    padding: 0.8rem 2.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-red);
    color: #fff;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 20;
}

.nav-arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.nav-arrow:hover {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

/* --- Helpers & Utilities --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* --- Section: Album Promo --- */
.section-album-promo {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #111;
    /* Fallback */
    text-align: center;
    overflow: hidden;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.promo-logo-container {
    max-width: 300px;
    margin: 0 auto;
}

.promo-logo {
    width: 100%;
    height: auto;
    display: block;
}

.promo-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    margin: 0;
    opacity: 0.9;
}

.promo-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.promo-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.platform-btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Section: Presentation --- */
.section-presentation {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(to bottom, #000 0%, #0b0b0b 100%);
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.artist-card {
    position: relative;
    padding: 1rem;
}

.artist-portrait {
    border-radius: 12px;
    width: 100%;
    display: block;
    filter: grayscale(20%) contrast(110%);
}

.card-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.genesis-title {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.section-title {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-red);
    margin: 1rem auto 0;
}

.text-panel {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}

.presentation-actions {
    margin-top: 2rem;
}

/* --- Section: Album Feature --- */
.section-album {
    padding: 6rem 0;
    background: url('assets/img/noise.png'), #050505;
}

.album-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.album-cover-wrapper {
    position: relative;
}

.album-cover {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vinyl-record {
    position: absolute;
    top: 5px;
    right: -20px;
    width: 95%;
    height: 95%;
    background: #111;
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.5s ease;
}

.album-cover-wrapper:hover .vinyl-record {
    transform: translateX(40px) rotate(20deg);
}

.album-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tracklist {
    margin-top: 2rem;
    list-style: none;
}

.track-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 10px;
}

.track-number {
    color: var(--text-secondary);
    margin-right: 1rem;
    width: 20px;
}

.track-action {
    opacity: 0;
    transition: opacity 0.2s;
}

.track-item:hover .track-action {
    opacity: 1;
}

/* --- Section: Singles --- */
.section-singles {
    padding: 6rem 0;
    background: #0a0a0a;
}

.singles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.single-card {
    text-align: center;
    padding-bottom: 2rem;
}

.single-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.single-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.single-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.single-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {

    .presentation-grid,
    .album-grid {
        grid-template-columns: 1fr;
    }

    .presentation-image-col {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .album-cover-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .vinyl-record {
        display: none;
        /* Hide vinyl animation on mobile for simplicity */
    }
}

/* --- Section: Gallery --- */
.section-gallery {
    padding: 6rem 0;
    background: #050505;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 0;
    border: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.video-item {
    grid-column: span 2;
    grid-row: span 2;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-item {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/* --- Section: Concerts --- */
.section-concerts {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #1a0505, #000);
}

.concerts-list {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.concert-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    transition: background 0.3s;
}

.concert-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.concert-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1.5rem;
}

.concert-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.concert-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--accent-red);
    font-weight: 600;
}

.concert-date .year {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.concert-details {
    flex-grow: 1;
}

.concert-location {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.concert-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    gap: 1.5rem;
}

.concert-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.concert-action .btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

.concert-action .disabled {
    opacity: 0.5;
    cursor: default;
}

@media (max-width: 600px) {
    .concert-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }

    .concert-date {
        flex-direction: row;
        gap: 0.5rem;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .concert-date .day {
        font-size: 1.5rem;
    }
}


/* --- Section: Social Project --- */
.section-social {
    padding: 6rem 0;
    background: url('assets/img/noise.png'), #111;
}

.social-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.project-name {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-red);
}

.impact-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}


/* --- Section: Newsletter --- */
.section-newsletter {
    padding: 8rem 0;
    position: relative;
    background-image: url('https://source.unsplash.com/random/1920x800?concert,crowd');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.simple-newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.simple-newsletter-form input {
    flex-grow: 1;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    font-size: 1.5rem;
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.social-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .simple-newsletter-form {
        flex-direction: column;
    }

    .simple-newsletter-form input {
        width: 100%;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-visual {
        order: -1;
    }
}

/* --- Hero Video Background --- */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* Prevent interaction with video controls */
    max-width: none !important;
    max-height: none !important;
}

@media (min-aspect-ratio: 16/9) {
    .hero-video-iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video-iframe {
        width: 177.77vh;
    }
}

/* --- Platform Buttons --- */
.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.platform-btn svg {
    flex-shrink: 0;
}

.platform-btn.spotify:hover {
    background: #1DB954;
    border-color: #1DB954;
}

.platform-btn.apple-music:hover {
    background: #FA2D48;
    border-color: #FA2D48;
}

.platform-btn.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.platform-btn.deezer:hover {
    background: #A238FF;
    border-color: #A238FF;
}

.platform-btn.itunes:hover {
    background: #1E90FF;
    border-color: #1E90FF;
}

/* Small platform icons for singles */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* --- Section: Quick Links --- */
.section-quick-links {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #0b0b0b, #050505);
}

.section-quick-links .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.quick-links-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem;
    width: 100%;
}

.quick-link-card {
    text-align: center;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: #fff;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.quick-link-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.quick-link-icon svg {
    stroke: var(--accent-red);
}

.quick-link-card:hover .quick-link-icon {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.quick-link-card:hover .quick-link-icon svg {
    stroke: #fff;
}

.quick-link-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.quick-link-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 500px) {
    .quick-links-grid {
        grid-template-columns: 1fr !important;
    }

    .quick-link-card {
        padding: 1.5rem 1rem;
    }
}

/* ============================================
   SORAYA WIDGETS
   ============================================ */

/* Widget Base */
.soraya-widget {
    margin-bottom: 2rem;
}

.soraya-widget .widget-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.soraya-widget .widget-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Widget: Platform Links */
.widget-platforms .platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.widget-platforms.vertical .platform-links {
    flex-direction: column;
}

.widget-platforms .platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.3s, transform 0.3s;
}

.widget-platforms .platform-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Widget: Social */
.widget-social .social-icons-row {
    display: flex;
    gap: 1rem;
}

.widget-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: background 0.3s, transform 0.3s;
}

.widget-social .social-link:hover {
    background: var(--accent-red);
    transform: scale(1.1);
}

/* Widget: CTA */
.widget-cta {
    text-align: center;
    padding: 2.5rem;
}

.widget-cta.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.widget-cta.accent {
    background: var(--accent-red);
    border-radius: 16px;
}

.widget-cta .cta-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.widget-cta .cta-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.widget-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Widget: Stats */
.widget-stats .stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.widget-stats .stat-item {
    text-align: center;
}

.widget-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-red);
}

.widget-stats .stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Widget: Gallery */
.widget-gallery .gallery-grid {
    display: grid;
    gap: 1rem;
}

.widget-gallery .gallery-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.widget-gallery .gallery-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.widget-gallery .gallery-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.widget-gallery .gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s, opacity 0.3s;
}

.widget-gallery .gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Widget: Video */
.widget-video .video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.widget-video .video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* Widget: Newsletter */
.widget-newsletter {
    text-align: center;
}

.widget-newsletter .newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.widget-newsletter .newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.widget-newsletter .newsletter-form input::placeholder {
    color: var(--text-secondary);
}

/* Widget: Downloads */
.widget-downloads .downloads-list {
    list-style: none;
    padding: 0;
}

.widget-downloads .downloads-list li {
    margin-bottom: 0.75rem;
}

.widget-downloads .downloads-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.widget-downloads .downloads-list a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Widget: Text */
.widget-text .widget-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.widget-text .widget-content {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Widget: Cards */
.widget-cards .cards-grid {
    display: grid;
    gap: 1.5rem;
}

.widget-cards .cards-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.widget-cards .cards-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.widget-cards .cards-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.widget-cards .card-item {
    display: block;
    padding: 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s, border-color 0.3s;
}

.widget-cards .card-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.widget-cards .card-item h4 {
    margin-bottom: 0.5rem;
}

.widget-cards .card-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Widget: Quick Links */
.widget-quick-links .quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.widget-quick-links .quick-link-item {
    display: block;
    padding: 1.5rem;
    text-decoration: none;
    color: #fff;
    text-align: center;
}

.widget-quick-links .quick-link-item h4 {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-quick-links .quick-link-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {

    .widget-gallery .gallery-grid.cols-3,
    .widget-gallery .gallery-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .widget-cards .cards-grid.cols-3,
    .widget-cards .cards-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .widget-quick-links .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .widget-newsletter .newsletter-form {
        flex-direction: column;
    }
}